//= require index/new_note
//= require router
+(function() {
+ var loaderTimeout;
+
+ OSM.loadSidebarContent = function(path, callback) {
+ clearTimeout(loaderTimeout);
+
+ loaderTimeout = setTimeout(function() {
+ $('#sidebar_loader').show();
+ }, 200);
+
+ // IE<10 doesn't respect Vary: X-Requested-With header, so
+ // prevent caching the XHR response as a full-page URL.
+ if (path.indexOf('?') >= 0) {
+ path += '&xhr=1'
+ } else {
+ path += '?xhr=1'
+ }
+
+ $('#sidebar_content')
+ .empty();
+
+ $.ajax({
+ url: path,
+ dataType: "html",
+ complete: function(xhr) {
+ clearTimeout(loaderTimeout);
+ $('#sidebar_loader').hide();
+ $('#sidebar_content').html(xhr.responseText);
+ if (xhr.getResponseHeader('X-Page-Title')) {
+ document.title = xhr.getResponseHeader('X-Page-Title');
+ }
+ if (callback) {
+ callback();
+ }
+ }
+ });
+ };
+})();
+
$(document).ready(function () {
var params = OSM.mapParams();
OSM.Index = function(map) {
var page = {};
- function loadContent(path) {
- $('#sidebar_content').load(path + "?xhr=1", function(a, b, xhr) {
- if (xhr.getResponseHeader('X-Page-Title')) {
- document.title = xhr.getResponseHeader('X-Page-Title');
- }
- });
- }
-
- page.pushstate = function(path) {
+ page.pushstate = function() {
$("#content").addClass("overlay-sidebar");
map.invalidateSize({pan: false})
- .panBy([-300, 0], {animate: false});
- loadContent(path);
+ .panBy([-350, 0], {animate: false});
};
- page.popstate = function(path) {
+ page.load = function() {
+ return map.getState();
+ };
+
+ page.popstate = function() {
$("#content").addClass("overlay-sidebar");
map.invalidateSize({pan: false});
- loadContent(path);
};
page.unload = function() {
- map.panBy([300, 0], {animate: false});
+ map.panBy([350, 0], {animate: false});
$("#content").removeClass("overlay-sidebar");
map.invalidateSize({pan: false});
};
var page = {};
page.pushstate = page.popstate = function(path, type, id) {
- $('#sidebar_content').load(path + "?xhr=1", function(a, b, xhr) {
- if (xhr.getResponseHeader('X-Page-Title')) {
- document.title = xhr.getResponseHeader('X-Page-Title');
- }
+ OSM.loadSidebarContent(path, function() {
page.load(path, type, id);
});
};
page.load = function(path, type, id) {
- if (OSM.STATUS === 'api_offline' || OSM.STATUS === 'database_offline') return;
-
- map.addObject({type: type, id: parseInt(id)}, {zoom: true});
+ map.addObject({type: type, id: parseInt(id)});
};
page.unload = function() {
return page;
};
- var history = OSM.History(map),
- note = OSM.Note(map);
+ var history = OSM.History(map);
- OSM.route = OSM.Router(map, {
+ OSM.router = OSM.Router(map, {
"/": OSM.Index(map),
"/search": OSM.Search(map),
"/export": OSM.Export(map),
- "/history": history,
"/new_note": OSM.NewNote(map),
+ "/history": history,
"/user/:display_name/edits": history,
"/browse/friends": history,
"/browse/nearby": history,
- "/browse/note/:id": note,
+ "/browse/note/:id": OSM.Note(map),
"/browse/:type/:id(/history)": OSM.Browse(map)
});
+ OSM.router.load();
+
$(document).on("click", "a", function(e) {
if (e.isDefaultPrevented() || e.isPropagationStopped()) return;
- if (this.host === window.location.host && OSM.route(this.pathname + this.search + this.hash)) e.preventDefault();
+ if (this.host === window.location.host && OSM.router.route(this.pathname + this.search + this.hash)) e.preventDefault();
});
$(".search_form").on("submit", function(e) {
e.preventDefault();
$("header").addClass("closed");
- OSM.route("/search?query=" + encodeURIComponent($(this).find("input[name=query]").val()) + OSM.formatHash(map));
+ var query = $(this).find("input[name=query]").val();
+ if (query) {
+ OSM.router.route("/search?query=" + encodeURIComponent(query) + OSM.formatHash(map));
+ } else {
+ OSM.router.route("/" + OSM.formatHash(map));
+ }
});
$(".describe_location").on("click", function(e) {
e.preventDefault();
var precision = zoomPrecision(map.getZoom());
- OSM.route("/search?query=" + encodeURIComponent(
+ OSM.router.route("/search?query=" + encodeURIComponent(
map.getCenter().lat.toFixed(precision) + "," +
map.getCenter().lng.toFixed(precision)));
});