]> git.openstreetmap.org Git - rails.git/commitdiff
Generate proper descriptions for notes
authorTom Hughes <tom@compton.nu>
Sun, 23 Sep 2012 14:30:19 +0000 (15:30 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 23 Sep 2012 14:30:19 +0000 (15:30 +0100)
app/assets/javascripts/notes.js.erb

index 01264bcb65c1f23886f2a7a5bb9eb0a03dadbc76..c55c11ec958d7315a9c32f080aa120e1e1d91f52 100644 (file)
@@ -13,6 +13,17 @@ function addNoteLayer(map, notesUrl, newNoteControls, newNoteForm, minZoom) {
     newNotes = undefined;
   };
 
+  var describeNote = function (n) {
+    var description = "<h2>Note " + n.id + "</h2>";
+
+    n.comments.forEach(function (c) {
+      description += "<p><small class='deemphasize'>" + c.action + " by ";
+      description += c.user + " at " + c.date + "</small><br/>" + c.text + "</p>";
+    });
+
+    return description;
+  }
+
   var noteSelected = function (o) {
     var feature = o.feature;
     var location = feature.geometry.getBounds().getCenterLonLat();
@@ -25,7 +36,7 @@ function addNoteLayer(map, notesUrl, newNoteControls, newNoteForm, minZoom) {
       content = form.html();
       close = false;
     } else {
-      content = "<p>" + feature.attributes.id + "</p>";
+      content = describeNote(feature.attributes);
       close = true;
     };