mapcomplete/Logic/ElementStorage.ts

63 lines
1.9 KiB
TypeScript
Raw Normal View History

2020-06-23 22:35:19 +00:00
/**
2021-01-02 20:03:40 +00:00
* Keeps track of a dictionary 'elementID' -> UIEventSource<tags>
2020-06-23 22:35:19 +00:00
*/
import {UIEventSource} from "./UIEventSource";
2020-06-23 22:35:19 +00:00
export class ElementStorage {
private _elements = [];
constructor() {
}
addElementById(id: string, eventSource: UIEventSource<any>) {
this._elements[id] = eventSource;
}
/**
* Creates a UIEventSource for the tags of the given feature.
* If an UIEventsource has been created previously, the same UIEventSource will be returned
*
* Note: it will cleverly merge the tags, if needed
*/
addOrGetElement(feature: any): UIEventSource<any> {
const elementId = feature.properties.id;
2020-06-23 22:35:19 +00:00
if (elementId in this._elements) {
const es = this._elements[elementId];
if (es.data == feature.properties) {
// Reference comparison gives the same object! we can just return the event source
return es;
}
2020-06-23 22:35:19 +00:00
const keptKeys = es.data;
// The element already exists
// We add all the new keys to the old keys
let somethingChanged = false;
for (const k in feature.properties) {
const v = feature.properties[k];
2020-06-23 22:35:19 +00:00
if (keptKeys[k] !== v) {
keptKeys[k] = v;
somethingChanged = true;
2020-06-23 22:35:19 +00:00
}
}
if (somethingChanged) {
es.ping();
}
2020-06-23 22:35:19 +00:00
return es;
} else {
const eventSource = new UIEventSource<any>(feature.properties, "tags of " + feature.properties.id);
this._elements[feature.properties.id] = eventSource;
return eventSource;
2020-06-23 22:35:19 +00:00
}
}
2020-12-05 02:22:17 +00:00
getEventSourceById(elementId): UIEventSource<any> {
2020-06-23 22:35:19 +00:00
if (elementId in this._elements) {
return this._elements[elementId];
}
2020-12-05 02:22:17 +00:00
console.error("Can not find eventsource with id ", elementId);
}
2020-06-23 22:35:19 +00:00
}