Refactoring: use proper way to initialize the main svelte components

This commit is contained in:
Pieter Vander Vennet 2024-06-15 02:21:18 +02:00
parent 4dc48274dc
commit 5354cbf6c3
15 changed files with 43 additions and 30 deletions

View file

@ -65,6 +65,7 @@
}
</script>
<main>
<div class="m-4 flex flex-col">
<LanguagePicker
clss="self-end max-w-full"
@ -165,3 +166,4 @@
v{Constants.vNumber}
</div>
</div>
</main>

View file

@ -30,7 +30,7 @@
}
> = UIEventSource.FromPromise(Utils.downloadJsonCached(source))
</script>
<main>
<h1>Contributed images with MapComplete: leaderboard</h1>
{#if $data}
@ -67,3 +67,4 @@
<div>
Logged in as {$loggedInContributor}
</div>
</main>

View file

@ -5,6 +5,7 @@
console.log("???")
</script>
<main>
<div class="flex flex-col">
<Tr t={Translations.t.general["404"]} />
<BackButton
@ -18,3 +19,4 @@
</div>
</BackButton>
</div>
</main>

View file

@ -16,7 +16,7 @@
userRelatedState: new UserRelatedState(osmConnection)
}
</script>
<main>
<div class="flex h-screen flex-col overflow-hidden px-4">
<div class="flex justify-between">
<h2 class="flex items-center">
@ -33,3 +33,4 @@
<Tr t={Translations.t.general.backToIndex} />
</a>
</div>
</main>

View file

@ -6,6 +6,7 @@
import { UIEventSource } from "../Logic/UIEventSource"
</script>
<main>
<div>
<h1>Stylesheet testing grounds</h1>
@ -167,3 +168,4 @@
</select>
</div>
</div>
</main>

View file

@ -1,16 +1,8 @@
<script lang="ts">
import { Translation } from "./i18n/Translation"
import LanguagePicker from "./InputElement/LanguagePicker.svelte"
import Tr from "./Base/Tr.svelte"
import ToSvelte from "./Base/ToSvelte.svelte"
const m = new Map<string, string>()
m.set("nl", "Nederlands")
const tr = Translation.fromMap(m, true)
import { Button, Search } from "flowbite-svelte"
</script>
<LanguagePicker/>
<h1>Svelte native</h1>
<Tr t={tr}/>
<h1>ToSvelte</h1>
<ToSvelte construct={tr}/>
<main>
<Search size="md">
</Search>
</main>

View file

@ -203,6 +203,7 @@
</script>
<main>
<div class="absolute top-0 left-0 h-screen w-screen overflow-hidden">
<MaplibreMap map={maplibremap} mapProperties={mapproperties} />
</div>
@ -688,3 +689,4 @@
<CloseAnimation isOpened={selectedElement.map(sl => sl !== undefined && sl?.properties?.id === LastClickFeatureSource.newPointElementId)} moveTo={openNewElementButton} debug="newElement"/>
<CloseAnimation isOpened={state.guistate.filtersPanelIsOpened} moveTo={openFilterButton} debug="filter"/>
<CloseAnimation isOpened={state.guistate.backgroundLayerSelectionIsOpened} moveTo={openBackgroundButton} debug="bg"/>
</main>