File size: 4,764 Bytes
4e1096a | 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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | 'use client';
import posthog from 'posthog-js';
import { useEffect, useState } from 'react';
import { useEnv } from '@/context/EnvContext';
import { useTranslation } from '@/hooks/useTranslation';
import { parseWebViewInfo } from '@/utils/ua';
import { handleGlobalError } from '@/utils/error';
interface ErrorPageProps {
error: Error & { digest?: string };
reset: () => void;
}
export default function Error({ error, reset }: ErrorPageProps) {
const _ = useTranslation();
const { appService } = useEnv();
const [browserInfo, setBrowserInfo] = useState('');
useEffect(() => {
setBrowserInfo(parseWebViewInfo(appService));
}, [appService]);
useEffect(() => {
posthog.captureException(error);
handleGlobalError(error);
}, [appService, error]);
const handleGoHome = () => {
window.location.href = '/library';
};
const handleGoBack = () => {
if (window.history.length > 1) {
window.history.back();
} else {
handleGoHome();
}
};
return (
<div className='hero bg-base-200 min-h-screen'>
<div className='hero-content text-center'>
<div className='w-full max-w-2xl p-1'>
<div className='mb-8 mt-6'>
<div className='text-error animate-pulse text-8xl'>⚠️</div>
</div>
<h1 className='text-base-content mb-4 text-5xl font-bold'>Oops!</h1>
<p className='text-base-content/70 mb-8 text-lg'>
{_(
"Something went wrong. Don't worry, our team has been notified and we're working on a fix.",
)}
</p>
<div className='alert alert-error mb-8 overflow-hidden'>
<div className='w-full min-w-0 flex-col items-start text-left'>
<h3 className='mb-2 font-bold'>{_('Error Details:')}</h3>
<p className='overflow-wrap-anywhere w-full break-words font-mono text-sm'>
{error.message}
</p>
{browserInfo && (
<p className='overflow-wrap-anywhere mt-2 w-full break-words font-mono text-sm'>
Browser: {browserInfo}
</p>
)}
{error.stack && (
<p className='overflow-wrap-anywhere mt-2 w-full whitespace-pre-wrap break-words font-mono text-sm'>
{error.stack.split('\n').slice(0, 3).join('\n')}
</p>
)}
{error.digest && (
<p className='overflow-wrap-anywhere mt-2 w-full break-words text-xs opacity-70'>
Error ID: {error.digest}
</p>
)}
</div>
</div>
<div className='flex flex-col gap-4'>
<button onClick={reset} className='btn btn-primary btn-lg'>
<svg className='mr-2 h-5 w-5' fill='none' stroke='currentColor' viewBox='0 0 24 24'>
<path
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth={2}
d='M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15'
/>
</svg>
{_('Try Again')}
</button>
<div className='flex gap-3'>
<button onClick={handleGoBack} className='btn btn-outline flex-1'>
<svg className='mr-2 h-4 w-4' fill='none' stroke='currentColor' viewBox='0 0 24 24'>
<path
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth={2}
d='M10 19l-7-7m0 0l7-7m-7 7h18'
/>
</svg>
{_('Go Back')}
</button>
<button onClick={handleGoHome} className='btn btn-outline flex-1'>
<svg className='mr-2 h-4 w-4' fill='none' stroke='currentColor' viewBox='0 0 24 24'>
<path
strokeLinecap='round'
strokeLinejoin='round'
strokeWidth={2}
d='M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6'
/>
</svg>
{_('Your Library')}
</button>
</div>
</div>
<div className='border-base-300 mt-8 border-t pt-6'>
<p className='text-base-content/60 text-sm'>
{_('Need help?')}{' '}
<a href='mailto:support@readest.com' className='link link-primary'>
{_('Contact Support')}
</a>
</p>
</div>
</div>
</div>
</div>
);
}
|