2021-01-27 01:14:16 +01:00
|
|
|
import {UIEventSource} from "../UIEventSource";
|
2021-07-28 00:09:17 +02:00
|
|
|
import {OsmObject} from "../Osm/OsmObject";
|
2021-05-06 01:33:09 +02:00
|
|
|
import Loc from "../../Models/Loc";
|
2021-09-21 03:10:15 +02:00
|
|
|
import {ElementStorage} from "../ElementStorage";
|
2021-01-27 01:14:16 +01:00
|
|
|
|
|
|
|
/**
|
2021-05-06 01:33:09 +02:00
|
|
|
* Makes sure the hash shows the selected element and vice-versa.
|
2021-01-27 01:14:16 +01:00
|
|
|
*/
|
|
|
|
export default class SelectedFeatureHandler {
|
2021-09-09 00:05:51 +02:00
|
|
|
private static readonly _no_trigger_on = ["welcome", "copyright", "layers", "new"]
|
2021-09-21 03:10:15 +02:00
|
|
|
hash: UIEventSource<string>;
|
|
|
|
private readonly state: {
|
|
|
|
selectedElement: UIEventSource<any>
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
hash: UIEventSource<string>,
|
|
|
|
state: {
|
|
|
|
selectedElement: UIEventSource<any>,
|
|
|
|
allElements: ElementStorage;
|
|
|
|
}
|
|
|
|
) {
|
|
|
|
this.hash = hash;
|
2021-07-28 00:09:17 +02:00
|
|
|
|
2021-09-21 03:10:15 +02:00
|
|
|
this.state = state
|
|
|
|
|
|
|
|
// Getting a blank hash clears the selected element
|
2021-01-27 01:14:16 +01:00
|
|
|
hash.addCallback(h => {
|
|
|
|
if (h === undefined || h === "") {
|
2021-09-21 03:10:15 +02:00
|
|
|
state.selectedElement.setData(undefined);
|
|
|
|
}else{
|
|
|
|
const feature = state.allElements.ContainingFeatures.get(h)
|
|
|
|
if(feature !== undefined){
|
|
|
|
state.selectedElement.setData(feature)
|
|
|
|
}
|
2021-07-28 00:09:17 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-01-27 01:14:16 +01:00
|
|
|
|
2021-09-21 03:10:15 +02:00
|
|
|
state.selectedElement.addCallback(feature => {
|
2021-07-28 00:09:17 +02:00
|
|
|
if (feature === undefined) {
|
2021-09-21 03:10:15 +02:00
|
|
|
console.trace("Resetting hash")
|
2021-07-28 00:09:17 +02:00
|
|
|
if (SelectedFeatureHandler._no_trigger_on.indexOf(hash.data) < 0) {
|
2021-04-23 18:16:44 +02:00
|
|
|
hash.setData("")
|
|
|
|
}
|
2021-04-06 19:41:41 +02:00
|
|
|
}
|
2021-07-28 00:09:17 +02:00
|
|
|
|
2021-03-13 17:25:44 +01:00
|
|
|
const h = feature?.properties?.id;
|
2021-07-28 00:09:17 +02:00
|
|
|
if (h !== undefined) {
|
2021-03-13 17:25:44 +01:00
|
|
|
hash.setData(h)
|
|
|
|
}
|
2021-01-27 01:14:16 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
}
|
2021-07-28 00:09:17 +02:00
|
|
|
|
2021-05-06 01:33:09 +02:00
|
|
|
// If a feature is selected via the hash, zoom there
|
2021-07-28 00:09:17 +02:00
|
|
|
public zoomToSelectedFeature(location: UIEventSource<Loc>) {
|
2021-09-21 03:10:15 +02:00
|
|
|
const hash = this.hash.data;
|
2021-07-28 00:09:17 +02:00
|
|
|
if (hash === undefined || SelectedFeatureHandler._no_trigger_on.indexOf(hash) >= 0) {
|
2021-05-06 01:33:09 +02:00
|
|
|
return; // No valid feature selected
|
|
|
|
}
|
2021-07-18 14:52:09 +02:00
|
|
|
// We should have a valid osm-ID and zoom to it... But we wrap it in try-catch to be sure
|
2021-07-28 00:09:17 +02:00
|
|
|
try {
|
|
|
|
|
|
|
|
OsmObject.DownloadObject(hash).addCallbackAndRunD(element => {
|
|
|
|
const centerpoint = element.centerpoint();
|
|
|
|
console.log("Zooming to location for select point: ", centerpoint)
|
|
|
|
location.data.lat = centerpoint[0]
|
|
|
|
location.data.lon = centerpoint[1]
|
|
|
|
location.ping();
|
|
|
|
})
|
|
|
|
} catch (e) {
|
2021-07-18 14:52:09 +02:00
|
|
|
console.error("Could not download OSM-object with id", hash, " - probably a weird hash")
|
|
|
|
}
|
2021-05-06 01:33:09 +02:00
|
|
|
}
|
2021-07-28 00:09:17 +02:00
|
|
|
|
2021-01-27 01:14:16 +01:00
|
|
|
}
|