mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
95 lines
3.2 KiB
TypeScript
95 lines
3.2 KiB
TypeScript
|
'use client'
|
||
|
import { useTranslation } from 'react-i18next'
|
||
|
import { Fragment } from 'react'
|
||
|
import { useRouter } from 'next/navigation'
|
||
|
import { Menu, Transition } from '@headlessui/react'
|
||
|
import Avatar from '@/app/components/base/avatar'
|
||
|
import { logout } from '@/service/common'
|
||
|
import { useAppContext } from '@/context/app-context'
|
||
|
import { LogOut01 } from '@/app/components/base/icons/src/vender/line/general'
|
||
|
|
||
|
export type IAppSelector = {
|
||
|
isMobile: boolean
|
||
|
}
|
||
|
|
||
|
export default function AppSelector() {
|
||
|
const router = useRouter()
|
||
|
const { t } = useTranslation()
|
||
|
const { userProfile } = useAppContext()
|
||
|
|
||
|
const handleLogout = async () => {
|
||
|
await logout({
|
||
|
url: '/logout',
|
||
|
params: {},
|
||
|
})
|
||
|
|
||
|
if (localStorage?.getItem('console_token'))
|
||
|
localStorage.removeItem('console_token')
|
||
|
|
||
|
router.push('/signin')
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<Menu as="div" className="relative inline-block text-left">
|
||
|
{
|
||
|
({ open }) => (
|
||
|
<>
|
||
|
<div>
|
||
|
<Menu.Button
|
||
|
className={`
|
||
|
inline-flex items-center
|
||
|
rounded-[20px] p-1x text-sm
|
||
|
text-gray-700 hover:bg-gray-200
|
||
|
mobile:px-1
|
||
|
${open && 'bg-gray-200'}
|
||
|
`}
|
||
|
>
|
||
|
<Avatar name={userProfile.name} size={32} />
|
||
|
</Menu.Button>
|
||
|
</div>
|
||
|
<Transition
|
||
|
as={Fragment}
|
||
|
enter="transition ease-out duration-100"
|
||
|
enterFrom="transform opacity-0 scale-95"
|
||
|
enterTo="transform opacity-100 scale-100"
|
||
|
leave="transition ease-in duration-75"
|
||
|
leaveFrom="transform opacity-100 scale-100"
|
||
|
leaveTo="transform opacity-0 scale-95"
|
||
|
>
|
||
|
<Menu.Items
|
||
|
className="
|
||
|
absolute -right-3 -top-3 w-60 max-w-80
|
||
|
divide-y divide-gray-100 origin-top-right rounded-lg bg-white
|
||
|
shadow-lg
|
||
|
"
|
||
|
>
|
||
|
<Menu.Item>
|
||
|
<div className='p-1'>
|
||
|
<div className='flex flex-nowrap items-center px-3 py-2'>
|
||
|
<div className='grow'>
|
||
|
<div className='system-md-medium text-text-primary break-all'>{userProfile.name}</div>
|
||
|
<div className='system-xs-regular text-text-tertiary break-all'>{userProfile.email}</div>
|
||
|
</div>
|
||
|
<Avatar name={userProfile.name} size={32} />
|
||
|
</div>
|
||
|
</div>
|
||
|
</Menu.Item>
|
||
|
<Menu.Item>
|
||
|
<div className='p-1' onClick={() => handleLogout()}>
|
||
|
<div
|
||
|
className='flex items-center justify-start h-9 px-3 rounded-lg cursor-pointer group hover:bg-gray-50'
|
||
|
>
|
||
|
<LogOut01 className='w-4 h-4 text-gray-500 flex mr-1' />
|
||
|
<div className='font-normal text-[14px] text-gray-700'>{t('common.userProfile.logout')}</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</Menu.Item>
|
||
|
</Menu.Items>
|
||
|
</Transition>
|
||
|
</>
|
||
|
)
|
||
|
}
|
||
|
</Menu>
|
||
|
)
|
||
|
}
|