mirror of
https://github.com/langgenius/dify.git
synced 2025-12-01 13:29:01 +00:00
Signed-off-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Signed-off-by: lyzno1 <yuanyouhuilyz@gmail.com> Signed-off-by: kenwoodjw <blackxin55+@gmail.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Yunlu Wen <wylswz@163.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: GareArc <chen4851@purdue.edu> Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: Davide Delbianco <davide.delbianco@outlook.com> Co-authored-by: minglu7 <1347866672@qq.com> Co-authored-by: Ponder <ruan.lj@foxmail.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: heyszt <270985384@qq.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: Guangdong Liu <liugddx@gmail.com> Co-authored-by: Eric Guo <eric.guocz@gmail.com> Co-authored-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Co-authored-by: XlKsyt <caixuesen@outlook.com> Co-authored-by: Dhruv Gorasiya <80987415+DhruvGorasiya@users.noreply.github.com> Co-authored-by: crazywoola <427733928@qq.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: hj24 <mambahj24@gmail.com> Co-authored-by: GuanMu <ballmanjq@gmail.com> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Tonlo <123lzs123@gmail.com> Co-authored-by: Yusuke Yamada <yamachu.dev@gmail.com> Co-authored-by: Novice <novice12185727@gmail.com> Co-authored-by: kenwoodjw <blackxin55+@gmail.com> Co-authored-by: Ademílson Tonato <ademilsonft@outlook.com> Co-authored-by: znn <jubinkumarsoni@gmail.com> Co-authored-by: yangzheli <43645580+yangzheli@users.noreply.github.com>
133 lines
4.5 KiB
TypeScript
133 lines
4.5 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React, { useCallback, useEffect, useRef, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import type { Placement } from '@floating-ui/react'
|
|
import {
|
|
RiEqualizer2Line,
|
|
} from '@remixicon/react'
|
|
import { usePathname, useRouter } from 'next/navigation'
|
|
import Divider from '../../base/divider'
|
|
import InfoModal from './info-modal'
|
|
import ActionButton from '@/app/components/base/action-button'
|
|
import {
|
|
PortalToFollowElem,
|
|
PortalToFollowElemContent,
|
|
PortalToFollowElemTrigger,
|
|
} from '@/app/components/base/portal-to-follow-elem'
|
|
import ThemeSwitcher from '@/app/components/base/theme-switcher'
|
|
import type { SiteInfo } from '@/models/share'
|
|
import cn from '@/utils/classnames'
|
|
import { AccessMode } from '@/models/access-control'
|
|
import { useWebAppStore } from '@/context/web-app-context'
|
|
import { webAppLogout } from '@/service/webapp-auth'
|
|
|
|
type Props = {
|
|
data?: SiteInfo
|
|
placement?: Placement
|
|
hideLogout?: boolean
|
|
forceClose?: boolean
|
|
}
|
|
|
|
const MenuDropdown: FC<Props> = ({
|
|
data,
|
|
placement,
|
|
hideLogout,
|
|
forceClose,
|
|
}) => {
|
|
const webAppAccessMode = useWebAppStore(s => s.webAppAccessMode)
|
|
const router = useRouter()
|
|
const pathname = usePathname()
|
|
const { t } = useTranslation()
|
|
const [open, doSetOpen] = useState(false)
|
|
const openRef = useRef(open)
|
|
const setOpen = useCallback((v: boolean) => {
|
|
doSetOpen(v)
|
|
openRef.current = v
|
|
}, [doSetOpen])
|
|
|
|
const handleTrigger = useCallback(() => {
|
|
setOpen(!openRef.current)
|
|
}, [setOpen])
|
|
|
|
const shareCode = useWebAppStore(s => s.shareCode)
|
|
const handleLogout = useCallback(async () => {
|
|
await webAppLogout(shareCode!)
|
|
router.replace(`/webapp-signin?redirect_url=${pathname}`)
|
|
}, [router, pathname, webAppLogout, shareCode])
|
|
|
|
const [show, setShow] = useState(false)
|
|
|
|
useEffect(() => {
|
|
if (forceClose)
|
|
setOpen(false)
|
|
}, [forceClose, setOpen])
|
|
|
|
return (
|
|
<>
|
|
<PortalToFollowElem
|
|
open={open}
|
|
onOpenChange={setOpen}
|
|
placement={placement || 'bottom-end'}
|
|
offset={{
|
|
mainAxis: 4,
|
|
crossAxis: -4,
|
|
}}
|
|
>
|
|
<PortalToFollowElemTrigger onClick={handleTrigger}>
|
|
<div>
|
|
<ActionButton size='l' className={cn(open && 'bg-state-base-hover')}>
|
|
<RiEqualizer2Line className='h-[18px] w-[18px]' />
|
|
</ActionButton>
|
|
</div>
|
|
</PortalToFollowElemTrigger>
|
|
<PortalToFollowElemContent className='z-50'>
|
|
<div className='w-[224px] rounded-xl border-[0.5px] border-components-panel-border bg-components-panel-bg-blur shadow-lg backdrop-blur-sm'>
|
|
<div className='p-1'>
|
|
<div className={cn('system-md-regular flex cursor-pointer items-center rounded-lg py-1.5 pl-3 pr-2 text-text-secondary')}>
|
|
<div className='grow'>{t('common.theme.theme')}</div>
|
|
<ThemeSwitcher />
|
|
</div>
|
|
</div>
|
|
<Divider type='horizontal' className='my-0' />
|
|
<div className='p-1'>
|
|
{data?.privacy_policy && (
|
|
<a href={data.privacy_policy} target='_blank' className='system-md-regular flex cursor-pointer items-center rounded-lg px-3 py-1.5 text-text-secondary hover:bg-state-base-hover'>
|
|
<span className='grow'>{t('share.chat.privacyPolicyMiddle')}</span>
|
|
</a>
|
|
)}
|
|
<div
|
|
onClick={() => {
|
|
handleTrigger()
|
|
setShow(true)
|
|
}}
|
|
className='system-md-regular cursor-pointer rounded-lg px-3 py-1.5 text-text-secondary hover:bg-state-base-hover'
|
|
>{t('common.userProfile.about')}</div>
|
|
</div>
|
|
{!(hideLogout || webAppAccessMode === AccessMode.EXTERNAL_MEMBERS || webAppAccessMode === AccessMode.PUBLIC) && (
|
|
<div className='p-1'>
|
|
<div
|
|
onClick={handleLogout}
|
|
className='system-md-regular cursor-pointer rounded-lg px-3 py-1.5 text-text-secondary hover:bg-state-base-hover'
|
|
>
|
|
{t('common.userProfile.logout')}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</PortalToFollowElemContent>
|
|
</PortalToFollowElem>
|
|
{show && (
|
|
<InfoModal
|
|
isShow={show}
|
|
onClose={() => {
|
|
setShow(false)
|
|
}}
|
|
data={data}
|
|
/>
|
|
)}
|
|
</>
|
|
)
|
|
}
|
|
export default React.memo(MenuDropdown)
|