import {VerticalCombine} from "../Base/VerticalCombine"; import {UIElement} from "../UIElement"; import {VariableUiElement} from "../Base/VariableUIElement"; import LayoutConfig from "../../Customizations/JSON/LayoutConfig"; import {AllKnownLayouts} from "../../Customizations/AllKnownLayouts"; import Svg from "../../Svg"; import State from "../../State"; import Combine from "../Base/Combine"; import {SubtleButton} from "../Base/SubtleButton"; import Translations from "../i18n/Translations"; import * as personal from "../../assets/themes/personalLayout/personalLayout.json" import Constants from "../../Models/Constants"; import LanguagePicker from "../LanguagePicker"; import IndexText from "./IndexText"; export default class MoreScreen extends UIElement { private readonly _onMainScreen: boolean; private _component: UIElement; constructor(onMainScreen: boolean = false) { super(State.state.locationControl); this._onMainScreen = onMainScreen; this.ListenTo(State.state.osmConnection.userDetails); this.ListenTo(State.state.installedThemes); } private createLinkButton(layout: LayoutConfig, customThemeDefinition: string = undefined) { if (layout === undefined) { return undefined; } if(layout.id === undefined){ console.error("ID is undefined for layout",layout); return undefined; } if (layout.hideFromOverview) { const pref = State.state.osmConnection.GetPreference("hidden-theme-" + layout.id + "-enabled"); this.ListenTo(pref); if (pref.data !== "true") { return undefined; } } if (layout.id === State.state.layoutToUse.data?.id) { return undefined; } const currentLocation = State.state.locationControl.data; let path = window.location.pathname; // Path starts with a '/' and contains everything, e.g. '/dir/dir/page.html' path = path.substr(0, path.lastIndexOf("/")); // Path will now contain '/dir/dir', or empty string in case of nothing if(path === ""){ path = "." } let linkText = `${path}/${layout.id.toLowerCase()}?z=${currentLocation.zoom}&lat=${currentLocation.lat}&lon=${currentLocation.lon}` if (location.hostname === "localhost" || location.hostname === "127.0.0.1") { linkText = `${path}/index.html?layout=${layout.id}&z=${currentLocation.zoom}&lat=${currentLocation.lat}&lon=${currentLocation.lon}` } if (customThemeDefinition) { linkText = `${path}/?userlayout=${layout.id}&z=${currentLocation.zoom}&lat=${currentLocation.lat}&lon=${currentLocation.lon}#${customThemeDefinition}` } let description = Translations.W(layout.shortDescription); return new SubtleButton(layout.icon, new Combine([ `