Navigation und Content-Pages so angepasst, dass über einen Language-Chooser die Sprache der Seite gewechselt werden kann und automatisch auch der reload der Content-Page angestoßen wird.

This commit is contained in:
Mario Linz 2022-05-25 15:37:15 +02:00
parent 516c35dcb4
commit 9188148fe7
7 changed files with 78 additions and 30 deletions

View File

@ -234,7 +234,7 @@ export const getNavigations = async (l: Locale): Promise<Navigation[]> => {
method: "get", method: "get",
offset: 0, offset: 0,
filter: { filter: {
locale: l.key, // locale: l.key,
}, },
}) })
return response.data return response.data

View File

@ -59,16 +59,14 @@
<Header /> <Header />
<div> <Router url="{url}">
<Router url="{url}"> <Route path="/" let:params>
<Route path="/" let:params> <Home />
<Home /> </Route>
</Route> <Route path="/*path" let:params>
<Route path="/*path" let:params> <Content path="/{params.path}" />
<Content path="/{params.path}" /> </Route>
</Route> </Router>
</Router>
</div>
<Footer /> <Footer />

View File

@ -2,12 +2,15 @@
import { getContent } from "../../api" import { getContent } from "../../api"
import { generalInfo, currentLang } from "../../store" import { generalInfo, currentLang } from "../../store"
import Image from "../widgets/Image.svelte"
export let path: string export let path: string
let loading = true let loading = true
let content: Content let content: Content
let currentDomain = window.location.protocol + "//" + window.location.host
function load() { const load = () => {
loading = true loading = true
getContent(path, $currentLang) getContent(path, $currentLang)
.then((c) => { .then((c) => {
@ -18,6 +21,10 @@
}) })
} }
currentLang.subscribe(() => {
load()
})
$: if (path) load() $: if (path) load()
</script> </script>
@ -34,6 +41,31 @@
{#each content.blocks || [] as b} {#each content.blocks || [] as b}
{JSON.stringify(b)} {JSON.stringify(b)}
{/each} {/each}
{:else}
<div class="page-404">
<div>
<Image
file="{$generalInfo?.media?.brand}"
alt="{$generalInfo?.meta?.metaTitle}"
cssClass="brand"
/>
</div>
<h1>Seite nicht gefunden!</h1>
<p class="mb-md">
<strong>{path}</strong>
</p>
<p>
Die gesuchte Seite existiert nicht oder es ist ein anderer Fehler aufgetreten.<br />
Gehen Sie zurück oder gehen Sie zu <a href="/"><strong>{currentDomain}</strong></a>, um eine
neue Richtung zu wählen.
</p>
<p>
The page you are looking for doesn't exist or an other error occurred.<br />
Go back, or head over to <a href="/"><strong>{currentDomain}</strong></a> to choose a new direction.
</p>
</div>
{/if} {/if}
</div> </div>
</div> </div>

View File

@ -1,4 +1,5 @@
<script lang="ts"> <script lang="ts">
import { navigate } from "svelte-routing"
import { navigations, location, currentLang } from "../../store" import { navigations, location, currentLang } from "../../store"
$: languages = [] $: languages = []
@ -12,19 +13,21 @@
languages = languages languages = languages
} }
$: console.log($location) const setLanguage = (lang: string) => {
let path = $location.path.split("/")
path[1] = lang
$location.path = path.join("/")
$currentLang = lang
navigate($location.path + $location.search, { replace: true })
}
</script> </script>
<div class="language-chooser"> <div class="language-chooser">
{#each languages as language} {#each languages as lang}
<div <div class="lang" class:active="{$currentLang === lang}" on:click="{() => setLanguage(lang)}">
class="lang" {lang}
class:active="{$currentLang === language}"
on:click="{() => {
$currentLang = language
}}"
>
{language}
</div> </div>
{/each} {/each}
</div> </div>

View File

@ -4,7 +4,7 @@
import { mdiMenu } from "@mdi/js" import { mdiMenu } from "@mdi/js"
import { links } from "svelte-routing" import { links } from "svelte-routing"
import { navigations } from "../../store" import { navigations, currentLang } from "../../store"
import LanguageChooser from "./LanguageChooser.svelte" import LanguageChooser from "./LanguageChooser.svelte"
@ -14,8 +14,9 @@
let showMobileNav: boolean = false let showMobileNav: boolean = false
$: { $: {
navigation = null
$navigations?.map((nav) => { $navigations?.map((nav) => {
if (nav.ident === ident) { if (nav.ident === ident && nav.locale === $currentLang) {
navigation = nav navigation = nav
} }
}) })

View File

@ -63,3 +63,15 @@ body {
right: -53px; right: -53px;
} }
} }
// 404
.page-404 {
text-align: center;
margin-bottom: @space-xl;
.brand {
width: 400px;
margin: auto auto @space-xl auto;
}
}

View File

@ -2,20 +2,22 @@
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
align-items: center; align-items: center;
border: 1px solid #ccc; border: 1px solid @secondary;
margin: @space-xs;
.lang { .lang {
border: 1px solid #ccc; border: 1px solid @secondary;
padding: 0 @space-xs;
cursor: pointer; cursor: pointer;
&:hover { &:hover {
background: #ccc; background: @primary;
color: black; color: @on-primary;
} }
&.active { &.active {
background: #ccc; background: @primary;
color: black; color: @on-primary;
font-weight: 700; font-weight: 700;
} }
} }