+5
![dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)
![autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)







Jingyi
GitHub
yyh
Joel
hjlarry
fatelei
Asuka Minato
autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Xiyuan Chen
gigglewang
Yunlu Wen
chariri
Evan
yyh
9b74df21d0
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: yyh <[email protected]> Co-authored-by: Joel <[email protected]> Co-authored-by: hjlarry <[email protected]> Co-authored-by: fatelei <[email protected]> Co-authored-by: Asuka Minato <[email protected]> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xiyuan Chen <[email protected]> Co-authored-by: gigglewang <[email protected]> Co-authored-by: Yunlu Wen <[email protected]> Co-authored-by: chariri <[email protected]> Co-authored-by: Evan <[email protected]> Co-authored-by: yyh <[email protected]>
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
'use client'
|
|
|
|
import { Button } from '@langgenius/dify-ui/button'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { FullScreenLoading } from '@/app/components/full-screen-loading'
|
|
import { isLegacyBase401 } from '@/features/account-profile/client'
|
|
|
|
type Props = Readonly<{
|
|
error: Error & { digest?: string }
|
|
unstable_retry: () => void
|
|
}>
|
|
|
|
export default function CommonLayoutError({ error, unstable_retry }: Props) {
|
|
const { t } = useTranslation('common')
|
|
|
|
console.error(error)
|
|
|
|
// 401 already triggered jumpTo(/signin) inside service/base.ts. Render Loading
|
|
// until the browser navigation completes, matching main's Splash behavior.
|
|
// Showing the "Try again" button here would just flash for a few frames before
|
|
// the page navigates away, and clicking it would 401 again anyway.
|
|
if (isLegacyBase401(error))
|
|
return <FullScreenLoading />
|
|
|
|
return (
|
|
<div className="flex h-full min-h-0 w-full flex-1 flex-col items-center justify-center gap-4 bg-background-body">
|
|
<div className="system-sm-regular text-text-tertiary">
|
|
{t('errorBoundary.message')}
|
|
</div>
|
|
<Button size="small" variant="secondary" onClick={() => unstable_retry()}>
|
|
{t('errorBoundary.tryAgain')}
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|