mirror of
https://github.com/langgenius/dify.git
synced 2026-01-07 06:48:28 +00:00
81 lines
2.1 KiB
TypeScript
81 lines
2.1 KiB
TypeScript
import type { FC } from 'react'
|
|
import {
|
|
memo,
|
|
useState,
|
|
} from 'react'
|
|
import BlockIcon from '../block-icon'
|
|
import type { OnSelect } from './types'
|
|
import {
|
|
BLOCK_CLASSIFICATIONS,
|
|
BLOCK_GROUP_BY_CLASSIFICATION,
|
|
TABS,
|
|
} from './constants'
|
|
|
|
export type TabsProps = {
|
|
onSelect: OnSelect
|
|
}
|
|
const Tabs: FC<TabsProps> = ({
|
|
onSelect,
|
|
}) => {
|
|
const [activeTab, setActiveTab] = useState(TABS[0].key)
|
|
|
|
return (
|
|
<div>
|
|
<div className='flex items-center justify-between px-3 h-[34px] border-b-[0.5px] border-b-black/5'>
|
|
{
|
|
TABS.map(tab => (
|
|
<div
|
|
key={tab.key}
|
|
className={`
|
|
text-[13px] font-medium cursor-pointer
|
|
${activeTab === tab.key ? 'text-gray-700' : 'text-gray-500'}
|
|
`}
|
|
onClick={() => setActiveTab(tab.key)}
|
|
>
|
|
{tab.name}
|
|
</div>
|
|
))
|
|
}
|
|
</div>
|
|
<div className='p-1'>
|
|
{
|
|
BLOCK_CLASSIFICATIONS.map(classification => (
|
|
<div
|
|
key={classification}
|
|
className='mb-1 last-of-type:mb-0'
|
|
>
|
|
{
|
|
classification !== '-' && (
|
|
<div className='flex items-start px-3 h-[22px] text-xs font-medium text-gray-500'>
|
|
{classification}
|
|
</div>
|
|
)
|
|
}
|
|
{
|
|
BLOCK_GROUP_BY_CLASSIFICATION[classification].map(block => (
|
|
<div
|
|
key={block.type}
|
|
className='flex items-center px-3 h-8 rounded-lg hover:bg-gray-50 cursor-pointer'
|
|
onClick={(e) => {
|
|
e.stopPropagation()
|
|
onSelect(block.type)
|
|
}}
|
|
>
|
|
<BlockIcon
|
|
className='mr-2'
|
|
type={block.type}
|
|
/>
|
|
<div className='text-sm text-gray-900'>{block.title}</div>
|
|
</div>
|
|
))
|
|
}
|
|
</div>
|
|
))
|
|
}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default memo(Tabs)
|