mapcomplete/index.ts

105 lines
4.3 KiB
TypeScript
Raw Normal View History

2020-07-05 16:59:47 +00:00
import {AllKnownLayouts} from "./Customizations/AllKnownLayouts";
2020-07-29 22:59:08 +00:00
import {Layout} from "./Customizations/Layout";
2020-07-20 22:07:04 +00:00
import {FixedUiElement} from "./UI/Base/FixedUiElement";
2020-07-29 13:05:19 +00:00
import {InitUiElements} from "./InitUiElements";
import {QueryParameters} from "./Logic/Web/QueryParameters";
import {UIEventSource} from "./Logic/UIEventSource";
import * as $ from "jquery";
import {FromJSON} from "./Customizations/JSON/FromJSON";
2020-09-10 17:33:06 +00:00
import {TagRendering} from "./UI/TagRendering";
2020-06-23 22:35:19 +00:00
TagRendering.injectFunction();
2020-07-11 09:50:03 +00:00
2020-07-23 23:12:57 +00:00
// --------------------- Special actions based on the parameters -----------------
2020-07-12 21:19:05 +00:00
// @ts-ignore
2020-07-15 12:03:44 +00:00
if (location.href.startsWith("http://buurtnatuur.be")) {
2020-07-11 09:50:03 +00:00
// Reload the https version. This is important for the 'locate me' button
2020-07-15 12:03:44 +00:00
window.location.replace("https://buurtnatuur.be");
2020-07-11 09:50:03 +00:00
}
let testing: UIEventSource<string>;
if (location.hostname === "localhost" || location.hostname === "127.0.0.1") {
testing = QueryParameters.GetQueryParameter("test", "true");
// Set to true if testing and changes should NOT be saved
2020-07-24 11:46:03 +00:00
testing.setData(testing.data ?? "true")
// If you have a testfile somewhere, enable this to spoof overpass
// This should be hosted independantly, e.g. with `cd assets; webfsd -p 8080` + a CORS plugin to disable cors rules
2020-07-17 16:57:07 +00:00
//Overpass.testUrl = "http://127.0.0.1:8080/streetwidths.geojson";
} else {
testing = QueryParameters.GetQueryParameter("test", "false");
}
2020-06-23 22:35:19 +00:00
// ----------------- SELECT THE RIGHT QUESTSET -----------------
let defaultLayout = "bookcases"
const path = window.location.pathname.split("/").slice(-1)[0];
if (path !== "index.html" && path !== "") {
defaultLayout = path.substr(0, path.length - 5);
console.log("Using layout", defaultLayout);
}
2020-07-15 11:15:36 +00:00
// Run over all questsets. If a part of the URL matches a searched-for part in the layout, it'll take that as the default
for (const k in AllKnownLayouts.allSets) {
const layout = AllKnownLayouts.allSets[k];
const possibleParts = (layout.locationContains ?? []);
for (const locationMatch of possibleParts) {
2020-07-15 11:15:36 +00:00
if (locationMatch === "") {
continue
}
2020-07-15 11:15:36 +00:00
if (window.location.href.toLowerCase().indexOf(locationMatch.toLowerCase()) >= 0) {
defaultLayout = layout.name;
}
}
}
2020-07-29 13:05:19 +00:00
defaultLayout = QueryParameters.GetQueryParameter("layout", defaultLayout).data;
2020-07-05 16:59:47 +00:00
let layoutToUse: Layout = AllKnownLayouts.allSets[defaultLayout.toLowerCase()] ?? AllKnownLayouts["all"];
const userLayoutParam = QueryParameters.GetQueryParameter("userlayout", "false");
const layoutFromBase64 = decodeURIComponent(userLayoutParam.data);
if (layoutFromBase64.startsWith("wiki:")) {
console.log("Downloading map theme from the wiki");
const themeName = layoutFromBase64.substr("wiki:".length);
new FixedUiElement(`Downloading ${themeName} from the wiki...`)
.AttachTo("centermessage");
2020-09-14 22:25:25 +00:00
const cleanUrl = `https://wiki.openstreetmap.org/wiki/${themeName}`;
const url = `https://cors-anywhere.herokuapp.com/` + cleanUrl; // VERY SAFE AND HACKER-PROOF!
$.ajax({
url: url,
dataType: 'xml',
success: function (data) {
const layoutJson = data.querySelector('[id="bodyContent"]')
.querySelector('[class="mw-parser-output"]')
.children[0]
.firstChild.textContent;
try {
console.log("DOWNLOADED:",layoutJson);
const layout = FromJSON.LayoutFromJSON(JSON.parse(layoutJson));
2020-09-14 22:25:25 +00:00
layout.id = layoutFromBase64;
2020-09-15 00:29:31 +00:00
InitUiElements.InitAll(layout, layoutFromBase64, testing, layoutFromBase64, btoa(layoutJson));
} catch (e) {
new FixedUiElement(`<a href="${cleanUrl}">${themeName}</a> is invalid:<br/>${e}`)
.SetClass("clickable")
.AttachTo("centermessage");
throw e;
2020-07-31 02:58:58 +00:00
}
},
}).fail(e => {
new FixedUiElement(`<a href="${cleanUrl}">${themeName}</a> is invalid:<br/>Could not download - wrong URL?`)
.SetClass("clickable")
.AttachTo("centermessage");
});
2020-09-14 22:25:25 +00:00
} else if (layoutFromBase64 !== "false") {
layoutToUse = InitUiElements.LoadLayoutFromHash(userLayoutParam);
2020-09-15 00:29:31 +00:00
InitUiElements.InitAll(layoutToUse, layoutFromBase64, testing, defaultLayout, location.hash.substr(1));
} else {
InitUiElements.InitAll(layoutToUse, layoutFromBase64, testing, defaultLayout);
2020-07-29 13:05:19 +00:00
}