mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
d5361b8d09
Co-authored-by: Joel <iamjoel007@gmail.com>
113 lines
3.2 KiB
TypeScript
113 lines
3.2 KiB
TypeScript
import React, { useCallback, useState } from 'react'
|
|
import NavLink from './navLink'
|
|
import type { NavIcon } from './navLink'
|
|
import AppBasic from './basic'
|
|
import useBreakpoints, { MediaType } from '@/hooks/use-breakpoints'
|
|
import {
|
|
AlignLeft01,
|
|
AlignRight01,
|
|
} from '@/app/components/base/icons/src/vender/line/layout'
|
|
import { useEventEmitterContextContext } from '@/context/event-emitter'
|
|
import { APP_SIDEBAR_SHOULD_COLLAPSE } from '@/app/components/app/configuration/debug/types'
|
|
|
|
export type IAppDetailNavProps = {
|
|
iconType?: 'app' | 'dataset' | 'notion'
|
|
title: string
|
|
desc: string
|
|
icon: string
|
|
icon_background: string
|
|
navigation: Array<{
|
|
name: string
|
|
href: string
|
|
icon: NavIcon
|
|
selectedIcon: NavIcon
|
|
}>
|
|
extraInfo?: (modeState: string) => React.ReactNode
|
|
}
|
|
|
|
const AppDetailNav = ({ title, desc, icon, icon_background, navigation, extraInfo, iconType = 'app' }: IAppDetailNavProps) => {
|
|
const localeMode = localStorage.getItem('app-detail-collapse-or-expand') || 'expand'
|
|
const media = useBreakpoints()
|
|
const isMobile = media === MediaType.mobile
|
|
const mode = isMobile ? 'collapse' : 'expand'
|
|
const [modeState, setModeState] = useState(isMobile ? mode : localeMode)
|
|
const expand = modeState === 'expand'
|
|
|
|
const handleToggle = useCallback(() => {
|
|
setModeState((prev) => {
|
|
const next = prev === 'expand' ? 'collapse' : 'expand'
|
|
localStorage.setItem('app-detail-collapse-or-expand', next)
|
|
return next
|
|
})
|
|
}, [])
|
|
|
|
const { eventEmitter } = useEventEmitterContextContext()
|
|
eventEmitter?.useSubscription((v: any) => {
|
|
if (v.type === APP_SIDEBAR_SHOULD_COLLAPSE) {
|
|
setModeState('collapse')
|
|
localStorage.setItem('app-detail-collapse-or-expand', 'collapse')
|
|
}
|
|
})
|
|
|
|
return (
|
|
<div
|
|
className={`
|
|
shrink-0 flex flex-col bg-white border-r border-gray-200 transition-all
|
|
${expand ? 'w-[216px]' : 'w-14'}
|
|
`}
|
|
>
|
|
<div
|
|
className={`
|
|
shrink-0
|
|
${expand ? 'p-4' : 'p-2'}
|
|
`}
|
|
>
|
|
<AppBasic
|
|
mode={modeState}
|
|
iconType={iconType}
|
|
icon={icon}
|
|
icon_background={icon_background}
|
|
name={title}
|
|
type={desc}
|
|
/>
|
|
</div>
|
|
<nav
|
|
className={`
|
|
grow space-y-1 bg-white
|
|
${expand ? 'p-4' : 'px-2.5 py-4'}
|
|
`}
|
|
>
|
|
{navigation.map((item, index) => {
|
|
return (
|
|
<NavLink key={index} mode={modeState} iconMap={{ selected: item.selectedIcon, normal: item.icon }} name={item.name} href={item.href} />
|
|
)
|
|
})}
|
|
{extraInfo && extraInfo(modeState)}
|
|
</nav>
|
|
{
|
|
!isMobile && (
|
|
<div
|
|
className={`
|
|
shrink-0 py-3
|
|
${expand ? 'px-6' : 'px-4'}
|
|
`}
|
|
>
|
|
<div
|
|
className='flex items-center justify-center w-6 h-6 text-gray-500 cursor-pointer'
|
|
onClick={handleToggle}
|
|
>
|
|
{
|
|
expand
|
|
? <AlignLeft01 className='w-[14px] h-[14px]' />
|
|
: <AlignRight01 className='w-[14px] h-[14px]' />
|
|
}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(AppDetailNav)
|