]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index/new_note.js
0ce77f8ca8f8cacf70fddec0b5a3f05c4f012639
[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 newHalo(loc, a) {
63     var hasHalo = halo && map.hasLayer(halo);
64
65     if (a === "dragstart" && hasHalo) {
66       map.removeLayer(halo);
67     } else {
68       if (hasHalo) map.removeLayer(halo);
69
70       halo = L.circleMarker(loc, {
71         weight: 2.5,
72         radius: 20,
73         fillOpacity: 0.5,
74         color: "#FF6200"
75       });
76
77       map.addLayer(halo);
78     }
79   }
80
81   page.pushstate = page.popstate = function (path) {
82     OSM.loadSidebarContent(path, function () {
83       page.load(path);
84     });
85   };
86
87   page.load = function (path) {
88     if (addNoteButton.hasClass("disabled")) return;
89     if (addNoteButton.hasClass("active")) return;
90
91     addNoteButton.addClass("active");
92
93     map.addLayer(noteLayer);
94
95     var params = Qs.parse(path.substring(path.indexOf("?") + 1));
96     var markerLatlng;
97
98     if (params.lat && params.lon) {
99       markerLatlng = L.latLng(params.lat, params.lon);
100     } else {
101       markerLatlng = map.getCenter();
102     }
103
104     map.panInside(markerLatlng, {
105       padding: [50, 50]
106     });
107
108     newNoteMarker = L.marker(markerLatlng, {
109       icon: noteIcons.new,
110       opacity: 0.9,
111       draggable: true
112     });
113
114     newNoteMarker.on("dragstart dragend", function (a) {
115       newHalo(newNoteMarker.getLatLng(), a.type);
116     });
117
118     newNoteMarker.addTo(map);
119     newHalo(newNoteMarker.getLatLng());
120
121     newNoteMarker.on("remove", function () {
122       addNoteButton.removeClass("active");
123     }).on("dragend", function () {
124       content.find("textarea").focus();
125     });
126
127     content.find("textarea")
128       .on("input", disableWhenBlank)
129       .focus();
130
131     function disableWhenBlank(e) {
132       $(e.target.form.add).prop("disabled", $(e.target).val() === "");
133     }
134
135     content.find("input[type=submit]").on("click", function (e) {
136       const location = newNoteMarker.getLatLng().wrap();
137       const text = content.find("textarea").val();
138
139       e.preventDefault();
140       $(this).prop("disabled", true);
141       newNoteMarker.options.draggable = false;
142       newNoteMarker.dragging.disable();
143
144       createNote(location, text, (feature) => {
145         content.find("textarea").val("");
146         addCreatedNoteMarker(feature);
147         map.removeLayer(newNoteMarker);
148         newNoteMarker = null;
149         addNoteButton.removeClass("active");
150         OSM.router.route("/note/" + feature.properties.id);
151       });
152     });
153
154     return map.getState();
155   };
156
157   page.unload = function () {
158     if (newNoteMarker) map.removeLayer(newNoteMarker);
159     if (halo) map.removeLayer(halo);
160     addNoteButton.removeClass("active");
161   };
162
163   return page;
164 };