]> git.openstreetmap.org Git - rails.git/commitdiff
Move create note callback to button click handler
authorAnton Khorev <tony29@yandex.ru>
Tue, 31 Dec 2024 20:37:34 +0000 (23:37 +0300)
committerAnton Khorev <tony29@yandex.ru>
Tue, 31 Dec 2024 20:37:34 +0000 (23:37 +0300)
app/assets/javascripts/index/new_note.js

index 6504bae9e08fcf3de3377bae85b7c8cae9742c11..f50357158b0eb24a9268fba13b6c2048a0e147d0 100644 (file)
@@ -35,7 +35,7 @@ OSM.NewNote = function (map) {
     OSM.router.route("/note/new");
   });
 
-  function createNote(marker, text) {
+  function createNote(marker, text, callback) {
     var location = marker.getLatLng().wrap();
 
     marker.options.draggable = false;
@@ -50,19 +50,8 @@ OSM.NewNote = function (map) {
         lon: location.lng,
         text
       },
-      success: function (feature) {
-        noteCreated(feature, marker);
-      }
+      success: callback
     });
-
-    function noteCreated(feature, marker) {
-      content.find("textarea").val("");
-      updateMarker(feature);
-      newNoteMarker = null;
-      noteLayer.removeLayer(marker);
-      addNoteButton.removeClass("active");
-      OSM.router.route("/note/" + feature.properties.id);
-    }
   }
 
   function updateMarker(feature) {
@@ -154,7 +143,14 @@ OSM.NewNote = function (map) {
 
       e.preventDefault();
       $(this).prop("disabled", true);
-      createNote(newNoteMarker, text);
+      createNote(newNoteMarker, text, (feature) => {
+        content.find("textarea").val("");
+        updateMarker(feature);
+        noteLayer.removeLayer(newNoteMarker);
+        newNoteMarker = null;
+        addNoteButton.removeClass("active");
+        OSM.router.route("/note/" + feature.properties.id);
+      });
     });
 
     return map.getState();