]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index/new_note.js
eab4b258a3808c00bf04a0b757627e19aa98835e
[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(location, text, callback) {
39     $.ajax({
40       url: "/api/0.6/notes.json",
41       type: "POST",
42       oauth: true,
43       data: {
44         lat: location.lat,
45         lon: location.lng,
46         text
47       },
48       success: callback
49     });
50   }
51
52   function addCreatedNoteMarker(feature) {
53     var marker = L.marker(feature.geometry.coordinates.reverse(), {
54       icon: noteIcons[feature.properties.status],
55       opacity: 0.9,
56       interactive: true
57     });
58     marker.id = feature.properties.id;
59     marker.addTo(noteLayer);
60   }
61
62   function addHalo(latlng) {
63     if (halo) map.removeLayer(halo);
64
65     halo = L.circleMarker(latlng, {
66       weight: 2.5,
67       radius: 20,
68       fillOpacity: 0.5,
69       color: "#FF6200"
70     });
71
72     map.addLayer(halo);
73   }
74
75   function removeHalo() {
76     if (halo) map.removeLayer(halo);
77     halo = null;
78   }
79
80   function addNewNoteMarker(latlng) {
81     if (newNoteMarker) map.removeLayer(newNoteMarker);
82
83     newNoteMarker = L.marker(latlng, {
84       icon: noteIcons.new,
85       opacity: 0.9,
86       draggable: true
87     });
88
89     newNoteMarker.on("dragstart dragend", function (a) {
90       removeHalo();
91       if (a.type === "dragend") {
92         addHalo(newNoteMarker.getLatLng());
93       }
94     });
95
96     newNoteMarker.addTo(map);
97     addHalo(newNoteMarker.getLatLng());
98
99     newNoteMarker.on("remove", function () {
100       addNoteButton.removeClass("active");
101     }).on("dragend", function () {
102       content.find("textarea").focus();
103     });
104   }
105
106   function removeNewNoteMarker() {
107     removeHalo();
108     if (newNoteMarker) map.removeLayer(newNoteMarker);
109     newNoteMarker = null;
110   }
111
112   page.pushstate = page.popstate = function (path) {
113     OSM.loadSidebarContent(path, function () {
114       page.load(path);
115     });
116   };
117
118   page.load = function (path) {
119     if (addNoteButton.hasClass("disabled")) return;
120     if (addNoteButton.hasClass("active")) return;
121
122     addNoteButton.addClass("active");
123
124     map.addLayer(noteLayer);
125
126     var params = Qs.parse(path.substring(path.indexOf("?") + 1));
127     var markerLatlng;
128
129     if (params.lat && params.lon) {
130       markerLatlng = L.latLng(params.lat, params.lon);
131     } else {
132       markerLatlng = map.getCenter();
133     }
134
135     map.panInside(markerLatlng, {
136       padding: [50, 50]
137     });
138
139     addNewNoteMarker(markerLatlng);
140
141     content.find("textarea")
142       .on("input", disableWhenBlank)
143       .focus();
144
145     function disableWhenBlank(e) {
146       $(e.target.form.add).prop("disabled", $(e.target).val() === "");
147     }
148
149     content.find("input[type=submit]").on("click", function (e) {
150       const location = newNoteMarker.getLatLng().wrap();
151       const text = content.find("textarea").val();
152
153       e.preventDefault();
154       $(this).prop("disabled", true);
155       newNoteMarker.options.draggable = false;
156       newNoteMarker.dragging.disable();
157
158       createNote(location, text, (feature) => {
159         content.find("textarea").val("");
160         addCreatedNoteMarker(feature);
161         addNoteButton.removeClass("active");
162         OSM.router.route("/note/" + feature.properties.id);
163       });
164     });
165
166     return map.getState();
167   };
168
169   page.unload = function () {
170     removeNewNoteMarker();
171     addNoteButton.removeClass("active");
172   };
173
174   return page;
175 };