X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/c9687b102bb6f544a034dc4d508bf0ae4a5fc221..e678691b909996b245bdd17e7345467634703d6b:/src/lib/stores.js?ds=sidebyside diff --git a/src/lib/stores.js b/src/lib/stores.js index 910dd8c..00b4195 100644 --- a/src/lib/stores.js +++ b/src/lib/stores.js @@ -2,6 +2,48 @@ import { writable } from 'svelte/store'; export const map_store = writable(); export const results_store = writable(); -export const current_result_store = writable(); -export const current_request_latlon = writable(); -export const last_updated_store = writable(); +export const last_api_request_url_store = writable(); +export const error_store = writable(); +export const page = writable(); + +/** + * Update the global page state. + * + * When called without a parameter, then the current window.location is + * parsed and the page state is set accordingly. Otherwise the page state + * is set from the parameters. 'pagename' is the overall subpage (without + * .html extension). 'params' must be an URLSearchParams object and contain + * the requested query parameters. It may also be omitted completely for a + * link without query parameters. + */ +const pagenames = ['search', 'reverse', 'details', 'deletable', 'polygons', 'about']; + +export function refresh_page(pagename, params) { + if (typeof pagename === 'undefined') { + pagename = window.location.pathname.replace('.html', '').replace(/^.*\//, ''); + + if (!pagenames.includes(pagename)) pagename = 'search'; + + params = new URLSearchParams(window.location.search); + } else { + if (typeof params === 'undefined') { + params = new URLSearchParams(); + } + + let param_str = params.toString(); + if (param_str) { + param_str = '?' + param_str; + } + let new_url = pagename + '.html' + param_str; + + if (window.location.protocol.match(/^http/)) { + window.history.pushState([], '', new_url); + } else { + window.location.href = new_url; + } + } + + page.set({ tab: pagename, params: params }); + last_api_request_url_store.set(null); + error_store.set(null); +}