123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- 'use client'
- import { useTranslation } from 'react-i18next'
- import { Fragment, useState } from 'react'
- import { useRouter } from 'next/navigation'
- import { useContext, useContextSelector } from 'use-context-selector'
- import { RiAccountCircleLine, RiArrowDownSLine, RiArrowRightUpLine, RiBookOpenLine, RiGithubLine, RiInformation2Line, RiLogoutBoxRLine, RiMap2Line, RiSettings3Line, RiStarLine } from '@remixicon/react'
- import Link from 'next/link'
- import { Menu, MenuButton, MenuItem, MenuItems, Transition } from '@headlessui/react'
- import Indicator from '../indicator'
- import AccountAbout from '../account-about'
- import GithubStar from '../github-star'
- import Support from './support'
- import Compliance from './compliance'
- import classNames from '@/utils/classnames'
- import I18n from '@/context/i18n'
- import Avatar from '@/app/components/base/avatar'
- import { logout } from '@/service/common'
- import AppContext, { useAppContext } from '@/context/app-context'
- import { useModalContext } from '@/context/modal-context'
- import { LanguagesSupported } from '@/i18n/language'
- import { LicenseStatus } from '@/types/feature'
- import { IS_CLOUD_EDITION } from '@/config'
- export type IAppSelector = {
- isMobile: boolean
- }
- export default function AppSelector({ isMobile }: IAppSelector) {
- const itemClassName = `
- flex items-center w-full h-9 pl-3 pr-2 text-text-secondary system-md-regular
- rounded-lg hover:bg-state-base-hover cursor-pointer gap-1
- `
- const router = useRouter()
- const [aboutVisible, setAboutVisible] = useState(false)
- const systemFeatures = useContextSelector(AppContext, v => v.systemFeatures)
- const { locale } = useContext(I18n)
- const { t } = useTranslation()
- const { userProfile, langeniusVersionInfo, isCurrentWorkspaceOwner } = useAppContext()
- const { setShowAccountSettingModal } = useModalContext()
- const handleLogout = async () => {
- await logout({
- url: '/logout',
- params: {},
- })
- localStorage.removeItem('setup_status')
- localStorage.removeItem('console_token')
- localStorage.removeItem('refresh_token')
- router.push('/signin')
- }
- return (
- <div className="">
- <Menu as="div" className="relative inline-block text-left">
- {
- ({ open }) => (
- <>
- <MenuButton
- className={`
- inline-flex items-center
- rounded-[20px] py-1 pl-1 pr-2.5 text-sm
- text-text-secondary hover:bg-state-base-hover
- mobile:px-1
- ${open && 'bg-state-base-hover'}
- `}
- >
- <Avatar avatar={userProfile.avatar_url} name={userProfile.name} className='mr-0 sm:mr-2' size={32} />
- {!isMobile && <>
- {userProfile.name}
- <RiArrowDownSLine className="ml-1 h-3 w-3 text-text-tertiary" />
- </>}
- </MenuButton>
- <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"
- >
- <MenuItems
- className="
- absolute right-0 mt-1.5 w-60 max-w-80
- origin-top-right divide-y divide-divider-subtle rounded-lg bg-components-panel-bg-blur
- shadow-lg focus:outline-none
- "
- >
- <MenuItem disabled>
- <div className='flex flex-nowrap items-center py-[13px] pl-3 pr-2'>
- <div className='grow'>
- <div className='system-md-medium break-all text-text-primary'>{userProfile.name}</div>
- <div className='system-xs-regular break-all text-text-tertiary'>{userProfile.email}</div>
- </div>
- <Avatar avatar={userProfile.avatar_url} name={userProfile.name} size={36} className='mr-3' />
- </div>
- </MenuItem>
- <div className="px-1 py-1">
- <MenuItem>
- <Link
- className={classNames(itemClassName, 'group',
- 'data-[active]:bg-state-base-hover',
- )}
- href='/account'
- target='_self' rel='noopener noreferrer'>
- <RiAccountCircleLine className='size-4 shrink-0 text-text-tertiary' />
- <div className='system-md-regular grow px-1 text-text-secondary'>{t('common.account.account')}</div>
- <RiArrowRightUpLine className='size-[14px] shrink-0 text-text-tertiary' />
- </Link>
- </MenuItem>
- <MenuItem>
- <div className={classNames(itemClassName,
- 'data-[active]:bg-state-base-hover',
- )} onClick={() => setShowAccountSettingModal({ payload: 'members' })}>
- <RiSettings3Line className='size-4 shrink-0 text-text-tertiary' />
- <div className='system-md-regular grow px-1 text-text-secondary'>{t('common.userProfile.settings')}</div>
- </div>
- </MenuItem>
- </div>
- <div className='p-1'>
- <MenuItem>
- <Link
- className={classNames(itemClassName, 'group justify-between',
- 'data-[active]:bg-state-base-hover',
- )}
- href={
- locale !== LanguagesSupported[1] ? 'https://docs.dify.ai/' : `https://docs.dify.ai/v/${locale.toLowerCase()}/`
- }
- target='_blank' rel='noopener noreferrer'>
- <RiBookOpenLine className='size-4 shrink-0 text-text-tertiary' />
- <div className='system-md-regular grow px-1 text-text-secondary'>{t('common.userProfile.helpCenter')}</div>
- <RiArrowRightUpLine className='size-[14px] shrink-0 text-text-tertiary' />
- </Link>
- </MenuItem>
- <Support />
- {IS_CLOUD_EDITION && isCurrentWorkspaceOwner && <Compliance />}
- </div>
- <div className='p-1'>
- <MenuItem>
- <Link
- className={classNames(itemClassName, 'group justify-between',
- 'data-[active]:bg-state-base-hover',
- )}
- href='https://roadmap.dify.ai'
- target='_blank' rel='noopener noreferrer'>
- <RiMap2Line className='size-4 shrink-0 text-text-tertiary' />
- <div className='system-md-regular grow px-1 text-text-secondary'>{t('common.userProfile.roadmap')}</div>
- <RiArrowRightUpLine className='size-[14px] shrink-0 text-text-tertiary' />
- </Link>
- </MenuItem>
- {systemFeatures.license.status === LicenseStatus.NONE && <MenuItem>
- <Link
- className={classNames(itemClassName, 'group justify-between',
- 'data-[active]:bg-state-base-hover',
- )}
- href='https://github.com/langgenius/dify'
- target='_blank' rel='noopener noreferrer'>
- <RiGithubLine className='size-4 shrink-0 text-text-tertiary' />
- <div className='system-md-regular grow px-1 text-text-secondary'>{t('common.userProfile.github')}</div>
- <div className='flex items-center gap-0.5 rounded-[5px] border border-divider-deep bg-components-badge-bg-dimm px-[5px] py-[3px]'>
- <RiStarLine className='size-3 shrink-0 text-text-tertiary' />
- <GithubStar className='system-2xs-medium-uppercase text-text-tertiary' />
- </div>
- </Link>
- </MenuItem>}
- {
- document?.body?.getAttribute('data-public-site-about') !== 'hide' && (
- <MenuItem>
- <div className={classNames(itemClassName, 'justify-between',
- 'data-[active]:bg-state-base-hover',
- )} onClick={() => setAboutVisible(true)}>
- <RiInformation2Line className='size-4 shrink-0 text-text-tertiary' />
- <div className='system-md-regular grow px-1 text-text-secondary'>{t('common.userProfile.about')}</div>
- <div className='flex shrink-0 items-center'>
- <div className='system-xs-regular mr-2 text-text-tertiary'>{langeniusVersionInfo.current_version}</div>
- <Indicator color={langeniusVersionInfo.current_version === langeniusVersionInfo.latest_version ? 'green' : 'orange'} />
- </div>
- </div>
- </MenuItem>
- )
- }
- </div>
- <MenuItem>
- <div className='p-1' onClick={() => handleLogout()}>
- <div
- className={classNames(itemClassName, 'group justify-between',
- 'data-[active]:bg-state-base-hover',
- )}
- >
- <RiLogoutBoxRLine className='size-4 shrink-0 text-text-tertiary' />
- <div className='system-md-regular grow px-1 text-text-secondary'>{t('common.userProfile.logout')}</div>
- </div>
- </div>
- </MenuItem>
- </MenuItems>
- </Transition>
- </>
- )
- }
- </Menu>
- {
- aboutVisible && <AccountAbout onCancel={() => setAboutVisible(false)} langeniusVersionInfo={langeniusVersionInfo} />
- }
- </div >
- )
- }
|