Fix: hide some elements of the UI if they are disabled by a featureSwitch
This commit is contained in:
parent
02da68a62e
commit
17503d5bfb
6 changed files with 402 additions and 366 deletions
|
@ -12,57 +12,57 @@ import { OsmTags } from "../../../Models/OsmFeature";
|
||||||
* Based on a lon/lat UIEVentSource, will generate the corresponding feature with the correct properties
|
* Based on a lon/lat UIEVentSource, will generate the corresponding feature with the correct properties
|
||||||
*/
|
*/
|
||||||
export class LastClickFeatureSource implements WritableFeatureSource {
|
export class LastClickFeatureSource implements WritableFeatureSource {
|
||||||
public readonly features: UIEventSource<Feature[]> = new UIEventSource<Feature[]>([])
|
public readonly features: UIEventSource<Feature[]> = new UIEventSource<Feature[]>([]);
|
||||||
private i: number = 0
|
public readonly hasNoteLayer: boolean;
|
||||||
private readonly hasNoteLayer: string
|
public readonly renderings: string[];
|
||||||
private readonly renderings: string[];
|
public readonly hasPresets: boolean;
|
||||||
private readonly hasPresets: string;
|
private i: number = 0;
|
||||||
|
|
||||||
constructor(location: Store<{ lon: number; lat: number }>, layout: LayoutConfig) {
|
constructor(location: Store<{ lon: number; lat: number }>, layout: LayoutConfig) {
|
||||||
this.hasNoteLayer = layout.layers.some((l) => l.id === "note") ? "yes" : "no"
|
this.hasNoteLayer = layout.layers.some((l) => l.id === "note");
|
||||||
this.hasPresets= layout.layers.some((l) => l.presets?.length > 0) ? "yes" : "no"
|
this.hasPresets = layout.layers.some((l) => l.presets?.length > 0);
|
||||||
const allPresets: BaseUIElement[] = []
|
const allPresets: BaseUIElement[] = [];
|
||||||
for (const layer of layout.layers)
|
for (const layer of layout.layers)
|
||||||
for (let i = 0; i < (layer.presets ?? []).length; i++) {
|
for (let i = 0; i < (layer.presets ?? []).length; i++) {
|
||||||
const preset = layer.presets[i]
|
const preset = layer.presets[i];
|
||||||
const tags = new ImmutableStore(TagUtils.KVtoProperties(preset.tags))
|
const tags = new ImmutableStore(TagUtils.KVtoProperties(preset.tags));
|
||||||
const { html } = layer.mapRendering[0].RenderIcon(tags, false, {
|
const { html } = layer.mapRendering[0].RenderIcon(tags, false, {
|
||||||
noSize: true,
|
noSize: true,
|
||||||
includeBadges: false,
|
includeBadges: false
|
||||||
})
|
});
|
||||||
allPresets.push(html)
|
allPresets.push(html);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.renderings = Utils.Dedup(
|
this.renderings = Utils.Dedup(
|
||||||
allPresets.map((uiElem) =>
|
allPresets.map((uiElem) =>
|
||||||
Utils.runningFromConsole ? "" : uiElem.ConstructElement().innerHTML
|
Utils.runningFromConsole ? "" : uiElem.ConstructElement().innerHTML
|
||||||
)
|
)
|
||||||
)
|
);
|
||||||
|
|
||||||
location.addCallbackAndRunD(({ lon, lat }) => {
|
location.addCallbackAndRunD(({ lon, lat }) => {
|
||||||
this.features.setData([this.createFeature(lon, lat)])
|
this.features.setData([this.createFeature(lon, lat)]);
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public createFeature(lon: number, lat: number): Feature<Point, OsmTags> {
|
public createFeature(lon: number, lat: number): Feature<Point, OsmTags> {
|
||||||
const properties: OsmTags = {
|
const properties: OsmTags = {
|
||||||
lastclick: "yes",
|
lastclick: "yes",
|
||||||
id: "last_click_" + this.i,
|
id: "last_click_" + this.i,
|
||||||
has_note_layer: this.hasNoteLayer ,
|
has_note_layer: this.hasNoteLayer ? "yes" : "no",
|
||||||
has_presets:this.hasPresets ,
|
has_presets: this.hasPresets ? "yes" : "no",
|
||||||
renderings: this.renderings.join(""),
|
renderings: this.renderings.join(""),
|
||||||
number_of_presets: "" + this.renderings.length,
|
number_of_presets: "" + this.renderings.length,
|
||||||
first_preset: this.renderings[0],
|
first_preset: this.renderings[0]
|
||||||
}
|
};
|
||||||
this. i++
|
this.i++;
|
||||||
|
|
||||||
return <Feature<Point, OsmTags>>{
|
return <Feature<Point, OsmTags>>{
|
||||||
type: "Feature",
|
type: "Feature",
|
||||||
properties,
|
properties,
|
||||||
geometry: {
|
geometry: {
|
||||||
type: "Point",
|
type: "Point",
|
||||||
coordinates: [lon, lat],
|
coordinates: [lon, lat]
|
||||||
},
|
}
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,7 +99,7 @@ export default class FeatureSwitchState extends OsmConnectionFeatureSwitches {
|
||||||
)
|
)
|
||||||
this.featureSwitchCommunityIndex = FeatureSwitchUtils.initSwitch(
|
this.featureSwitchCommunityIndex = FeatureSwitchUtils.initSwitch(
|
||||||
"fs-community-index",
|
"fs-community-index",
|
||||||
true,
|
this.featureSwitchEnableLogin.data,
|
||||||
"Disables/enables the button to get in touch with the community"
|
"Disables/enables the button to get in touch with the community"
|
||||||
)
|
)
|
||||||
this.featureSwitchExtraLinkEnabled = FeatureSwitchUtils.initSwitch(
|
this.featureSwitchExtraLinkEnabled = FeatureSwitchUtils.initSwitch(
|
||||||
|
|
|
@ -338,7 +338,6 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
);
|
);
|
||||||
|
|
||||||
this.initActors();
|
this.initActors();
|
||||||
// TODO remove this.addLastClick(lastClick);
|
|
||||||
this.drawSpecialLayers();
|
this.drawSpecialLayers();
|
||||||
this.initHotkeys();
|
this.initHotkeys();
|
||||||
this.miscSetup();
|
this.miscSetup();
|
||||||
|
@ -417,6 +416,10 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
this.featureSwitches.featureSwitchBackgroundSelection.addCallbackAndRun(enable => {
|
||||||
|
if(!enable){
|
||||||
|
return
|
||||||
|
}
|
||||||
Hotkeys.RegisterHotkey(
|
Hotkeys.RegisterHotkey(
|
||||||
{
|
{
|
||||||
nomod: "b"
|
nomod: "b"
|
||||||
|
@ -428,7 +431,6 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
Hotkeys.RegisterHotkey(
|
Hotkeys.RegisterHotkey(
|
||||||
{ shift: "O" },
|
{ shift: "O" },
|
||||||
Translations.t.hotkeyDocumentation.selectMapnik,
|
Translations.t.hotkeyDocumentation.selectMapnik,
|
||||||
|
@ -463,6 +465,12 @@ export default class ThemeViewState implements SpecialVisualizationState {
|
||||||
Translations.t.hotkeyDocumentation.selectAerial,
|
Translations.t.hotkeyDocumentation.selectAerial,
|
||||||
() => setLayerCategory("photo")
|
() => setLayerCategory("photo")
|
||||||
);
|
);
|
||||||
|
return true
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private addLastClick(last_click: LastClickFeatureSource) {
|
private addLastClick(last_click: LastClickFeatureSource) {
|
||||||
|
|
|
@ -3,16 +3,28 @@
|
||||||
* Thin wrapper around 'TabGroup' which binds the state
|
* Thin wrapper around 'TabGroup' which binds the state
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { Tab, TabGroup, TabList, TabPanel, TabPanels } from "@rgossiaux/svelte-headlessui"
|
import { Tab, TabGroup, TabList, TabPanel, TabPanels } from "@rgossiaux/svelte-headlessui";
|
||||||
import { UIEventSource } from "../../Logic/UIEventSource"
|
import { ImmutableStore, Store, UIEventSource } from "../../Logic/UIEventSource";
|
||||||
import { twJoin } from "tailwind-merge"
|
import { twJoin } from "tailwind-merge";
|
||||||
|
|
||||||
export let tab: UIEventSource<number>
|
/**
|
||||||
let tabElements: HTMLElement[] = []
|
* If a condition is given for a certain tab, it will only be shown if this condition is true.
|
||||||
$: tabElements[$tab]?.click()
|
* E.g.
|
||||||
|
* condition3 = new ImmutableStore(false) will always hide tab3 (the fourth tab)
|
||||||
|
*/
|
||||||
|
let tr = new ImmutableStore(true)
|
||||||
|
export let condition0: Store<boolean> = tr
|
||||||
|
export let condition1: Store<boolean> = tr
|
||||||
|
export let condition2: Store<boolean> = tr
|
||||||
|
export let condition3: Store<boolean> = tr
|
||||||
|
export let condition4: Store<boolean> = tr
|
||||||
|
|
||||||
|
export let tab: UIEventSource<number>;
|
||||||
|
let tabElements: HTMLElement[] = [];
|
||||||
|
$: tabElements[$tab]?.click();
|
||||||
$: {
|
$: {
|
||||||
if (tabElements[tab.data]) {
|
if (tabElements[tab.data]) {
|
||||||
window.setTimeout(() => tabElements[tab.data].click(), 50)
|
window.setTimeout(() => tabElements[tab.data].click(), 50);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -29,41 +41,31 @@
|
||||||
>
|
>
|
||||||
<div class="interactive sticky top-0 flex items-center justify-between">
|
<div class="interactive sticky top-0 flex items-center justify-between">
|
||||||
<TabList class="flex flex-wrap">
|
<TabList class="flex flex-wrap">
|
||||||
{#if $$slots.title1}
|
<Tab class={({ selected }) => twJoin("tab", selected && "primary", !$condition0 && "hidden")}>
|
||||||
<Tab class={({ selected }) => twJoin("tab", selected && "primary")}>
|
|
||||||
<div bind:this={tabElements[0]} class="flex">
|
<div bind:this={tabElements[0]} class="flex">
|
||||||
<slot name="title0">Tab 0</slot>
|
<slot name="title0">Tab 0</slot>
|
||||||
</div>
|
</div>
|
||||||
</Tab>
|
</Tab>
|
||||||
{/if}
|
<Tab class={({ selected }) => twJoin("tab", selected && "primary", !$condition1 && "hidden")}>
|
||||||
{#if $$slots.title1}
|
|
||||||
<Tab class={({ selected }) => twJoin("tab", selected && "primary")}>
|
|
||||||
<div bind:this={tabElements[1]} class="flex">
|
<div bind:this={tabElements[1]} class="flex">
|
||||||
<slot name="title1" />
|
<slot name="title1" />
|
||||||
</div>
|
</div>
|
||||||
</Tab>
|
</Tab>
|
||||||
{/if}
|
<Tab class={({ selected }) => twJoin("tab", selected && "primary", !$condition2 && "hidden")}>
|
||||||
{#if $$slots.title2}
|
|
||||||
<Tab class={({ selected }) => twJoin("tab", selected && "primary")}>
|
|
||||||
<div bind:this={tabElements[2]} class="flex">
|
<div bind:this={tabElements[2]} class="flex">
|
||||||
<slot name="title2" />
|
<slot name="title2" />
|
||||||
</div>
|
</div>
|
||||||
</Tab>
|
</Tab>
|
||||||
{/if}
|
<Tab class={({ selected }) => twJoin("tab", selected && "primary", !$condition3 && "hidden")}>
|
||||||
{#if $$slots.title3}
|
|
||||||
<Tab class={({ selected }) => twJoin("tab", selected && "primary")}>
|
|
||||||
<div bind:this={tabElements[3]} class="flex">
|
<div bind:this={tabElements[3]} class="flex">
|
||||||
<slot name="title3" />
|
<slot name="title3" />
|
||||||
</div>
|
</div>
|
||||||
</Tab>
|
</Tab>
|
||||||
{/if}
|
<Tab class={({ selected }) => twJoin("tab", selected && "primary", !$condition4 && "hidden")}>
|
||||||
{#if $$slots.title4}
|
|
||||||
<Tab class={({ selected }) => twJoin("tab", selected && "primary")}>
|
|
||||||
<div bind:this={tabElements[4]} class="flex">
|
<div bind:this={tabElements[4]} class="flex">
|
||||||
<slot name="title4" />
|
<slot name="title4" />
|
||||||
</div>
|
</div>
|
||||||
</Tab>
|
</Tab>
|
||||||
{/if}
|
|
||||||
</TabList>
|
</TabList>
|
||||||
<slot name="post-tablist" />
|
<slot name="post-tablist" />
|
||||||
</div>
|
</div>
|
||||||
|
@ -75,16 +77,24 @@
|
||||||
</slot>
|
</slot>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
<TabPanel class="tabpanel">
|
<TabPanel class="tabpanel">
|
||||||
<slot name="content1" />
|
<slot name="content1">
|
||||||
|
<div />
|
||||||
|
</slot>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
<TabPanel class="tabpanel">
|
<TabPanel class="tabpanel">
|
||||||
<slot name="content2" />
|
<slot name="content2">
|
||||||
|
<div />
|
||||||
|
</slot>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
<TabPanel class="tabpanel">
|
<TabPanel class="tabpanel">
|
||||||
<slot name="content3" />
|
<slot name="content3">
|
||||||
|
<div />
|
||||||
|
</slot>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
<TabPanel class="tabpanel">
|
<TabPanel class="tabpanel">
|
||||||
<slot name="content4" />
|
<slot name="content4">
|
||||||
|
<div />
|
||||||
|
</slot>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
</TabPanels>
|
</TabPanels>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,45 +1,46 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Translations from "../i18n/Translations"
|
import Translations from "../i18n/Translations";
|
||||||
import Svg from "../../Svg"
|
import Svg from "../../Svg";
|
||||||
import Tr from "../Base/Tr.svelte"
|
import Tr from "../Base/Tr.svelte";
|
||||||
import NextButton from "../Base/NextButton.svelte"
|
import NextButton from "../Base/NextButton.svelte";
|
||||||
import Geosearch from "./Geosearch.svelte"
|
import Geosearch from "./Geosearch.svelte";
|
||||||
import ToSvelte from "../Base/ToSvelte.svelte"
|
import ToSvelte from "../Base/ToSvelte.svelte";
|
||||||
import ThemeViewState from "../../Models/ThemeViewState"
|
import ThemeViewState from "../../Models/ThemeViewState";
|
||||||
import { Store, UIEventSource } from "../../Logic/UIEventSource"
|
import { Store, UIEventSource } from "../../Logic/UIEventSource";
|
||||||
import { SearchIcon } from "@rgossiaux/svelte-heroicons/solid"
|
import { SearchIcon } from "@rgossiaux/svelte-heroicons/solid";
|
||||||
import { twJoin } from "tailwind-merge"
|
import { twJoin } from "tailwind-merge";
|
||||||
import { Utils } from "../../Utils"
|
import { Utils } from "../../Utils";
|
||||||
import type { GeolocationPermissionState } from "../../Logic/State/GeoLocationState"
|
import type { GeolocationPermissionState } from "../../Logic/State/GeoLocationState";
|
||||||
|
import If from "../Base/If.svelte";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The theme introduction panel
|
* The theme introduction panel
|
||||||
*/
|
*/
|
||||||
export let state: ThemeViewState
|
export let state: ThemeViewState;
|
||||||
let layout = state.layout
|
let layout = state.layout;
|
||||||
let selectedElement = state.selectedElement
|
let selectedElement = state.selectedElement;
|
||||||
let selectedLayer = state.selectedLayer
|
let selectedLayer = state.selectedLayer;
|
||||||
|
|
||||||
let triggerSearch: UIEventSource<any> = new UIEventSource<any>(undefined)
|
let triggerSearch: UIEventSource<any> = new UIEventSource<any>(undefined);
|
||||||
let searchEnabled = false
|
let searchEnabled = false;
|
||||||
|
|
||||||
let geopermission: Store<GeolocationPermissionState> =
|
let geopermission: Store<GeolocationPermissionState> =
|
||||||
state.geolocation.geolocationState.permission
|
state.geolocation.geolocationState.permission;
|
||||||
let currentGPSLocation = state.geolocation.geolocationState.currentGPSLocation
|
let currentGPSLocation = state.geolocation.geolocationState.currentGPSLocation;
|
||||||
|
|
||||||
geopermission.addCallback((perm) => console.log(">>>> Permission", perm))
|
geopermission.addCallback((perm) => console.log(">>>> Permission", perm));
|
||||||
|
|
||||||
function jumpToCurrentLocation() {
|
function jumpToCurrentLocation() {
|
||||||
const glstate = state.geolocation.geolocationState
|
const glstate = state.geolocation.geolocationState;
|
||||||
if (glstate.currentGPSLocation.data !== undefined) {
|
if (glstate.currentGPSLocation.data !== undefined) {
|
||||||
const c: GeolocationCoordinates = glstate.currentGPSLocation.data
|
const c: GeolocationCoordinates = glstate.currentGPSLocation.data;
|
||||||
state.guistate.themeIsOpened.setData(false)
|
state.guistate.themeIsOpened.setData(false);
|
||||||
const coor = { lon: c.longitude, lat: c.latitude }
|
const coor = { lon: c.longitude, lat: c.latitude };
|
||||||
state.mapProperties.location.setData(coor)
|
state.mapProperties.location.setData(coor);
|
||||||
}
|
}
|
||||||
if (glstate.permission.data !== "granted") {
|
if (glstate.permission.data !== "granted") {
|
||||||
glstate.requestPermission()
|
glstate.requestPermission();
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -62,7 +63,9 @@
|
||||||
</div>
|
</div>
|
||||||
</NextButton>
|
</NextButton>
|
||||||
|
|
||||||
|
|
||||||
<div class="flex w-full flex-wrap sm:flex-nowrap">
|
<div class="flex w-full flex-wrap sm:flex-nowrap">
|
||||||
|
<If condition={state.featureSwitches.featureSwitchGeolocation}>
|
||||||
{#if $currentGPSLocation !== undefined || $geopermission === "prompt"}
|
{#if $currentGPSLocation !== undefined || $geopermission === "prompt"}
|
||||||
<button class="flex w-full items-center gap-x-2" on:click={jumpToCurrentLocation}>
|
<button class="flex w-full items-center gap-x-2" on:click={jumpToCurrentLocation}>
|
||||||
<ToSvelte construct={Svg.crosshair_svg().SetClass("w-8 h-8")} />
|
<ToSvelte construct={Svg.crosshair_svg().SetClass("w-8 h-8")} />
|
||||||
|
@ -94,7 +97,10 @@
|
||||||
<Tr t={Translations.t.general.waitingForLocation} />
|
<Tr t={Translations.t.general.waitingForLocation} />
|
||||||
</button>
|
</button>
|
||||||
{/if}
|
{/if}
|
||||||
|
</If>
|
||||||
|
|
||||||
|
|
||||||
|
<If condition={state.featureSwitches.featureSwitchSearch}>
|
||||||
<div class=".button low-interaction m-1 flex w-full items-center gap-x-2 rounded border p-2">
|
<div class=".button low-interaction m-1 flex w-full items-center gap-x-2 rounded border p-2">
|
||||||
<div class="w-full">
|
<div class="w-full">
|
||||||
<Geosearch
|
<Geosearch
|
||||||
|
@ -117,6 +123,7 @@
|
||||||
<SearchIcon class="h-6 w-6" />
|
<SearchIcon class="h-6 w-6" />
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
</If>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -169,19 +169,28 @@
|
||||||
<!-- bottom controls -->
|
<!-- bottom controls -->
|
||||||
<div class="flex w-full items-end justify-between px-4">
|
<div class="flex w-full items-end justify-between px-4">
|
||||||
<div class="flex flex-col">
|
<div class="flex flex-col">
|
||||||
<span>
|
<If condition={featureSwitches.featureSwitchEnableLogin}>
|
||||||
|
{#if state.lastClickObject.hasPresets || state.lastClickObject.hasNoteLayer}
|
||||||
<button class="w-fit pointer-events-auto" on:click={() => {state.openNewDialog()}}>
|
<button class="w-fit pointer-events-auto" on:click={() => {state.openNewDialog()}}>
|
||||||
|
{#if state.lastClickObject.hasPresets}
|
||||||
<Tr t={Translations.t.general.add.title} />
|
<Tr t={Translations.t.general.add.title} />
|
||||||
|
{:else}
|
||||||
|
<Tr t={Translations.t.notes.addAComment} />
|
||||||
|
{/if}
|
||||||
</button>
|
</button>
|
||||||
</span>
|
{/if}
|
||||||
|
</If>
|
||||||
|
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<!-- bottom left elements -->
|
<!-- bottom left elements -->
|
||||||
|
<If condition={state.featureSwitches.featureSwitchFilter}>
|
||||||
<MapControlButton on:click={() => state.guistate.openFilterView()}>
|
<MapControlButton on:click={() => state.guistate.openFilterView()}>
|
||||||
<ToSvelte construct={Svg.filter_svg().SetClass("h-6 w-6")} />
|
<ToSvelte construct={Svg.filter_svg().SetClass("h-6 w-6")} />
|
||||||
</MapControlButton>
|
</MapControlButton>
|
||||||
|
</If>
|
||||||
|
<If condition={state.featureSwitches.featureSwitchBackgroundSelection}>
|
||||||
<OpenBackgroundSelectorButton hideTooltip={true} {state} />
|
<OpenBackgroundSelectorButton hideTooltip={true} {state} />
|
||||||
|
</If>
|
||||||
<a
|
<a
|
||||||
class="bg-black-transparent pointer-events-auto h-fit max-h-12 cursor-pointer self-end overflow-hidden rounded-2xl pl-1 pr-2 text-white opacity-50 hover:opacity-100"
|
class="bg-black-transparent pointer-events-auto h-fit max-h-12 cursor-pointer self-end overflow-hidden rounded-2xl pl-1 pr-2 text-white opacity-50 hover:opacity-100"
|
||||||
on:click={() => {
|
on:click={() => {
|
||||||
|
@ -269,7 +278,7 @@
|
||||||
<!-- Theme menu -->
|
<!-- Theme menu -->
|
||||||
<FloatOver on:close={() => state.guistate.themeIsOpened.setData(false)}>
|
<FloatOver on:close={() => state.guistate.themeIsOpened.setData(false)}>
|
||||||
<span slot="close-button"><!-- Disable the close button --></span>
|
<span slot="close-button"><!-- Disable the close button --></span>
|
||||||
<TabbedGroup tab={state.guistate.themeViewTabIndex}>
|
<TabbedGroup condition1={state.featureSwitches.featureSwitchFilter} tab={state.guistate.themeViewTabIndex}>
|
||||||
<div slot="post-tablist">
|
<div slot="post-tablist">
|
||||||
<XCircleIcon
|
<XCircleIcon
|
||||||
class="mr-2 h-8 w-8"
|
class="mr-2 h-8 w-8"
|
||||||
|
@ -287,10 +296,8 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex" slot="title1">
|
<div class="flex" slot="title1">
|
||||||
<If condition={state.featureSwitches.featureSwitchFilter}>
|
|
||||||
<ToSvelte construct={Svg.filter_svg().SetClass("w-4 h-4")} />
|
<ToSvelte construct={Svg.filter_svg().SetClass("w-4 h-4")} />
|
||||||
<Tr t={Translations.t.general.menu.filter} />
|
<Tr t={Translations.t.general.menu.filter} />
|
||||||
</If>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="m-2 flex flex-col" slot="content1">
|
<div class="m-2 flex flex-col" slot="content1">
|
||||||
|
@ -310,6 +317,7 @@
|
||||||
/>
|
/>
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex" slot="title2">
|
<div class="flex" slot="title2">
|
||||||
<If condition={state.featureSwitches.featureSwitchEnableExport}>
|
<If condition={state.featureSwitches.featureSwitchEnableExport}>
|
||||||
<ToSvelte construct={Svg.download_svg().SetClass("w-4 h-4")} />
|
<ToSvelte construct={Svg.download_svg().SetClass("w-4 h-4")} />
|
||||||
|
@ -356,7 +364,8 @@
|
||||||
<!-- Menu page -->
|
<!-- Menu page -->
|
||||||
<FloatOver on:close={() => state.guistate.menuIsOpened.setData(false) }>
|
<FloatOver on:close={() => state.guistate.menuIsOpened.setData(false) }>
|
||||||
<span slot="close-button"><!-- Hide the default close button --></span>
|
<span slot="close-button"><!-- Hide the default close button --></span>
|
||||||
<TabbedGroup tab={state.guistate.menuViewTabIndex}>
|
<TabbedGroup condition1={featureSwitches.featureSwitchEnableLogin} condition2={state.featureSwitches. featureSwitchCommunityIndex}
|
||||||
|
tab={state.guistate.menuViewTabIndex}>
|
||||||
<div slot="post-tablist">
|
<div slot="post-tablist">
|
||||||
<XCircleIcon
|
<XCircleIcon
|
||||||
class="mr-2 h-8 w-8"
|
class="mr-2 h-8 w-8"
|
||||||
|
@ -431,7 +440,6 @@
|
||||||
<div class="m-2" slot="content2">
|
<div class="m-2" slot="content2">
|
||||||
<CommunityIndexView location={state.mapProperties.location} />
|
<CommunityIndexView location={state.mapProperties.location} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex" slot="title3">
|
<div class="flex" slot="title3">
|
||||||
<EyeIcon class="w-6" />
|
<EyeIcon class="w-6" />
|
||||||
<Tr t={Translations.t.privacy.title} />
|
<Tr t={Translations.t.privacy.title} />
|
||||||
|
@ -442,12 +450,15 @@
|
||||||
|
|
||||||
<Tr slot="title4" t={Translations.t.advanced.title} />
|
<Tr slot="title4" t={Translations.t.advanced.title} />
|
||||||
<div class="m-2 flex flex-col" slot="content4">
|
<div class="m-2 flex flex-col" slot="content4">
|
||||||
|
<If condition={featureSwitches.featureSwitchEnableLogin}>
|
||||||
<OpenIdEditor mapProperties={state.mapProperties} />
|
<OpenIdEditor mapProperties={state.mapProperties} />
|
||||||
<ToSvelte
|
<ToSvelte
|
||||||
construct={() =>
|
construct={() =>
|
||||||
new OpenJosm(state.osmConnection, state.mapProperties.bounds).SetClass("w-full")}
|
new OpenJosm(state.osmConnection, state.mapProperties.bounds).SetClass("w-full")}
|
||||||
/>
|
/>
|
||||||
<MapillaryLink mapProperties={state.mapProperties} />
|
<MapillaryLink mapProperties={state.mapProperties} />
|
||||||
|
</If>
|
||||||
|
|
||||||
<ToSvelte construct={Hotkeys.generateDocumentationDynamic} />
|
<ToSvelte construct={Hotkeys.generateDocumentationDynamic} />
|
||||||
</div>
|
</div>
|
||||||
</TabbedGroup>
|
</TabbedGroup>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue