| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | 
							- 'use client'
 - 
 - import { useTranslation } from 'react-i18next'
 - import { useAppContext } from '@/context/app-context'
 - import { Beaker02 } from '@/app/components/base/icons/src/vender/solid/education'
 - import { TerminalSquare } from '@/app/components/base/icons/src/vender/solid/development'
 - 
 - const headerEnvClassName: { [k: string]: string } = {
 -   DEVELOPMENT: 'bg-[#FEC84B] border-[#FDB022] text-[#93370D]',
 -   TESTING: 'bg-[#A5F0FC] border-[#67E3F9] text-[#164C63]',
 - }
 - 
 - const EnvNav = () => {
 -   const { t } = useTranslation()
 -   const { langGeniusVersionInfo } = useAppContext()
 -   const showEnvTag = langGeniusVersionInfo.current_env === 'TESTING' || langGeniusVersionInfo.current_env === 'DEVELOPMENT'
 - 
 -   if (!showEnvTag)
 -     return null
 - 
 -   return (
 -     <div className={`
 -       mr-1 flex h-[22px] items-center rounded-md border px-2 text-xs font-medium
 -       ${headerEnvClassName[langGeniusVersionInfo.current_env]}
 -     `}>
 -       {
 -         langGeniusVersionInfo.current_env === 'TESTING' && (
 -           <>
 -             <Beaker02 className='h-3 w-3' />
 -             <div className='ml-1 max-[1280px]:hidden'>{t('common.environment.testing')}</div>
 -           </>
 -         )
 -       }
 -       {
 -         langGeniusVersionInfo.current_env === 'DEVELOPMENT' && (
 -           <>
 -             <TerminalSquare className='h-3 w-3' />
 -             <div className='ml-1 max-[1280px]:hidden'>{t('common.environment.development')}</div>
 -           </>
 -         )
 -       }
 -     </div>
 -   )
 - }
 - 
 - export default EnvNav
 
 
  |