-
Notifications
You must be signed in to change notification settings - Fork 1
/
error.vue
94 lines (81 loc) · 2.35 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<script setup lang="ts">
const props = defineProps({
error: Object
})
const handleError = () => clearError({ redirect: '/' })
</script>
<template>
<v-app>
<CommonHeaderCustom></CommonHeaderCustom>
<v-main>
<h1>Erreur {{ error.statusCode }} : <div v-if="error.statusCode.toString().startsWith('4')">Page
Introuvable</div>
<div v-if="error.statusCode.toString().startsWith('5')">Serveur
Indisponible</div>
</h1>
<p v-if="error.statusCode.toString().startsWith('5')"><strong>Merci d'essayer à nouveau dans quelques
instants.
Si le problème persiste, vous
pouvez contacter le guichet
d'assistance de l'Abes : <a href="https://stp.abes.fr/node/3?origine=thesesFr"
target="_blank">https://stp.abes.fr/node/3?origine=thesesFr</a>.</strong>
<br /><br />
Vous pouvez joindre les informations suivantes à votre demande d'assistance :
<br /><br />
<pre>{{ error.message }}</pre>
<br />
<span v-html="error.stack" />
</p>
<p v-if="error.statusCode.toString().startsWith('4')"><strong>La page à laquelle vous tentez d'accéder
n'existe
pas, ou
n'est plus disponible.</strong></p>
<br /><br />
<button @click="handleError">Retour à l'accueil</button>
</v-main>
<CommonFooterCustom></CommonFooterCustom>
</v-app>
</template>
<style scoped lang="scss">
@use 'vuetify/settings';
.v-application {
height: 100%;
display: flex !important;
}
.v-main {
flex: 1;
}
h1 {
padding-top: 20px;
padding-bottom: 20px;
font-size: 3rem;
width: 80%;
}
button {
font-size: 2em;
color: rgb(var(--v-theme-text-dark-blue));
border: solid 2px rgb(var(--v-theme-text-dark-blue));
border-radius: 5px;
background-color: transparent;
padding: 10px;
margin-bottom: 50px;
}
p {
width: 90%;
padding: 20px;
}
pre {
width: 80%;
white-space: pre-wrap;
display: grid !important;
}
:deep(.stack) {
display: contents;
width: 80%;
white-space: pre-wrap;
word-break: break-all;
}
div {
display: inline;
}
</style>