#93 - added default error page

This commit is contained in:
EwelinaLasowy 2022-03-28 09:51:45 +02:00
parent 9dba729b58
commit d1ad761ad1
2 changed files with 79 additions and 1 deletions

View File

@ -29,6 +29,8 @@ class ExceptionHandler extends Handler
->setStatusCode($response->status());
}
return $response;
return Inertia::render("DefaultError")
->toResponse($request)
->setStatusCode($response->status());
}
}

View File

@ -0,0 +1,76 @@
<template>
<InertiaHead title="xD" />
<div class="min-h-full px-4 py-16 sm:px-6 sm:py-24 md:grid md:place-items-center lg:px-8">
<div class="max-w-max mx-auto">
<main class="sm:flex">
<div>
<div>
<h1 class="text-4xl font-extrabold text-gray-900 tracking-tight sm:text-5xl">
Błąd
</h1>
<p class="mt-1 text-base text-gray-500">
Wystąpił nieoczekiwany błąd. Administrator został o tym powiadomiony.
</p>
</div>
<div class="mt-10 flex space-x-3 sm:border-l sm:border-transparent sm:pl-6">
<InertiaLink
href="/"
class="inline-flex items-center px-4 py-3 border border-transparent text-sm leading-4 font-medium rounded-md shadow-sm text-white bg-blumilk-600 hover:bg-blumilk-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blumilk-500"
>
Wróć do strony głównej
</InertiaLink>
</div>
</div>
</main>
</div>
</div>
</template>
<script>
import GuestLayout from '@/Shared/Layout/GuestLayout'
export default {
name: 'DefaultErrorPage',
layout: GuestLayout,
// props: {
// status: Number,
// },
// computed: {
// error() {
// return {
// 401: {
// code: '401',
// title: 'Nieuprawniony dostęp',
// message: 'Aby mieć dostęp do tej strony, musisz się zalogować.',
// },
// 403: {
// code: '403',
// title: 'Zabroniony',
// message: 'Dostęp do żądanej strony jest zabroniony.',
// },
// 404: {
// code: '404',
// title: 'Nie znaleziono strony',
// message: 'Przykro nam, ale strona, której szukasz, nie istnieje.',
// },
// 419: {
// code: '419',
// title: 'Strona wygasła',
// message: 'Ta strona wygasła. Zaloguj się ponownie.',
// },
// 500: {
// code: '500',
// title: 'Błąd serwera',
// message: 'Wystąpił wewnętrzny błąd serwera.',
// },
// 503: {
// code: '503',
// title: 'Serwis niedostępny',
// message: 'Serwer jest tymczasowo niedostępny. Spróbuj ponownie później.',
// },
// }[this.status]
// },
//
// },
}
</script>