mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-04 04:43:09 +00:00 
			
		
		
		
	Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			824 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			824 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
'use client'
 | 
						|
import type { FC } from 'react'
 | 
						|
import React from 'react'
 | 
						|
import { useTranslation } from 'react-i18next'
 | 
						|
 | 
						|
type IAppUnavailableProps = {
 | 
						|
  code?: number
 | 
						|
  isUnknownReason?: boolean
 | 
						|
  unknownReason?: string
 | 
						|
}
 | 
						|
 | 
						|
const AppUnavailable: FC<IAppUnavailableProps> = ({
 | 
						|
  code = 404,
 | 
						|
  isUnknownReason,
 | 
						|
  unknownReason,
 | 
						|
}) => {
 | 
						|
  const { t } = useTranslation()
 | 
						|
 | 
						|
  return (
 | 
						|
    <div className='flex h-screen w-screen items-center justify-center'>
 | 
						|
      <h1 className='mr-5 h-[50px] pr-5 text-[24px] font-medium leading-[50px]'
 | 
						|
        style={{
 | 
						|
          borderRight: '1px solid rgba(0,0,0,.3)',
 | 
						|
        }}>{code}</h1>
 | 
						|
      <div className='text-sm'>{unknownReason || (isUnknownReason ? t('share.common.appUnknownError') : t('share.common.appUnavailable'))}</div>
 | 
						|
    </div>
 | 
						|
  )
 | 
						|
}
 | 
						|
export default React.memo(AppUnavailable)
 |