1 OSM.NewNote = function (map) {
2 const noteLayer = map.noteLayer,
3 content = $("#sidebar_content"),
5 addNoteButton = $(".control-note .control-button");
9 addNoteButton.on("click", function (e) {
13 if ($(this).hasClass("disabled")) return;
15 OSM.router.route("/note/new");
18 function createNote(location, text, callback) {
19 fetch("/api/0.6/notes.json", {
21 headers: { ...OSM.oauth },
22 body: new URLSearchParams({
28 .then(response => response.json())
32 function addCreatedNoteMarker(feature) {
33 const marker = L.marker(feature.geometry.coordinates.reverse(), {
34 icon: OSM.getMarker({ icon: `${feature.properties.status}_NOTE_MARKER`, shadow: false, height: 40 }),
38 marker.id = feature.properties.id;
39 marker.addTo(noteLayer);
42 function addHalo(latlng) {
43 if (halo) map.removeLayer(halo);
45 halo = L.circleMarker(latlng, {
55 function removeHalo() {
56 if (halo) map.removeLayer(halo);
60 function addNewNoteMarker(latlng) {
61 if (newNoteMarker) map.removeLayer(newNoteMarker);
63 newNoteMarker = L.marker(latlng, {
64 icon: OSM.getMarker({ icon: "NEW_NOTE_MARKER", shadow: false, height: 40 }),
69 newNoteMarker.on("dragstart dragend", function (a) {
71 if (a.type === "dragend") {
72 addHalo(newNoteMarker.getLatLng());
76 newNoteMarker.addTo(map);
77 addHalo(newNoteMarker.getLatLng());
79 newNoteMarker.on("dragend", function () {
80 content.find("textarea").focus();
84 function removeNewNoteMarker() {
86 if (newNoteMarker) map.removeLayer(newNoteMarker);
90 function moveNewNotMarkerToClick(e) {
91 if (newNoteMarker) newNoteMarker.setLatLng(e.latlng);
92 if (halo) halo.setLatLng(e.latlng);
93 content.find("textarea").focus();
96 function updateControls() {
97 const zoomedOut = addNoteButton.hasClass("disabled");
98 const withoutText = content.find("textarea").val() === "";
100 content.find("#new-note-zoom-warning").prop("hidden", !zoomedOut);
101 content.find("input[type=submit]").prop("disabled", zoomedOut || withoutText);
102 if (newNoteMarker) newNoteMarker.setOpacity(zoomedOut ? 0.5 : 0.9);
105 page.pushstate = page.popstate = function (path) {
106 OSM.loadSidebarContent(path, function () {
111 page.load = function (path) {
112 addNoteButton.addClass("active");
114 map.addLayer(noteLayer);
116 const params = new URLSearchParams(path.substring(path.indexOf("?")));
119 if (params.has("lat") && params.has("lon")) {
120 markerLatlng = L.latLng(params.get("lat"), params.get("lon"));
122 markerLatlng = map.getCenter();
125 map.panInside(markerLatlng, {
129 addNewNoteMarker(markerLatlng);
131 content.find("textarea")
132 .on("input", updateControls)
135 content.find("input[type=submit]").on("click", function (e) {
136 const location = newNoteMarker.getLatLng().wrap();
137 const text = content.find("textarea").val();
140 $(this).prop("disabled", true);
141 newNoteMarker.options.draggable = false;
142 newNoteMarker.dragging.disable();
144 createNote(location, text, (feature) => {
145 if (typeof OSM.user === "undefined") {
146 const anonymousNotesCount = Number(Cookies.get("_osm_anonymous_notes_count")) || 0;
147 Cookies.set("_osm_anonymous_notes_count", anonymousNotesCount + 1, { secure: true, expires: 30, path: "/", samesite: "lax" });
149 content.find("textarea").val("");
150 addCreatedNoteMarker(feature);
151 OSM.router.route("/note/" + feature.properties.id);
155 map.on("click", moveNewNotMarkerToClick);
156 addNoteButton.on("disabled enabled", updateControls);
159 return map.getState();
162 page.unload = function () {
163 map.off("click", moveNewNotMarkerToClick);
164 addNoteButton.off("disabled enabled", updateControls);
165 removeNewNoteMarker();
166 addNoteButton.removeClass("active");