49 lines
2.2 KiB
Svelte
49 lines
2.2 KiB
Svelte
<!--
|
|
- This file is a part of the SteamWar software.
|
|
-
|
|
- Copyright (C) 2023 SteamWar.de-Serverteam
|
|
-
|
|
- This program is free software: you can redistribute it and/or modify
|
|
- it under the terms of the GNU Affero General Public License as published by
|
|
- the Free Software Foundation, either version 3 of the License, or
|
|
- (at your option) any later version.
|
|
-
|
|
- This program is distributed in the hope that it will be useful,
|
|
- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
- GNU Affero General Public License for more details.
|
|
-
|
|
- You should have received a copy of the GNU Affero General Public License
|
|
- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<script lang="ts">
|
|
import type {ConditionsFailedEvent, RouteDefinition} from "svelte-spa-router";
|
|
import wrap from "svelte-spa-router/wrap";
|
|
import Router, {replace} from "svelte-spa-router";
|
|
import {get} from "svelte/store";
|
|
import {tokenStore} from "../repo/repo.js";
|
|
|
|
const routes: RouteDefinition = {
|
|
'/': wrap({asyncComponent: () => import('./pages/Home.svelte'), conditions: detail => get(tokenStore) != ""}),
|
|
'/perms': wrap({asyncComponent: () => import('./pages/Perms.svelte'), conditions: detail => get(tokenStore) != ""}),
|
|
'/login': wrap({asyncComponent: () => import('./pages/Login.svelte'), conditions: detail => get(tokenStore) == ""}),
|
|
'/event/:id': wrap({asyncComponent: () => import('./pages/Event.svelte'), conditions: detail => get(tokenStore) != ""}),
|
|
'/event/:id/generate': wrap({asyncComponent: () => import('./pages/Generate.svelte'), conditions: detail => get(tokenStore) != ""}),
|
|
'/edit': wrap({asyncComponent: () => import('./pages/Edit.svelte'), conditions: detail => get(tokenStore) != ""}),
|
|
'*': wrap({asyncComponent: () => import('./pages/NotFound.svelte')})
|
|
}
|
|
|
|
function conditionsFailed(event: ConditionsFailedEvent) {
|
|
if(event.detail.location === "/login") {
|
|
replace("/")
|
|
} else {
|
|
replace("/login")
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<main class="dark:bg-gray-900 min-w-full min-h-screen text-gray-900 dark:text-gray-300">
|
|
<Router {routes} on:conditionsFailed={conditionsFailed} />
|
|
</main>
|