2020-08-31 02:59:47 +02:00
|
|
|
import {UIElement} from "../UIElement";
|
|
|
|
import {TabbedComponent} from "../Base/TabbedComponent";
|
|
|
|
import {SubtleButton} from "../Base/SubtleButton";
|
|
|
|
import {UIEventSource} from "../../Logic/UIEventSource";
|
|
|
|
import {LayoutConfigJson} from "../../Customizations/JSON/LayoutConfigJson";
|
2020-09-02 11:37:34 +02:00
|
|
|
import Combine from "../Base/Combine";
|
|
|
|
import {GenerateEmpty} from "./GenerateEmpty";
|
2020-09-03 00:00:37 +02:00
|
|
|
import LayerPanelWithPreview from "./LayerPanelWithPreview";
|
2021-01-04 04:36:21 +01:00
|
|
|
import UserDetails from "../../Logic/Osm/OsmConnection";
|
2020-09-05 15:27:35 +02:00
|
|
|
import {MultiInput} from "../Input/MultiInput";
|
|
|
|
import TagRenderingPanel from "./TagRenderingPanel";
|
|
|
|
import SingleSetting from "./SingleSetting";
|
2020-09-09 18:42:13 +02:00
|
|
|
import {VariableUiElement} from "../Base/VariableUIElement";
|
2021-01-02 16:04:16 +01:00
|
|
|
import AvailableBaseLayers from "../../Logic/Actors/AvailableBaseLayers";
|
2020-09-27 23:49:36 +02:00
|
|
|
import {DropDown} from "../Input/DropDown";
|
2020-11-06 04:02:53 +01:00
|
|
|
import TagRenderingConfig from "../../Customizations/JSON/TagRenderingConfig";
|
|
|
|
import Svg from "../../Svg";
|
2020-08-31 02:59:47 +02:00
|
|
|
|
|
|
|
export default class AllLayersPanel extends UIElement {
|
|
|
|
|
|
|
|
|
|
|
|
private panel: UIElement;
|
2020-09-02 11:37:34 +02:00
|
|
|
private readonly _config: UIEventSource<LayoutConfigJson>;
|
|
|
|
private readonly languages: UIEventSource<string[]>;
|
2020-09-05 15:27:35 +02:00
|
|
|
private readonly userDetails: UserDetails;
|
|
|
|
private readonly currentlySelected: UIEventSource<SingleSetting<any>>;
|
2020-08-31 02:59:47 +02:00
|
|
|
|
2020-09-02 11:37:34 +02:00
|
|
|
constructor(config: UIEventSource<LayoutConfigJson>,
|
2020-09-03 16:44:48 +02:00
|
|
|
languages: UIEventSource<any>, userDetails: UserDetails) {
|
2020-08-31 02:59:47 +02:00
|
|
|
super(undefined);
|
2020-09-05 15:27:35 +02:00
|
|
|
this.userDetails = userDetails;
|
2020-08-31 02:59:47 +02:00
|
|
|
this._config = config;
|
|
|
|
this.languages = languages;
|
|
|
|
|
2020-09-03 16:44:48 +02:00
|
|
|
this.createPanels(userDetails);
|
2020-08-31 02:59:47 +02:00
|
|
|
const self = this;
|
2020-09-14 20:16:03 +02:00
|
|
|
this.dumbMode = false;
|
2020-09-03 16:44:48 +02:00
|
|
|
config.map<number>(config => config.layers.length).addCallback(() => self.createPanels(userDetails));
|
2020-08-31 02:59:47 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-09-03 16:44:48 +02:00
|
|
|
private createPanels(userDetails: UserDetails) {
|
2020-08-31 02:59:47 +02:00
|
|
|
const self = this;
|
|
|
|
const tabs = [];
|
|
|
|
|
2020-09-05 15:27:35 +02:00
|
|
|
|
|
|
|
const roamingTags = new MultiInput("Add a tagrendering",
|
|
|
|
() => GenerateEmpty.createEmptyTagRendering(),
|
|
|
|
() => {
|
|
|
|
return new TagRenderingPanel(self.languages, self.currentlySelected, self.userDetails)
|
|
|
|
|
|
|
|
}, undefined, {allowMovement: true});
|
|
|
|
new SingleSetting(this._config, roamingTags, "roamingRenderings", "Roaming Renderings", "These tagrenderings are shown everywhere");
|
|
|
|
|
2020-09-27 23:49:36 +02:00
|
|
|
|
|
|
|
const backgroundLayers = AvailableBaseLayers.layerOverview.map(baselayer => ({shown:
|
|
|
|
baselayer.name, value: baselayer.id}));
|
|
|
|
const dropDown = new DropDown("Choose the default background layer",
|
|
|
|
[{value: "osm",shown:"OpenStreetMap <b>(default)</b>"}, ...backgroundLayers])
|
|
|
|
new SingleSetting(self._config, dropDown, "defaultBackgroundId", "Default background layer",
|
|
|
|
"Selects the background layer that is used by default. If this layer is not available at the given point, OSM-Carto will be ued");
|
|
|
|
|
2020-08-31 02:59:47 +02:00
|
|
|
const layers = this._config.data.layers;
|
|
|
|
for (let i = 0; i < layers.length; i++) {
|
|
|
|
tabs.push({
|
2020-09-09 18:42:13 +02:00
|
|
|
header: new VariableUiElement(this._config.map((config: LayoutConfigJson) => {
|
|
|
|
const layer = config.layers[i];
|
|
|
|
if (typeof layer !== "string") {
|
|
|
|
try {
|
2021-01-22 00:40:15 +01:00
|
|
|
const iconTagRendering = new TagRenderingConfig(layer["icon"], undefined, "icon")
|
2020-11-06 04:02:53 +01:00
|
|
|
const icon = iconTagRendering.GetRenderValue({"id": "node/-1"}).txt;
|
2020-09-09 18:42:13 +02:00
|
|
|
return `<img src='${icon}'>`
|
|
|
|
} catch (e) {
|
2020-11-06 04:02:53 +01:00
|
|
|
return Svg.bug_img
|
2020-09-09 18:42:13 +02:00
|
|
|
// Nothing to do here
|
|
|
|
}
|
|
|
|
}
|
2020-11-06 04:02:53 +01:00
|
|
|
return Svg.help_img;
|
2020-09-09 18:42:13 +02:00
|
|
|
})),
|
2020-09-03 16:44:48 +02:00
|
|
|
content: new LayerPanelWithPreview(this._config, this.languages, i, userDetails)
|
|
|
|
});
|
2020-08-31 02:59:47 +02:00
|
|
|
}
|
|
|
|
tabs.push({
|
2020-11-06 04:02:53 +01:00
|
|
|
header: Svg.layersAdd_img,
|
2020-09-02 11:37:34 +02:00
|
|
|
content: new Combine([
|
2020-09-05 15:27:35 +02:00
|
|
|
"<h2>Layer editor</h2>",
|
|
|
|
"In this tab page, you can add and edit the layers of the theme. Click the layers above or add a new layer to get started.",
|
|
|
|
new SubtleButton(
|
2020-11-06 04:02:53 +01:00
|
|
|
Svg.layersAdd_ui(),
|
2020-09-05 15:27:35 +02:00
|
|
|
"Add a new layer"
|
|
|
|
).onClick(() => {
|
|
|
|
self._config.data.layers.push(GenerateEmpty.createEmptyLayer())
|
|
|
|
self._config.ping();
|
|
|
|
}),
|
2020-09-27 23:49:36 +02:00
|
|
|
"<h2>Default background layer</h2>",
|
|
|
|
dropDown,
|
2020-09-05 15:27:35 +02:00
|
|
|
"<h2>TagRenderings for every layer</h2>",
|
|
|
|
"Define tag renderings and questions here that should be shown on every layer of the theme.",
|
|
|
|
roamingTags
|
|
|
|
]
|
|
|
|
),
|
2020-08-31 02:59:47 +02:00
|
|
|
})
|
2020-09-02 11:37:34 +02:00
|
|
|
|
|
|
|
this.panel = new TabbedComponent(tabs, new UIEventSource<number>(Math.max(0, layers.length - 1)));
|
2020-08-31 02:59:47 +02:00
|
|
|
this.Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
InnerRender(): string {
|
|
|
|
return this.panel.Render();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|