-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
44 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,50 @@ | ||
<script lang="ts"> | ||
import { goto } from '$app/navigation' | ||
import { page } from '$app/stores' | ||
import { errorMessage } from '$lib/lemmy/error' | ||
import { t } from '$lib/translations' | ||
import { Button } from 'mono-svelte' | ||
import { Icon, XMark } from 'svelte-hero-icons' | ||
function getError(message: string): { string: string; code: boolean } { | ||
try { | ||
return { string: errorMessage(JSON.parse(message)), code: false } | ||
} catch (e) { | ||
return { string: message, code: true } | ||
} | ||
} | ||
</script> | ||
|
||
<div class="flex flex-col gap-4 mx-auto my-auto h-full justify-center"> | ||
<h1 class="text-red-500 text-4xl font-black flex items-center flex-row gap-2"> | ||
<div | ||
class="rounded-full bg-red-500 text-red-100 dark:text-red-900 p-1 w-max" | ||
> | ||
<Icon src={XMark} mini size="24" /> | ||
</div> | ||
<div | ||
class="flex flex-col gap-4 my-auto h-full justify-center max-w-md w-full mx-auto" | ||
> | ||
<h1 | ||
class="text-primary-900 dark:text-primary-100 text-6xl font-black flex items-center flex-row gap-2 | ||
font-display border-b pb-4 border-slate-200 dark:border-zinc-800" | ||
> | ||
{$page.status} | ||
</h1> | ||
<code class="rounded-md dark:!bg-zinc-950 px-2 py-1 min-w-48"> | ||
{$page.error?.message} | ||
</code> | ||
<Button size="sm" class="w-max" on:click={() => goto($page.url)}> | ||
{$t('message.retry')} | ||
</Button> | ||
{#if $page?.error?.message} | ||
{@const error = getError($page?.error?.message)} | ||
{#if error.code} | ||
<code class="rounded-md dark:!bg-zinc-950 px-2 py-1 min-w-48"> | ||
{error.string} | ||
</code> | ||
{:else} | ||
<p class="text-lg"> | ||
{error.string} | ||
</p> | ||
{/if} | ||
{/if} | ||
<div class="flex items-center gap-2"> | ||
<Button | ||
rounding="xl" | ||
on:click={() => goto($page.url, { invalidateAll: true })} | ||
> | ||
{$t('message.retry')} | ||
</Button> | ||
<Button rounding="xl" href="/"> | ||
{$t('nav.home')} | ||
</Button> | ||
</div> | ||
</div> |