]> git.openstreetmap.org Git - rails.git/commitdiff
Refactor search JS
authorJohn Firebaugh <john.firebaugh@gmail.com>
Tue, 6 Aug 2013 17:32:12 +0000 (10:32 -0700)
committerTom Hughes <tom@compton.nu>
Tue, 6 Aug 2013 19:23:06 +0000 (20:23 +0100)
app/assets/javascripts/index.js
app/assets/javascripts/index/search.js [new file with mode: 0644]
app/views/site/_home_link.html.erb

index bae80cac5069480ff60a9fe3ab4cf3e857a77ac8..5d135696e60b9d5ded5f099845ffb8339f9a2f4b 100644 (file)
@@ -5,6 +5,7 @@
 //= require leaflet.key
 //= require leaflet.note
 //= require leaflet.share
 //= require leaflet.key
 //= require leaflet.note
 //= require leaflet.share
+//= require index/search
 //= require index/browse
 //= require index/export
 //= require index/notes
 //= require index/browse
 //= require index/export
 //= require index/notes
@@ -103,7 +104,7 @@ $(document).ready(function () {
 
   map.on('moveend layeradd layerremove', updateLocation);
 
 
   map.on('moveend layeradd layerremove', updateLocation);
 
-  map.markerLayer = L.layerGroup().addTo(map);
+  var marker = L.marker([0, 0], {icon: getUserIcon()});
 
   if (!params.object_zoom) {
     if (params.bounds) {
 
   if (!params.object_zoom) {
     if (params.bounds) {
@@ -122,14 +123,22 @@ $(document).ready(function () {
   }
 
   if (params.marker) {
   }
 
   if (params.marker) {
-    L.marker([params.mlat, params.mlon], {icon: getUserIcon()}).addTo(map.markerLayer);
+    marker.setLatLng([params.mlat, params.mlon]).addTo(map);
   }
 
   if (params.object) {
     map.addObject(params.object, { zoom: params.object_zoom });
   }
 
   }
 
   if (params.object) {
     map.addObject(params.object, { zoom: params.object_zoom });
   }
 
-  $("body").on("click", "a.set_position", setPositionLink(map));
+  $("#homeanchor").on("click", function(e) {
+    e.preventDefault();
+
+    var data = $(this).data(),
+      center = L.latLng(data.lat, data.lon);
+
+    map.setView(center, data.zoom);
+    marker.setLatLng(center).addTo(map);
+  });
 
   $("a[data-editor=remote]").click(function(e) {
       remoteEditHandler(map.getBounds());
 
   $("a[data-editor=remote]").click(function(e) {
       remoteEditHandler(map.getBounds());
@@ -140,19 +149,7 @@ $(document).ready(function () {
     remoteEditHandler(map.getBounds());
   }
 
     remoteEditHandler(map.getBounds());
   }
 
-  $("#search_form").submit(submitSearch(map));
-
-
-  if ($("#query").val()) {
-    $("#search_form").submit();
-  }
-
-  // Focus the search field for browsers that don't support
-  // the HTML5 'autofocus' attribute
-  if (!("autofocus" in document.createElement("input"))) {
-    $("#query").focus();
-  }
-
+  initializeSearch(map);
   initializeExport(map);
   initializeBrowse(map, params);
   initializeNotes(map, params);
   initializeExport(map);
   initializeBrowse(map, params);
   initializeNotes(map, params);
@@ -171,43 +168,3 @@ function updateLocation() {
   // Trigger hash update on layer changes.
   this.hash.onMapMove();
 }
   // Trigger hash update on layer changes.
   this.hash.onMapMove();
 }
-
-function setPositionLink(map) {
-  return function(e) {
-      var data = $(this).data(),
-          center = L.latLng(data.lat, data.lon);
-
-      if (data.minLon && data.minLat && data.maxLon && data.maxLat) {
-        map.fitBounds([[data.minLat, data.minLon],
-                       [data.maxLat, data.maxLon]]);
-      } else {
-        map.setView(center, data.zoom);
-      }
-
-      if (data.type && data.id) {
-        map.addObject(data, { zoom: false, style: { opacity: 0.2, fill: false } });
-      }
-
-      map.markerLayer.clearLayers();
-      L.marker(center, {icon: getUserIcon()}).addTo(map.markerLayer);
-
-      return e.preventDefault();
-  };
-}
-
-function submitSearch(map) {
-  return function(e) {
-    var bounds = map.getBounds();
-
-    $("#sidebar_title").html(I18n.t('site.sidebar.search_results'));
-    $("#sidebar_content").load($(this).attr("action"), {
-      query: $("#query").val(),
-      minlon: bounds.getWest(),
-      minlat: bounds.getSouth(),
-      maxlon: bounds.getEast(),
-      maxlat: bounds.getNorth()
-    }, openSidebar);
-
-    return e.preventDefault();
-  };
-}
diff --git a/app/assets/javascripts/index/search.js b/app/assets/javascripts/index/search.js
new file mode 100644 (file)
index 0000000..936cc1e
--- /dev/null
@@ -0,0 +1,56 @@
+function initializeSearch(map) {
+  $("#search_form").submit(submitSearch);
+
+  if ($("#query").val()) {
+    $("#search_form").submit();
+  }
+
+  // Focus the search field for browsers that don't support
+  // the HTML5 'autofocus' attribute
+  if (!("autofocus" in document.createElement("input"))) {
+    $("#query").focus();
+  }
+
+  $("#sidebar_content").on("click", ".search_results_entry a.set_position", clickSearchResult);
+
+  var marker = L.marker([0, 0], {icon: getUserIcon()});
+
+  function submitSearch(e) {
+    e.preventDefault();
+
+    var bounds = map.getBounds();
+
+    $("#sidebar_title").html(I18n.t('site.sidebar.search_results'));
+    $("#sidebar_content").load($(this).attr("action"), {
+      query: $("#query").val(),
+      minlon: bounds.getWest(),
+      minlat: bounds.getSouth(),
+      maxlon: bounds.getEast(),
+      maxlat: bounds.getNorth()
+    });
+
+    openSidebar();
+  }
+
+  function clickSearchResult(e) {
+    e.preventDefault();
+
+    var data = $(this).data(),
+      center = L.latLng(data.lat, data.lon);
+
+    if (data.minLon && data.minLat && data.maxLon && data.maxLat) {
+      map.fitBounds([[data.minLat, data.minLon],
+                     [data.maxLat, data.maxLon]]);
+    } else {
+      map.setView(center, data.zoom);
+    }
+
+    marker
+      .setLatLng(center)
+      .addTo(map);
+
+    if (data.type && data.id) {
+      map.addObject(data, { zoom: false, style: { opacity: 0.2, fill: false } });
+    }
+  }
+}
index 4d781c123853fe35e5919bd60822f84e10e52494..979ae7681fecfdfc8a3c3ba679a01a28088e005d 100644 (file)
@@ -1,5 +1,12 @@
 <% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? %>
   <% content_for :greeting do %>
 <% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? %>
   <% content_for :greeting do %>
-    <%= link_to t("layouts.home"), "#", :class => "set_position", :data => { :lat => @user.home_lat, :lon => @user.home_lon, :zoom => 15 }, :title => t("layouts.home_tooltip") %>
+    <%= link_to t("layouts.home"),
+                "#",
+                :id => "homeanchor",
+                :class => "set_position",
+                :data => { :lat => @user.home_lat,
+                           :lon => @user.home_lon,
+                           :zoom => 15 },
+                :title => t("layouts.home_tooltip") %>
   <% end %>
 <% end %>
   <% end %>
 <% end %>