]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index/new_note.js
Pass text instead of form to createNote()
[rails.git] / app / assets / javascripts / index / new_note.js
1 //= require qs/dist/qs
2
3 OSM.NewNote = function (map) {
4   var noteLayer = map.noteLayer,
5       content = $("#sidebar_content"),
6       page = {},
7       addNoteButton = $(".control-note .control-button"),
8       newNoteMarker,
9       halo;
10
11   var noteIcons = {
12     "new": L.icon({
13       iconUrl: OSM.NEW_NOTE_MARKER,
14       iconSize: [25, 40],
15       iconAnchor: [12, 40]
16     }),
17     "open": L.icon({
18       iconUrl: OSM.OPEN_NOTE_MARKER,
19       iconSize: [25, 40],
20       iconAnchor: [12, 40]
21     }),
22     "closed": L.icon({
23       iconUrl: OSM.CLOSED_NOTE_MARKER,
24       iconSize: [25, 40],
25       iconAnchor: [12, 40]
26     })
27   };
28
29   addNoteButton.on("click", function (e) {
30     e.preventDefault();
31     e.stopPropagation();
32
33     if ($(this).hasClass("disabled")) return;
34
35     OSM.router.route("/note/new");
36   });
37
38   function createNote(marker, text, url) {
39     var location = marker.getLatLng().wrap();
40
41     marker.options.draggable = false;
42     marker.dragging.disable();
43
44     $.ajax({
45       url: url,
46       type: "POST",
47       oauth: true,
48       data: {
49         lat: location.lat,
50         lon: location.lng,
51         text
52       },
53       success: function (feature) {
54         noteCreated(feature, marker);
55       }
56     });
57
58     function noteCreated(feature, marker) {
59       content.find("textarea").val("");
60       updateMarker(feature);
61       newNoteMarker = null;
62       noteLayer.removeLayer(marker);
63       addNoteButton.removeClass("active");
64       OSM.router.route("/note/" + feature.properties.id);
65     }
66   }
67
68   function updateMarker(feature) {
69     var marker = L.marker(feature.geometry.coordinates.reverse(), {
70       icon: noteIcons[feature.properties.status],
71       opacity: 0.9,
72       interactive: true
73     });
74     marker.id = feature.properties.id;
75     marker.addTo(noteLayer);
76     return marker;
77   }
78
79   page.pushstate = page.popstate = function (path) {
80     OSM.loadSidebarContent(path, function () {
81       page.load(path);
82     });
83   };
84
85   function newHalo(loc, a) {
86     var hasHalo = halo && map.hasLayer(halo);
87
88     if (a === "dragstart" && hasHalo) {
89       map.removeLayer(halo);
90     } else {
91       if (hasHalo) map.removeLayer(halo);
92
93       halo = L.circleMarker(loc, {
94         weight: 2.5,
95         radius: 20,
96         fillOpacity: 0.5,
97         color: "#FF6200"
98       });
99
100       map.addLayer(halo);
101     }
102   }
103
104   page.load = function (path) {
105     if (addNoteButton.hasClass("disabled")) return;
106     if (addNoteButton.hasClass("active")) return;
107
108     addNoteButton.addClass("active");
109
110     map.addLayer(noteLayer);
111
112     var params = Qs.parse(path.substring(path.indexOf("?") + 1));
113     var markerLatlng;
114
115     if (params.lat && params.lon) {
116       markerLatlng = L.latLng(params.lat, params.lon);
117     } else {
118       markerLatlng = map.getCenter();
119     }
120
121     map.panInside(markerLatlng, {
122       padding: [50, 50]
123     });
124
125     newNoteMarker = L.marker(markerLatlng, {
126       icon: noteIcons.new,
127       opacity: 0.9,
128       draggable: true
129     });
130
131     newNoteMarker.on("dragstart dragend", function (a) {
132       newHalo(newNoteMarker.getLatLng(), a.type);
133     });
134
135     newNoteMarker.addTo(noteLayer);
136     newHalo(newNoteMarker.getLatLng());
137
138     newNoteMarker.on("remove", function () {
139       addNoteButton.removeClass("active");
140     }).on("dragend", function () {
141       content.find("textarea").focus();
142     });
143
144     content.find("textarea")
145       .on("input", disableWhenBlank)
146       .focus();
147
148     function disableWhenBlank(e) {
149       $(e.target.form.add).prop("disabled", $(e.target).val() === "");
150     }
151
152     content.find("input[type=submit]").on("click", function (e) {
153       const text = content.find("textarea").val();
154
155       e.preventDefault();
156       $(this).prop("disabled", true);
157       createNote(newNoteMarker, text, "/api/0.6/notes.json");
158     });
159
160     return map.getState();
161   };
162
163   page.unload = function () {
164     if (newNoteMarker) noteLayer.removeLayer(newNoteMarker);
165     if (halo) map.removeLayer(halo);
166     addNoteButton.removeClass("active");
167   };
168
169   return page;
170 };