mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-07 16:44:16 +01:00
Update:Custom error page for nuxt
This commit is contained in:
parent
8e286a6070
commit
134c2580c9
45
client/layouts/error.vue
Normal file
45
client/layouts/error.vue
Normal file
@ -0,0 +1,45 @@
|
||||
<template>
|
||||
<div id="page-wrapper" class="text-white max-h-screen h-screen overflow-hidden">
|
||||
<div class="absolute z-0 top-0 left-0 px-6 py-3">
|
||||
<div class="flex items-center">
|
||||
<nuxt-link to="/">
|
||||
<img src="~static/icon.svg" alt="Audiobookshelf Logo" class="w-10 min-w-10 h-10" />
|
||||
</nuxt-link>
|
||||
<nuxt-link to="/">
|
||||
<h1 class="text-xl ml-4 hover:underline">audiobookshelf</h1>
|
||||
</nuxt-link>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="w-full h-full flex items-center justify-center">
|
||||
<div class="w-full p-2 sm:p-4 md:p-8">
|
||||
<div class="w-full p-4">
|
||||
<div class="text-center">
|
||||
<h1 class="text-4xl font-semibold text-red-500 mb-4">{{ statusCode }}</h1>
|
||||
<p class="text-xl font-semibold">{{ message }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
layout: 'blank',
|
||||
props: {
|
||||
error: {
|
||||
type: Object,
|
||||
default: null
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
statusCode() {
|
||||
return (this.error && this.error.statusCode) || 500
|
||||
},
|
||||
message() {
|
||||
return this.error.message || 'Unknown error'
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
@ -31,7 +31,7 @@ export default {
|
||||
return null
|
||||
})
|
||||
if (!mediaItemShare) {
|
||||
return error({ statusCode: 404, message: 'Not found' })
|
||||
return error({ statusCode: 404, message: 'Media item not found or expired' })
|
||||
}
|
||||
|
||||
return {
|
||||
|
Loading…
Reference in New Issue
Block a user