mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-30 01:55:17 +08:00
29 lines
731 B
TypeScript
29 lines
731 B
TypeScript
'use client'
|
|
import React from 'react'
|
|
import { useContext } from 'use-context-selector'
|
|
import style from './page.module.css'
|
|
import Select, { LOCALES } from '@/app/components/base/select/locale'
|
|
import { type Locale } from '@/i18n'
|
|
import I18n from '@/context/i18n'
|
|
|
|
const Header = () => {
|
|
const { locale, setLocaleOnClient } = useContext(I18n)
|
|
|
|
if (localStorage?.getItem('console_token'))
|
|
localStorage.removeItem('console_token')
|
|
|
|
return <div className='flex items-center justify-between p-6 w-full'>
|
|
<div className={style.logo}></div>
|
|
<Select
|
|
value={locale}
|
|
items={LOCALES}
|
|
onChange={(value) => {
|
|
setLocaleOnClient(value as Locale)
|
|
}}
|
|
/>
|
|
|
|
</div>
|
|
}
|
|
|
|
export default Header
|