Added 5 second delay to saving
This commit is contained in:
parent
14094447e5
commit
382d045f32
@ -9,8 +9,10 @@ import * as _ from 'lodash';
|
|||||||
})
|
})
|
||||||
export class SyncService {
|
export class SyncService {
|
||||||
private code: string;
|
private code: string;
|
||||||
|
private changed = false;
|
||||||
private collection: AngularFirestoreCollection;
|
private collection: AngularFirestoreCollection;
|
||||||
private mapSub: Subscription;
|
private mapSub: Subscription;
|
||||||
|
private saveRate = 5_000;
|
||||||
|
|
||||||
mapSymbols = new BehaviorSubject<MapData>(null);
|
mapSymbols = new BehaviorSubject<MapData>(null);
|
||||||
|
|
||||||
@ -26,42 +28,48 @@ export class SyncService {
|
|||||||
let map = this.mapSymbols.value;
|
let map = this.mapSymbols.value;
|
||||||
if(!map.circles) map.circles = [];
|
if(!map.circles) map.circles = [];
|
||||||
map.circles.push(circle);
|
map.circles.push(circle);
|
||||||
this.save();
|
this.mapSymbols.next(map);
|
||||||
|
this.changed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
addMarker(marker: Marker) {
|
addMarker(marker: Marker) {
|
||||||
let map = this.mapSymbols.value;
|
let map = this.mapSymbols.value;
|
||||||
if(!map.markers) map.markers = [];
|
if(!map.markers) map.markers = [];
|
||||||
map.markers.push(marker);
|
map.markers.push(marker);
|
||||||
this.save();
|
this.mapSymbols.next(map);
|
||||||
|
this.changed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
addMeasurement(measurement: Measurement) {
|
addMeasurement(measurement: Measurement) {
|
||||||
let map = this.mapSymbols.value;
|
let map = this.mapSymbols.value;
|
||||||
if(!map.measurements) map.measurements = [];
|
if(!map.measurements) map.measurements = [];
|
||||||
map.measurements.push(measurement);
|
map.measurements.push(measurement);
|
||||||
this.save();
|
this.mapSymbols.next(map);
|
||||||
|
this.changed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
addPolygon(polygon: Polygon) {
|
addPolygon(polygon: Polygon) {
|
||||||
let map = this.mapSymbols.value;
|
let map = this.mapSymbols.value;
|
||||||
if(!map.polygons) map.polygons = [];
|
if(!map.polygons) map.polygons = [];
|
||||||
map.polygons.push(polygon);
|
map.polygons.push(polygon);
|
||||||
this.save();
|
this.mapSymbols.next(map);
|
||||||
|
this.changed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
addPolyline(polyline: Polyline) {
|
addPolyline(polyline: Polyline) {
|
||||||
let map = this.mapSymbols.value;
|
let map = this.mapSymbols.value;
|
||||||
if(!map.polylines) map.polylines = [];
|
if(!map.polylines) map.polylines = [];
|
||||||
map.polylines.push(polyline);
|
map.polylines.push(polyline);
|
||||||
this.save();
|
this.mapSymbols.next(map);
|
||||||
|
this.changed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
addRectangle(rect: Rectangle) {
|
addRectangle(rect: Rectangle) {
|
||||||
let map = this.mapSymbols.value;
|
let map = this.mapSymbols.value;
|
||||||
if(!map.rectangles) map.rectangles = [];
|
if(!map.rectangles) map.rectangles = [];
|
||||||
map.rectangles.push(rect);
|
map.rectangles.push(rect);
|
||||||
this.save();
|
this.mapSymbols.next(map);
|
||||||
|
this.changed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
delete(...symbols) {
|
delete(...symbols) {
|
||||||
@ -72,7 +80,8 @@ export class SyncService {
|
|||||||
if(map.polygons) symbols.forEach(s => map.polygons = map.polygons.filter(p => !_.isEqual(s , p)));
|
if(map.polygons) symbols.forEach(s => map.polygons = map.polygons.filter(p => !_.isEqual(s , p)));
|
||||||
if(map.polylines) symbols.forEach(s => map.polylines = map.polylines.filter(p => !_.isEqual(s, p)));
|
if(map.polylines) symbols.forEach(s => map.polylines = map.polylines.filter(p => !_.isEqual(s, p)));
|
||||||
if(map.rectangles) symbols.forEach(s => map.rectangles = map.rectangles.filter(r => !_.isEqual(s, r)));
|
if(map.rectangles) symbols.forEach(s => map.rectangles = map.rectangles.filter(r => !_.isEqual(s, r)));
|
||||||
this.save();
|
this.mapSymbols.next(map);
|
||||||
|
this.changed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
load(mapCode: string) {
|
load(mapCode: string) {
|
||||||
@ -81,12 +90,18 @@ export class SyncService {
|
|||||||
this.mapSub = null;
|
this.mapSub = null;
|
||||||
}
|
}
|
||||||
this.code = mapCode;
|
this.code = mapCode;
|
||||||
this.mapSub = this.collection.doc(this.code).valueChanges().subscribe(newMap => this.mapSymbols.next(Object.assign({}, newMap)));
|
this.mapSub = this.collection.doc(this.code).valueChanges().subscribe(newMap => {
|
||||||
|
this.mapSymbols.next(Object.assign({}, newMap));
|
||||||
|
this.changed = false;
|
||||||
|
});
|
||||||
|
|
||||||
|
setInterval(() => this.save(), this.saveRate);
|
||||||
}
|
}
|
||||||
|
|
||||||
save() {
|
save() {
|
||||||
if(this.code && this.mapSymbols.value) {
|
if(this.code && this.mapSymbols.value && this.changed) {
|
||||||
this.collection.doc(this.code).set(this.mapSymbols.value);
|
this.collection.doc(this.code).set(this.mapSymbols.value);
|
||||||
|
this.changed = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -188,6 +188,11 @@ export class MapComponent implements OnInit {
|
|||||||
this.route.params.subscribe(params => {
|
this.route.params.subscribe(params => {
|
||||||
this.code = params['code'];
|
this.code = params['code'];
|
||||||
this.syncService.load(this.code);
|
this.syncService.load(this.code);
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
ngOnInit() {
|
||||||
|
this.map = new MapService('map');
|
||||||
|
|
||||||
// Handle drawing the map after updates
|
// Handle drawing the map after updates
|
||||||
this.syncService.mapSymbols.pipe(filter(s => !!s)).subscribe((map: MapData) => {
|
this.syncService.mapSymbols.pipe(filter(s => !!s)).subscribe((map: MapData) => {
|
||||||
@ -198,12 +203,7 @@ export class MapComponent implements OnInit {
|
|||||||
if (map.polygons) map.polygons.forEach(p => this.map.newPolygon(p));
|
if (map.polygons) map.polygons.forEach(p => this.map.newPolygon(p));
|
||||||
if (map.polylines) map.polylines.forEach(p => this.map.newPolyline(p));
|
if (map.polylines) map.polylines.forEach(p => this.map.newPolyline(p));
|
||||||
if (map.rectangles) map.rectangles.forEach(r => this.map.newRectangle(r));
|
if (map.rectangles) map.rectangles.forEach(r => this.map.newRectangle(r));
|
||||||
})
|
});
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
this.map = new MapService('map');
|
|
||||||
|
|
||||||
// Handle opening symbols
|
// Handle opening symbols
|
||||||
this.map.click.pipe(filter(e => !!e && e.item)).subscribe(e => {
|
this.map.click.pipe(filter(e => !!e && e.item)).subscribe(e => {
|
||||||
|
Loading…
Reference in New Issue
Block a user