export const map_store = writable();
export const results_store = writable();
export const last_api_request_url_store = writable();
+export const error_store = writable();
export const page = writable();
/**
* the requested query parameters. It may also be omitted completely for a
* link without query parameters.
*/
+const pagenames = ['search', 'reverse', 'details', 'deletable', 'polygons', 'status', 'about'];
+
export function refresh_page(pagename, params) {
if (typeof pagename === 'undefined') {
pagename = window.location.pathname.replace('.html', '').replace(/^.*\//, '');
- if (['search', 'reverse', 'details', 'deletable', 'polygons'].indexOf(pagename) === -1) {
- pagename = 'search';
- }
+ if (!pagenames.includes(pagename)) pagename = 'search';
params = new URLSearchParams(window.location.search);
} else {
if (param_str) {
param_str = '?' + param_str;
}
- window.history.pushState([], '', pagename + '.html' + 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);
}