2020-07-31 01:45:54 +02:00
|
|
|
import {Layout} from "./Customizations/Layout";
|
2020-07-29 15:05:19 +02:00
|
|
|
import Locale from "./UI/i18n/Locale";
|
|
|
|
import Translations from "./UI/i18n/Translations";
|
|
|
|
import {TabbedComponent} from "./UI/Base/TabbedComponent";
|
|
|
|
import {ShareScreen} from "./UI/ShareScreen";
|
|
|
|
import {FixedUiElement} from "./UI/Base/FixedUiElement";
|
|
|
|
import {CheckBox} from "./UI/Input/CheckBox";
|
|
|
|
import Combine from "./UI/Base/Combine";
|
|
|
|
import {UIEventSource} from "./UI/UIEventSource";
|
|
|
|
import {UIElement} from "./UI/UIElement";
|
2020-07-29 15:48:21 +02:00
|
|
|
import {MoreScreen} from "./UI/MoreScreen";
|
2020-07-30 00:59:08 +02:00
|
|
|
import {Tag} from "./Logic/TagsFilter";
|
|
|
|
import {FilteredLayer} from "./Logic/FilteredLayer";
|
|
|
|
import {FeatureInfoBox} from "./UI/FeatureInfoBox";
|
|
|
|
import {ElementStorage} from "./Logic/ElementStorage";
|
|
|
|
import {Preset} from "./UI/SimpleAddUI";
|
|
|
|
import {Changes} from "./Logic/Osm/Changes";
|
|
|
|
import {OsmConnection} from "./Logic/Osm/OsmConnection";
|
|
|
|
import {Basemap} from "./Logic/Leaflet/Basemap";
|
2020-07-31 01:45:54 +02:00
|
|
|
import {State} from "./State";
|
|
|
|
import {WelcomeMessage} from "./UI/WelcomeMessage";
|
2020-07-29 15:05:19 +02:00
|
|
|
|
|
|
|
export class InitUiElements {
|
|
|
|
|
|
|
|
|
2020-07-30 00:59:08 +02:00
|
|
|
static OnlyIf(featureSwitch: UIEventSource<boolean>, callback: () => void) {
|
2020-07-29 15:05:19 +02:00
|
|
|
featureSwitch.addCallback(() => {
|
|
|
|
|
2020-07-30 00:59:08 +02:00
|
|
|
if (featureSwitch.data) {
|
|
|
|
callback();
|
2020-07-29 15:05:19 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-07-30 00:59:08 +02:00
|
|
|
if (featureSwitch.data) {
|
2020-07-29 15:05:19 +02:00
|
|
|
callback();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
private static CreateWelcomePane() {
|
2020-07-29 15:05:19 +02:00
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
const welcome = new WelcomeMessage()
|
2020-07-29 15:05:19 +02:00
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
const layoutToUse = State.state.layoutToUse.data;
|
2020-07-29 15:05:19 +02:00
|
|
|
const fullOptions = new TabbedComponent([
|
|
|
|
{header: `<img src='${layoutToUse.icon}'>`, content: welcome},
|
|
|
|
{header: `<img src='${'./assets/osm-logo.svg'}'>`, content: Translations.t.general.openStreetMapIntro},
|
2020-07-31 01:45:54 +02:00
|
|
|
{header: `<img src='${'./assets/share.svg'}'>`, content: new ShareScreen()},
|
|
|
|
{header: `<img src='${'./assets/add.svg'}'>`, content: new MoreScreen()}
|
2020-07-29 15:05:19 +02:00
|
|
|
])
|
|
|
|
|
2020-07-29 15:48:21 +02:00
|
|
|
return fullOptions;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
static InitWelcomeMessage() {
|
2020-07-29 15:48:21 +02:00
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
const fullOptions = this.CreateWelcomePane();
|
2020-07-29 15:48:21 +02:00
|
|
|
|
2020-07-29 15:05:19 +02:00
|
|
|
const help = new FixedUiElement(`<div class='collapse-button-img'><img src='assets/help.svg' alt='help'></div>`);
|
|
|
|
const close = new FixedUiElement(`<div class='collapse-button-img'><img src='assets/close.svg' alt='close'></div>`);
|
2020-07-29 18:35:46 +02:00
|
|
|
const checkbox = new CheckBox(
|
2020-07-29 15:05:19 +02:00
|
|
|
new Combine([
|
|
|
|
"<span class='collapse-button'>", close, "</span>",
|
|
|
|
"<span id='welcomeMessage'>", fullOptions.onClick(() => {
|
|
|
|
}), "</span>"]),
|
|
|
|
new Combine(["<span class='open-button'>", help, "</span>"])
|
|
|
|
, true
|
|
|
|
).AttachTo("messagesbox");
|
2020-07-29 18:35:46 +02:00
|
|
|
let dontCloseYet = true;
|
2020-07-31 01:45:54 +02:00
|
|
|
const openedTime = new Date().getTime();
|
|
|
|
State.state.locationControl.addCallback(() => {
|
|
|
|
if (new Date().getTime() - openedTime < 15 * 1000) {
|
|
|
|
// Don't autoclose the first 15 secs
|
2020-07-29 18:35:46 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
checkbox.isEnabled.setData(false);
|
|
|
|
})
|
2020-07-29 15:05:19 +02:00
|
|
|
|
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
const fullOptions2 = this.CreateWelcomePane();
|
|
|
|
State.state.fullScreenMessage.setData(fullOptions2)
|
2020-07-29 15:05:19 +02:00
|
|
|
new FixedUiElement(`<div class='collapse-button-img' class="shadow"><img src='assets/help.svg' alt='help'></div>`).onClick(() => {
|
2020-07-31 01:45:54 +02:00
|
|
|
State.state.fullScreenMessage.setData(fullOptions2)
|
2020-07-29 15:05:19 +02:00
|
|
|
}).AttachTo("help-button-mobile");
|
|
|
|
|
2020-07-30 00:59:08 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
static InitLayers(): {
|
2020-07-30 00:59:08 +02:00
|
|
|
minZoom: number
|
|
|
|
flayers: FilteredLayer[],
|
|
|
|
presets: Preset[]
|
|
|
|
} {
|
2020-07-31 01:45:54 +02:00
|
|
|
const addButtons: Preset[]
|
2020-07-30 00:59:08 +02:00
|
|
|
= [];
|
|
|
|
|
|
|
|
const flayers: FilteredLayer[] = []
|
|
|
|
|
|
|
|
let minZoom = 0;
|
2020-07-31 01:45:54 +02:00
|
|
|
const state = State.state;
|
|
|
|
for (const layer of state.layoutToUse.data.layers) {
|
2020-07-30 00:59:08 +02:00
|
|
|
|
|
|
|
const generateInfo = (tagsES, feature) => {
|
|
|
|
|
|
|
|
return new FeatureInfoBox(
|
|
|
|
feature,
|
|
|
|
tagsES,
|
|
|
|
layer.title,
|
|
|
|
layer.elementsToShow,
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
minZoom = Math.max(minZoom, layer.minzoom);
|
|
|
|
|
2020-07-31 01:45:54 +02:00
|
|
|
const flayer = FilteredLayer.fromDefinition(layer, generateInfo);
|
2020-07-30 00:59:08 +02:00
|
|
|
|
|
|
|
for (const preset of layer.presets ?? []) {
|
|
|
|
|
|
|
|
if (preset.icon === undefined) {
|
|
|
|
const tags = {};
|
|
|
|
for (const tag of preset.tags) {
|
|
|
|
const k = tag.key;
|
|
|
|
if (typeof (k) === "string") {
|
|
|
|
tags[k] = tag.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
preset.icon = layer.style(tags)?.icon?.iconUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
const addButton = {
|
|
|
|
name: preset.title,
|
|
|
|
description: preset.description,
|
|
|
|
icon: preset.icon,
|
|
|
|
tags: preset.tags,
|
|
|
|
layerToAddTo: flayer
|
|
|
|
}
|
|
|
|
addButtons.push(addButton);
|
|
|
|
}
|
|
|
|
flayers.push(flayer);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
minZoom: minZoom,
|
|
|
|
flayers: flayers,
|
|
|
|
presets: addButtons
|
|
|
|
}
|
2020-07-29 15:05:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|