X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a1af4d5de13e8a2094089453cbae6478739bd2c8..32645dd8565e7bbad75ab4a03a6b25c4f14e4bda:/app/assets/javascripts/index/search.js?ds=sidebyside diff --git a/app/assets/javascripts/index/search.js b/app/assets/javascripts/index/search.js index 486c9b36b..132447ec5 100644 --- a/app/assets/javascripts/index/search.js +++ b/app/assets/javascripts/index/search.js @@ -1,41 +1,13 @@ -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() +OSM.Search = function(map) { + $("#query") + .on("focus", function() { + $("#describe_location").fadeOut(100); + }) + .on("blur", function() { + $("#describe_location").fadeIn(100); }); - openSidebar(); - - $("#sidebar").one("closed", function () { - map.removeLayer(marker); - map.removeObject(); - }); - } + $("#sidebar_content").on("click", ".search_results_entry a.set_position", clickSearchResult); function clickSearchResult(e) { e.preventDefault(); @@ -45,7 +17,7 @@ function initializeSearch(map) { if (data.minLon && data.minLat && data.maxLon && data.maxLat) { map.fitBounds([[data.minLat, data.minLon], - [data.maxLat, data.maxLon]]); + [data.maxLat, data.maxLon]]); } else { map.setView(center, data.zoom); } @@ -58,4 +30,44 @@ function initializeSearch(map) { map.addObject(data, { zoom: false, style: { opacity: 0.2, fill: false } }); } } -} + + var marker = L.marker([0, 0], {icon: getUserIcon()}); + + var page = {}; + + page.pushstate = page.popstate = function(path) { + var params = querystring.parse(path.substring(path.indexOf('?') + 1)); + $("#query").val(params.query); + $("#sidebar").removeClass("minimized"); + map.invalidateSize(); + $("#sidebar_content").load(path, page.load); + }; + + page.load = function() { + $(".search_results_entry").each(function() { + var entry = $(this); + $.ajax({ + url: entry.data("href"), + method: 'GET', + data: { + zoom: map.getZoom(), + minlon: map.getBounds().getWest(), + minlat: map.getBounds().getSouth(), + maxlon: map.getBounds().getEast(), + maxlat: map.getBounds().getNorth() + }, + success: function(html) { + entry.html(html); + } + }); + }); + }; + + page.unload = function() { + map.removeLayer(marker); + map.removeObject(); + $("#query").val(""); + }; + + return page; +};