forked from elk-zone/elk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.vue
60 lines (53 loc) · 1.63 KB
/
error.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<script setup lang="ts">
import type { NuxtError } from '#app'
// prevent reactive update when clearing error
const { error } = defineProps<{
error: Partial<NuxtError>
}>()
// add more custom status codes messages here
const errorCodes: Record<number, string> = {
404: 'Page not found',
}
if (process.dev)
console.error(error)
const defaultMessage = 'Something went wrong'
const message = error.message ?? errorCodes[error.statusCode!] ?? defaultMessage
const state = ref<'error' | 'reloading'>('error')
async function reload() {
state.value = 'reloading'
try {
clearError({ redirect: currentUser.value ? '/home' : `/${currentServer.value}/public/local` })
}
catch (err) {
console.error(err)
state.value = 'error'
}
}
</script>
<template>
<NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
<NuxtLayout>
<MainContent>
<template #title>
<span timeline-title-style>Error</span>
</template>
<slot>
<form p5 grid gap-y-4 @submit="reload">
<div text-lg>
Something went wrong
</div>
<div text-secondary>
{{ message }}
</div>
<button flex items-center gap-2 justify-center btn-solid text-center :disabled="state === 'reloading'">
<span v-if="state === 'reloading'" block animate-spin preserve-3d>
<span block i-ri:loader-2-fill />
</span>
{{ state === 'reloading' ? 'Reloading' : 'Reload' }}
</button>
</form>
</slot>
</MainContent>
</NuxtLayout>
<AriaAnnouncer />
</template>