X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/101642af08f7dbf4247394f0799995e486187ddf..refs/heads/master:/app/assets/javascripts/index/layers/notes.js diff --git a/app/assets/javascripts/index/layers/notes.js b/app/assets/javascripts/index/layers/notes.js index 1068472d5..00f1fb4e9 100644 --- a/app/assets/javascripts/index/layers/notes.js +++ b/app/assets/javascripts/index/layers/notes.js @@ -1,30 +1,15 @@ OSM.initializeNotesLayer = function (map) { - var noteLayer = map.noteLayer, - notes = {}; - - var noteIcons = { - "new": L.icon({ - iconUrl: OSM.NEW_NOTE_MARKER, - iconSize: [25, 40], - iconAnchor: [12, 40] - }), - "open": L.icon({ - iconUrl: OSM.OPEN_NOTE_MARKER, - iconSize: [25, 40], - iconAnchor: [12, 40] - }), - "closed": L.icon({ - iconUrl: OSM.CLOSED_NOTE_MARKER, - iconSize: [25, 40], - iconAnchor: [12, 40] - }) - }; + let noteLoader; + const noteLayer = map.noteLayer; + let notes = {}; noteLayer.on("add", () => { loadNotes(); map.on("moveend", loadNotes); map.fire("overlayadd", { layer: noteLayer }); }).on("remove", () => { + if (noteLoader) noteLoader.abort(); + noteLoader = null; map.off("moveend", loadNotes); noteLayer.clearLayers(); notes = {}; @@ -36,9 +21,9 @@ OSM.initializeNotesLayer = function (map) { }); function updateMarker(old_marker, feature) { - var marker = old_marker; + let marker = old_marker; if (marker) { - marker.setIcon(noteIcons[feature.properties.status]); + marker.setIcon(OSM.getMarker({ icon: `${feature.properties.status}_NOTE_MARKER`, shadow: false, height: 40 })); } else { let title; const description = feature.properties.comments[0]; @@ -48,7 +33,7 @@ OSM.initializeNotesLayer = function (map) { } marker = L.marker(feature.geometry.coordinates.reverse(), { - icon: noteIcons[feature.properties.status], + icon: OSM.getMarker({ icon: `${feature.properties.status}_NOTE_MARKER`, shadow: false, height: 40 }), title, opacity: 0.8, interactive: true @@ -63,39 +48,35 @@ OSM.initializeNotesLayer = function (map) { return marker.id; }; - var noteLoader; - function loadNotes() { - var bounds = map.getBounds(); - var size = bounds.getSize(); + const bounds = map.getBounds(); + const size = bounds.getSize(); if (size <= OSM.MAX_NOTE_REQUEST_AREA) { - var url = "/api/" + OSM.API_VERSION + "/notes.json?bbox=" + bounds.toBBoxString(); + const url = "/api/" + OSM.API_VERSION + "/notes.json?bbox=" + bounds.toBBoxString(); if (noteLoader) noteLoader.abort(); - noteLoader = $.ajax({ - url: url, - success: success - }); + noteLoader = new AbortController(); + fetch(url, { signal: noteLoader.signal }) + .then(response => response.json()) + .then(success) + .catch(() => {}) + .finally(() => noteLoader = null); } function success(json) { - var oldNotes = notes; + const oldNotes = notes; notes = {}; - json.features.forEach(updateMarkers); - - function updateMarkers(feature) { - var marker = oldNotes[feature.properties.id]; + for (const feature of json.features) { + const marker = oldNotes[feature.properties.id]; delete oldNotes[feature.properties.id]; notes[feature.properties.id] = updateMarker(marker, feature); } - for (var id in oldNotes) { + for (const id in oldNotes) { noteLayer.removeLayer(oldNotes[id]); } - - noteLoader = null; } } };