|
@@ -2,24 +2,25 @@
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
import { Fragment, useState } from 'react'
|
|
|
import { useRouter } from 'next/navigation'
|
|
|
-import { useContext } from 'use-context-selector'
|
|
|
-import { RiArrowDownSLine, RiLogoutBoxRLine } from '@remixicon/react'
|
|
|
+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, Transition } from '@headlessui/react'
|
|
|
import Indicator from '../indicator'
|
|
|
import AccountAbout from '../account-about'
|
|
|
-import { mailToSupport } from '../utils/util'
|
|
|
+import GithubStar from '../github-star'
|
|
|
import WorkplaceSelector from './workplace-selector'
|
|
|
+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 { useAppContext } from '@/context/app-context'
|
|
|
-import { ArrowUpRight } from '@/app/components/base/icons/src/vender/line/arrows'
|
|
|
+import AppContext, { useAppContext } from '@/context/app-context'
|
|
|
import { useModalContext } from '@/context/modal-context'
|
|
|
import { LanguagesSupported } from '@/i18n/language'
|
|
|
-import { useProviderContext } from '@/context/provider-context'
|
|
|
-import { Plan } from '@/app/components/billing/type'
|
|
|
+import { LicenseStatus } from '@/types/feature'
|
|
|
+import { IS_CLOUD_EDITION } from '@/config'
|
|
|
|
|
|
export type IAppSelector = {
|
|
|
isMobile: boolean
|
|
@@ -27,18 +28,17 @@ export type IAppSelector = {
|
|
|
|
|
|
export default function AppSelector({ isMobile }: IAppSelector) {
|
|
|
const itemClassName = `
|
|
|
- flex items-center w-full h-9 px-3 text-text-secondary system-md-regular
|
|
|
- rounded-lg hover:bg-state-base-hover cursor-pointer
|
|
|
+ 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 } = useAppContext()
|
|
|
+ const { userProfile, langeniusVersionInfo, isCurrentWorkspaceOwner } = useAppContext()
|
|
|
const { setShowAccountSettingModal } = useModalContext()
|
|
|
- const { plan } = useProviderContext()
|
|
|
- const canEmailSupport = plan.type === Plan.professional || plan.type === Plan.team || plan.type === Plan.enterprise
|
|
|
|
|
|
const handleLogout = async () => {
|
|
|
await logout({
|
|
@@ -63,15 +63,15 @@ export default function AppSelector({ isMobile }: IAppSelector) {
|
|
|
className={`
|
|
|
inline-flex items-center
|
|
|
rounded-[20px] py-1 pr-2.5 pl-1 text-sm
|
|
|
- text-gray-700 hover:bg-gray-200
|
|
|
+ text-text-secondary hover:bg-state-base-hover
|
|
|
mobile:px-1
|
|
|
- ${open && 'bg-gray-200'}
|
|
|
+ ${open && 'bg-state-base-hover'}
|
|
|
`}
|
|
|
>
|
|
|
<Avatar avatar={userProfile.avatar_url} name={userProfile.name} className='sm:mr-2 mr-0' size={32} />
|
|
|
{!isMobile && <>
|
|
|
{userProfile.name}
|
|
|
- <RiArrowDownSLine className="w-3 h-3 ml-1 text-gray-700" />
|
|
|
+ <RiArrowDownSLine className="w-3 h-3 ml-1 text-text-tertiary" />
|
|
|
</>}
|
|
|
</Menu.Button>
|
|
|
<Transition
|
|
@@ -91,102 +91,95 @@ export default function AppSelector({ isMobile }: IAppSelector) {
|
|
|
"
|
|
|
>
|
|
|
<Menu.Item disabled>
|
|
|
- <div className='flex flex-nowrap items-center px-4 py-[13px]'>
|
|
|
- <Avatar avatar={userProfile.avatar_url} name={userProfile.name} size={36} className='mr-3' />
|
|
|
+ <div className='flex flex-nowrap items-center pl-3 pr-2 py-[13px]'>
|
|
|
<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 avatar={userProfile.avatar_url} name={userProfile.name} size={36} className='mr-3' />
|
|
|
</div>
|
|
|
</Menu.Item>
|
|
|
- <div className='px-1 py-1'>
|
|
|
+ <div className='p-1'>
|
|
|
<div className='mt-2 px-3 text-xs font-medium text-text-tertiary'>{t('common.userProfile.workspace')}</div>
|
|
|
<WorkplaceSelector />
|
|
|
</div>
|
|
|
- <div className="px-1 py-1">
|
|
|
+ <div className="p-1">
|
|
|
<Menu.Item>
|
|
|
{({ active }) => <Link
|
|
|
- className={classNames(itemClassName, 'group justify-between',
|
|
|
+ className={classNames(itemClassName, 'group',
|
|
|
active && 'bg-state-base-hover',
|
|
|
)}
|
|
|
href='/account'
|
|
|
target='_self' rel='noopener noreferrer'>
|
|
|
- <div>{t('common.account.account')}</div>
|
|
|
- <ArrowUpRight className='hidden w-[14px] h-[14px] text-text-tertiary group-hover:flex' />
|
|
|
+ <RiAccountCircleLine className='size-4 flex-shrink-0 text-text-tertiary' />
|
|
|
+ <div className='flex-grow system-md-regular text-text-secondary px-1'>{t('common.account.account')}</div>
|
|
|
+ <RiArrowRightUpLine className='size-[14px] flex-shrink-0 text-text-tertiary' />
|
|
|
</Link>}
|
|
|
</Menu.Item>
|
|
|
<Menu.Item>
|
|
|
{({ active }) => <div className={classNames(itemClassName,
|
|
|
active && 'bg-state-base-hover',
|
|
|
)} onClick={() => setShowAccountSettingModal({ payload: 'members' })}>
|
|
|
- <div>{t('common.userProfile.settings')}</div>
|
|
|
+ <RiSettings3Line className='size-4 flex-shrink-0 text-text-tertiary' />
|
|
|
+ <div className='flex-grow system-md-regular text-text-secondary px-1'>{t('common.userProfile.settings')}</div>
|
|
|
</div>}
|
|
|
</Menu.Item>
|
|
|
- {canEmailSupport && <Menu.Item>
|
|
|
- {({ active }) => <a
|
|
|
- className={classNames(itemClassName, 'group justify-between',
|
|
|
- active && 'bg-state-base-hover',
|
|
|
- )}
|
|
|
- href={mailToSupport(userProfile.email, plan.type, langeniusVersionInfo.current_version)}
|
|
|
- target='_blank' rel='noopener noreferrer'>
|
|
|
- <div>{t('common.userProfile.emailSupport')}</div>
|
|
|
- <ArrowUpRight className='hidden w-[14px] h-[14px] text-text-tertiary group-hover:flex' />
|
|
|
- </a>}
|
|
|
- </Menu.Item>}
|
|
|
- <Menu.Item>
|
|
|
- {({ active }) => <Link
|
|
|
- className={classNames(itemClassName, 'group justify-between',
|
|
|
- active && 'bg-state-base-hover',
|
|
|
- )}
|
|
|
- href='https://github.com/langgenius/dify/discussions/categories/feedbacks'
|
|
|
- target='_blank' rel='noopener noreferrer'>
|
|
|
- <div>{t('common.userProfile.communityFeedback')}</div>
|
|
|
- <ArrowUpRight className='hidden w-[14px] h-[14px] text-text-tertiary group-hover:flex' />
|
|
|
- </Link>}
|
|
|
- </Menu.Item>
|
|
|
+ </div>
|
|
|
+ <div className='p-1'>
|
|
|
<Menu.Item>
|
|
|
{({ active }) => <Link
|
|
|
className={classNames(itemClassName, 'group justify-between',
|
|
|
active && 'bg-state-base-hover',
|
|
|
)}
|
|
|
- href='https://discord.gg/5AEfbxcd9k'
|
|
|
+ href={
|
|
|
+ locale !== LanguagesSupported[1] ? 'https://docs.dify.ai/' : `https://docs.dify.ai/v/${locale.toLowerCase()}/`
|
|
|
+ }
|
|
|
target='_blank' rel='noopener noreferrer'>
|
|
|
- <div>{t('common.userProfile.community')}</div>
|
|
|
- <ArrowUpRight className='hidden w-[14px] h-[14px] text-text-tertiary group-hover:flex' />
|
|
|
+ <RiBookOpenLine className='flex-shrink-0 size-4 text-text-tertiary' />
|
|
|
+ <div className='flex-grow system-md-regular text-text-secondary px-1'>{t('common.userProfile.helpCenter')}</div>
|
|
|
+ <RiArrowRightUpLine className='flex-shrink-0 size-[14px] text-text-tertiary' />
|
|
|
</Link>}
|
|
|
</Menu.Item>
|
|
|
+ <Support />
|
|
|
+ {IS_CLOUD_EDITION && isCurrentWorkspaceOwner && <Compliance />}
|
|
|
+ </div>
|
|
|
+ <div className='p-1'>
|
|
|
<Menu.Item>
|
|
|
{({ active }) => <Link
|
|
|
className={classNames(itemClassName, 'group justify-between',
|
|
|
active && 'bg-state-base-hover',
|
|
|
)}
|
|
|
- href={
|
|
|
- locale !== LanguagesSupported[1] ? 'https://docs.dify.ai/' : `https://docs.dify.ai/v/${locale.toLowerCase()}/`
|
|
|
- }
|
|
|
+ href='https://roadmap.dify.ai'
|
|
|
target='_blank' rel='noopener noreferrer'>
|
|
|
- <div>{t('common.userProfile.helpCenter')}</div>
|
|
|
- <ArrowUpRight className='hidden w-[14px] h-[14px] text-text-tertiary group-hover:flex' />
|
|
|
+ <RiMap2Line className='flex-shrink-0 size-4 text-text-tertiary' />
|
|
|
+ <div className='flex-grow system-md-regular text-text-secondary px-1'>{t('common.userProfile.roadmap')}</div>
|
|
|
+ <RiArrowRightUpLine className='flex-shrink-0 size-[14px] text-text-tertiary' />
|
|
|
</Link>}
|
|
|
</Menu.Item>
|
|
|
- <Menu.Item>
|
|
|
+ {systemFeatures.license.status === LicenseStatus.NONE && <Menu.Item>
|
|
|
{({ active }) => <Link
|
|
|
className={classNames(itemClassName, 'group justify-between',
|
|
|
active && 'bg-state-base-hover',
|
|
|
)}
|
|
|
- href='https://roadmap.dify.ai'
|
|
|
+ href='https://github.com/langgenius/dify/stargazers'
|
|
|
target='_blank' rel='noopener noreferrer'>
|
|
|
- <div>{t('common.userProfile.roadmap')}</div>
|
|
|
- <ArrowUpRight className='hidden w-[14px] h-[14px] text-text-tertiary group-hover:flex' />
|
|
|
+ <RiGithubLine className='flex-shrink-0 size-4 text-text-tertiary' />
|
|
|
+ <div className='flex-grow system-md-regular text-text-secondary px-1'>{t('common.userProfile.github')}</div>
|
|
|
+ <div className='flex items-center gap-0.5 px-[5px] py-[3px] border border-divider-deep rounded-[5px] bg-components-badge-bg-dimm'>
|
|
|
+ <RiStarLine className='flex-shrink-0 size-3 text-text-tertiary' />
|
|
|
+ <GithubStar className='system-2xs-medium-uppercase text-text-tertiary' />
|
|
|
+ </div>
|
|
|
</Link>}
|
|
|
- </Menu.Item>
|
|
|
+ </Menu.Item>}
|
|
|
{
|
|
|
document?.body?.getAttribute('data-public-site-about') !== 'hide' && (
|
|
|
<Menu.Item>
|
|
|
{({ active }) => <div className={classNames(itemClassName, 'justify-between',
|
|
|
active && 'bg-state-base-hover',
|
|
|
)} onClick={() => setAboutVisible(true)}>
|
|
|
- <div>{t('common.userProfile.about')}</div>
|
|
|
- <div className='flex items-center'>
|
|
|
+ <RiInformation2Line className='flex-shrink-0 size-4 text-text-tertiary' />
|
|
|
+ <div className='flex-grow system-md-regular text-text-secondary px-1'>{t('common.userProfile.about')}</div>
|
|
|
+ <div className='flex-shrink-0 flex items-center'>
|
|
|
<div className='mr-2 system-xs-regular text-text-tertiary'>{langeniusVersionInfo.current_version}</div>
|
|
|
<Indicator color={langeniusVersionInfo.current_version === langeniusVersionInfo.latest_version ? 'green' : 'orange'} />
|
|
|
</div>
|
|
@@ -198,12 +191,12 @@ export default function AppSelector({ isMobile }: IAppSelector) {
|
|
|
<Menu.Item>
|
|
|
{({ active }) => <div className='p-1' onClick={() => handleLogout()}>
|
|
|
<div
|
|
|
- className={
|
|
|
- classNames('flex items-center justify-between h-9 px-3 rounded-lg cursor-pointer group hover:bg-state-base-hover',
|
|
|
- active && 'bg-state-base-hover')}
|
|
|
+ className={classNames(itemClassName, 'group justify-between',
|
|
|
+ active && 'bg-state-base-hover',
|
|
|
+ )}
|
|
|
>
|
|
|
- <div className='system-md-regular text-text-secondary'>{t('common.userProfile.logout')}</div>
|
|
|
- <RiLogoutBoxRLine className='hidden w-4 h-4 text-text-tertiary group-hover:flex' />
|
|
|
+ <RiLogoutBoxRLine className='flex-shrink-0 size-4 text-text-tertiary' />
|
|
|
+ <div className='flex-grow system-md-regular text-text-secondary px-1'>{t('common.userProfile.logout')}</div>
|
|
|
</div>
|
|
|
</div>}
|
|
|
</Menu.Item>
|