dify/web/app/components/base/app-unavailable.tsx

30 lines
824 B
TypeScript
Raw Permalink Normal View History

2023-05-15 08:51:32 +08:00
'use client'
import type { FC } from 'react'
import React from 'react'
2023-05-15 08:51:32 +08:00
import { useTranslation } from 'react-i18next'
type IAppUnavailableProps = {
2023-05-15 08:51:32 +08:00
code?: number
isUnknownReason?: boolean
2023-05-15 08:51:32 +08:00
unknownReason?: string
}
const AppUnavailable: FC<IAppUnavailableProps> = ({
code = 404,
isUnknownReason,
2023-05-15 08:51:32 +08:00
unknownReason,
}) => {
const { t } = useTranslation()
return (
<div className='flex items-center justify-center w-screen h-screen'>
<h1 className='mr-5 h-[50px] leading-[50px] pr-5 text-[24px] font-medium'
style={{
borderRight: '1px solid rgba(0,0,0,.3)',
}}>{code}</h1>
2024-09-07 15:59:38 +07:00
<div className='text-sm'>{unknownReason || (isUnknownReason ? t('share.common.appUnknownError') : t('share.common.appUnavailable'))}</div>
2023-05-15 08:51:32 +08:00
</div>
)
}
export default React.memo(AppUnavailable)