- Validate and prepare access links in apps/frontend - Add session, ended, and unauthorized routes with polling - Copy full public access URLs from the admin links page
27 lines
1.0 KiB
Svelte
27 lines
1.0 KiB
Svelte
<script lang="ts">
|
|
import { browser } from "$app/environment";
|
|
|
|
const reasonMap: Record<string, string> = {
|
|
revoked: "This session was revoked by an administrator.",
|
|
expired: "This session expired.",
|
|
busy: "The assigned device is not currently available.",
|
|
not_found: "This session link could not be found.",
|
|
invalid: "This session link is invalid.",
|
|
network: "Connection was lost. Please try again.",
|
|
unknown: "This session is no longer available.",
|
|
};
|
|
|
|
const reason = browser
|
|
? (new URLSearchParams(window.location.search).get("reason") ?? "unknown")
|
|
: "unknown";
|
|
</script>
|
|
|
|
<main class="bg-background text-foreground flex min-h-screen items-center justify-center px-6">
|
|
<section class="w-full max-w-sm rounded-xl border border-border bg-card p-6 text-center">
|
|
<h1 class="text-xl font-semibold">Session ended</h1>
|
|
<p class="mt-3 text-sm text-muted-foreground">
|
|
{reasonMap[reason] || reasonMap.unknown}
|
|
</p>
|
|
</section>
|
|
</main>
|