-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy patherror.vue
67 lines (61 loc) · 2.57 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
61
62
63
64
65
66
67
<script setup lang="ts">
const props = defineProps({ error: Object })
const is404 = props.error?.statusCode === 404
const statusCode = `Error ${props.error?.statusCode || '404'}`
const statusMessage = is404 ? 'Page Not Found' : (props.error?.statusMessage || 'An Error Occurred')
const { data: navigation } = await useLazyAsyncData('navigation', () => fetchContentNavigation(), { default: () => [] })
provide('navigation', navigation)
function goHome() {
return clearError({ redirect: '/' })
}
</script>
<template>
<div class="error overflow-hidden relative w-screen h-screen flex items-center justify-center bg-dark select-none text-light">
<div class="mobile:hidden pc:block">
<div class="error-code absolute top-1/4 left-1/4 text-5xl text-light">
{{ statusCode }}
</div>
<div class="error-message absolute bottom-1/4 right-1/4 text-5xl text-light">
{{ statusMessage }}
</div>
</div>
<div class="code">
<code><span class="text-green-800"><!DOCTYPE</span><span class="text-yellow-800"> html</span><span class="text-green-800">></span></code><br>
<code><span class="text-green-800"><html</span><span class="text-yellow-800"> lang="en"</span><span class="text-green-800">></span></code><br>
<code><span class="text-green-800"><body></span></code><br><br>
<code><span class="text-yellow-800">  {{ statusCode }}</span></code><br><br>
<code><span class="text-yellow-800">    {{ statusMessage }}</span></code><br><br>
<code @click="goHome">      <span class="cursor-pointer text-primary underline underline-primary">Go Home</span></code><br><br>
<code><span class="text-green-800"></body></span></code><br>
<code><span class="text-green-800"></html></span></code>
</div>
</div>
</template>
<style scoped lang="scss">
@keyframes noise-1 {
0%,3%,5%,42%,44%,100% {opacity: 1; transform: scaleY(1);}
4.3% {opacity: 1; transform: scaleY(4);}
43% {opacity: 1; transform: scaleX(10) rotate(60deg);}
}
@keyframes noise-2 {
0%, 20%, 50%, 80% {opacity: 0;}
10% {opacity: .1;}
50% {opacity: .4; left: 24%;}
100% {opacity: .7; left: 25%;}
}
@keyframes noise-3 {
0%, 20%, 50%, 80% {opacity: 0;}
10% {opacity: .1;}
50% {opacity: .4; right: 24%;}
100% {opacity: .7; right: 25%;}
}
.error {
animation: noise-1 1s linear infinite;
}
.error-code {
animation: noise-2 .2s linear infinite;
}
.error-message {
animation: noise-3 .2s linear infinite;
}
</style>