mapcomplete/Logic/Actors/StrayClickHandler.ts

70 lines
2.5 KiB
TypeScript
Raw Normal View History

import * as L from "leaflet";
2020-07-29 22:59:08 +00:00
import {UIElement} from "../../UI/UIElement";
2020-11-06 03:02:53 +00:00
import Svg from "../../Svg";
2021-01-02 20:03:40 +00:00
import {UIEventSource} from "../UIEventSource";
import {FilteredLayer} from "../FilteredLayer";
2021-01-02 23:19:42 +00:00
import Img from "../../UI/Base/Img";
2020-06-29 01:12:44 +00:00
/**
* The stray-click-hanlders adds a marker to the map if no feature was clicked.
* Shows the given uiToShow-element in the messagebox
*/
export class StrayClickHandler {
private _lastMarker;
private _uiToShow: (() => UIElement);
constructor(
2021-01-02 20:03:40 +00:00
lastClickLocation: UIEventSource<{ lat: number, lon:number }>,
selectedElement: UIEventSource<string>,
filteredLayers: UIEventSource<FilteredLayer[]>,
leafletMap: UIEventSource<L.Map>,
fullscreenMessage: UIEventSource<UIElement>,
2020-06-29 01:12:44 +00:00
uiToShow: (() => UIElement)) {
this._uiToShow = uiToShow;
const self = this;
2021-01-02 20:03:40 +00:00
filteredLayers.data.forEach((filteredLayer) => {
filteredLayer.isDisplayed.addCallback(isEnabled => {
2021-01-02 20:03:40 +00:00
if(isEnabled && self._lastMarker && leafletMap.data !== undefined){
// When a layer is activated, we remove the 'last click location' in order to force the user to reclick
// This reclick might be at a location where a feature now appeared...
2021-01-02 20:03:40 +00:00
leafletMap.data.removeLayer(self._lastMarker);
}
})
})
2021-01-02 20:03:40 +00:00
lastClickLocation.addCallback(function (lastClick) {
selectedElement.setData(undefined);
2020-06-29 01:12:44 +00:00
if (self._lastMarker !== undefined) {
2021-01-02 20:03:40 +00:00
leafletMap.data?.removeLayer(self._lastMarker);
2020-06-29 01:12:44 +00:00
}
2020-07-25 16:00:08 +00:00
self._lastMarker = L.marker([lastClick.lat, lastClick.lon], {
icon: L.icon({
2020-11-06 03:02:53 +00:00
iconUrl: Img.AsData(Svg.add),
iconSize: [50, 50],
iconAnchor: [25, 50],
popupAnchor: [0, -45]
2020-07-25 16:00:08 +00:00
})
});
2020-06-29 14:21:36 +00:00
const uiElement = uiToShow();
const popup = L.popup().setContent(uiElement.Render());
2021-01-02 20:03:40 +00:00
self._lastMarker.addTo(leafletMap.data);
self._lastMarker.bindPopup(popup);
2020-06-29 14:21:36 +00:00
2020-07-01 00:12:33 +00:00
self._lastMarker.on("click", () => {
2021-01-02 20:03:40 +00:00
fullscreenMessage.setData(self._uiToShow());
uiElement.Update();
2020-07-01 00:12:33 +00:00
});
2020-06-29 01:12:44 +00:00
});
2021-01-02 20:03:40 +00:00
selectedElement.addCallback(() => {
2020-06-29 01:12:44 +00:00
if (self._lastMarker !== undefined) {
2021-01-02 20:03:40 +00:00
leafletMap.data.removeLayer(self._lastMarker);
2020-06-29 01:12:44 +00:00
this._lastMarker = undefined;
}
})
}
}