dify/web/app/(commonLayout)/plugins/Container.tsx

120 lines
4.8 KiB
TypeScript
Raw Normal View History

2024-09-14 17:09:25 +08:00
'use client'
import { useMemo, useRef } from 'react'
import { useTranslation } from 'react-i18next'
import {
RiArrowRightUpLine,
RiBugLine,
2024-09-16 18:58:39 +08:00
RiClipboardLine,
2024-09-14 17:09:25 +08:00
RiDragDropLine,
RiEqualizer2Line,
} from '@remixicon/react'
import InstallPluginDropdown from './InstallPluginDropdown'
import { useTabSearchParams } from '@/hooks/use-tab-searchparams'
2024-09-16 18:58:39 +08:00
import { useModalContext } from '@/context/modal-context'
2024-09-14 17:09:25 +08:00
import Button from '@/app/components/base/button'
import TabSlider from '@/app/components/base/tab-slider'
2024-09-16 18:58:39 +08:00
import ActionButton from '@/app/components/base/action-button'
2024-09-14 17:09:25 +08:00
import Tooltip from '@/app/components/base/tooltip'
const Container = () => {
const { t } = useTranslation()
2024-09-16 18:58:39 +08:00
const { setShowPluginSettingModal } = useModalContext()
2024-09-14 17:09:25 +08:00
const options = useMemo(() => {
return [
{ value: 'plugins', text: t('common.menus.plugins') },
{ value: 'discover', text: 'Discover in Marketplace' },
]
}, [t])
const [activeTab, setActiveTab] = useTabSearchParams({
defaultTab: options[0].value,
2024-09-14 17:09:25 +08:00
})
const containerRef = useRef<HTMLDivElement>(null)
return (
2024-09-18 18:32:33 +08:00
<div
ref={containerRef}
className='grow relative flex flex-col rounded-t-xl bg-components-panel-bg border-t
border-divider-subtle overflow-y-auto'
>
2024-09-14 17:09:25 +08:00
<div className='flex min-h-[60px] px-12 pt-4 pb-2 items-center self-stretch gap-1'>
<div className='flex justify-between items-center w-full'>
<div className='flex-1'>
<TabSlider
value={activeTab}
onChange={setActiveTab}
2024-09-14 17:09:25 +08:00
options={options}
/>
</div>
<div className='flex flex-shrink-0 items-center gap-1'>
<InstallPluginDropdown />
<Tooltip
triggerMethod='click'
popupContent={
<>
<div className='flex items-center gap-1 self-stretch'>
<span className='flex flex-col justify-center items-start flex-grow flex-shrink-0 basis-0 text-text-secondary system-sm-semibold'>Debugging</span>
<div className='flex items-center gap-0.5 text-text-accent-light-mode-only cursor-pointer'>
<span className='system-xs-medium'>View docs</span>
<RiArrowRightUpLine className='w-3 h-3' />
</div>
</div>
<div className='flex flex-col items-start gap-0.5 self-stretch'>
2024-09-16 18:58:39 +08:00
{['Port', 'Key'].map((label, index) => (
<div key={label} className='flex items-center gap-1 self-stretch'>
<span className='flex w-10 flex-col justify-center items-start text-text-tertiary system-xs-medium'>{label}</span>
<div className='flex justify-center items-center gap-0.5'>
<span className='system-xs-medium text-text-secondary'>
{index === 0 ? 'cloud.dify,ai:2048' : 'A1B2C3D4E5F6G7H8'}
</span>
<ActionButton>
<RiClipboardLine className='w-3.5 h-3.5 text-text-tertiary' />
</ActionButton>
</div>
</div>
))}
2024-09-14 17:09:25 +08:00
</div>
</>
}
popupClassName='flex flex-col items-start w-[256px] px-4 py-3.5 gap-1 border border-components-panel-border
2024-09-16 18:58:39 +08:00
rounded-xl bg-components-tooltip-bg shadows-shadow-lg z-50'
2024-09-14 17:09:25 +08:00
asChild={false}
position='bottom'
>
<Button className='w-full h-full p-2 text-components-button-secondary-text'>
<RiBugLine className='w-4 h-4' />
</Button>
</Tooltip>
2024-09-16 18:58:39 +08:00
<Button
className='w-full h-full p-2 text-components-button-secondary-text group'
onClick={() => {
setShowPluginSettingModal()
}}
>
2024-09-14 17:09:25 +08:00
<RiEqualizer2Line className='w-4 h-4' />
</Button>
</div>
</div>
</div>
2024-09-18 18:32:33 +08:00
<div className='flex flex-col pt-1 pb-3 px-12 justify-center items-start gap-3 self-stretch'>
2024-09-14 17:09:25 +08:00
<div className='h-px self-stretch bg-divider-subtle'></div>
<div className='flex items-center gap-2 self-stretch'>
2024-09-18 18:32:33 +08:00
{/* Filter goes here */}
2024-09-14 17:09:25 +08:00
</div>
</div>
2024-09-18 18:32:33 +08:00
<div className='flex px-12 items-start content-start gap-2 flex-grow self-stretch flex-wrap'>
{/* Plugin cards go here */}
</div>
{activeTab === 'plugins' && <div className='flex items-center justify-center py-4 gap-2 text-text-quaternary'>
2024-09-14 17:09:25 +08:00
<RiDragDropLine className='w-4 h-4' />
<span className='system-xs-regular'>Drop plugin package here to install</span>
</div>}
2024-09-14 17:09:25 +08:00
</div>
)
}
export default Container