mirror of
https://github.com/langgenius/dify.git
synced 2025-11-30 12:53:33 +00:00
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: jyong <718720800@qq.com> Co-authored-by: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: quicksand <quicksandzn@gmail.com> Co-authored-by: Jyong <76649700+JohnJyong@users.noreply.github.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: Yongtao Huang <yongtaoh2022@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: Hanqing Zhao <sherry9277@gmail.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Harry <xh001x@hotmail.com>
106 lines
4.3 KiB
TypeScript
106 lines
4.3 KiB
TypeScript
'use client'
|
|
|
|
// Libraries
|
|
import { useEffect, useState } from 'react'
|
|
import { useRouter } from 'next/navigation'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useBoolean, useDebounceFn } from 'ahooks'
|
|
|
|
// Components
|
|
import ExternalAPIPanel from '../external-api/external-api-panel'
|
|
import Datasets from './datasets'
|
|
import DatasetFooter from './dataset-footer'
|
|
import TagManagementModal from '@/app/components/base/tag-management'
|
|
import TagFilter from '@/app/components/base/tag-management/filter'
|
|
import Button from '@/app/components/base/button'
|
|
import Input from '@/app/components/base/input'
|
|
import { ApiConnectionMod } from '@/app/components/base/icons/src/vender/solid/development'
|
|
import CheckboxWithLabel from '@/app/components/datasets/create/website/base/checkbox-with-label'
|
|
|
|
// Hooks
|
|
import { useStore as useTagStore } from '@/app/components/base/tag-management/store'
|
|
import { useAppContext } from '@/context/app-context'
|
|
import { useExternalApiPanel } from '@/context/external-api-panel-context'
|
|
import { useGlobalPublicStore } from '@/context/global-public-context'
|
|
import useDocumentTitle from '@/hooks/use-document-title'
|
|
|
|
const List = () => {
|
|
const { t } = useTranslation()
|
|
const { systemFeatures } = useGlobalPublicStore()
|
|
const router = useRouter()
|
|
const { currentWorkspace, isCurrentWorkspaceOwner } = useAppContext()
|
|
const showTagManagementModal = useTagStore(s => s.showTagManagementModal)
|
|
const { showExternalApiPanel, setShowExternalApiPanel } = useExternalApiPanel()
|
|
const [includeAll, { toggle: toggleIncludeAll }] = useBoolean(false)
|
|
useDocumentTitle(t('dataset.knowledge'))
|
|
|
|
const [keywords, setKeywords] = useState('')
|
|
const [searchKeywords, setSearchKeywords] = useState('')
|
|
const { run: handleSearch } = useDebounceFn(() => {
|
|
setSearchKeywords(keywords)
|
|
}, { wait: 500 })
|
|
const handleKeywordsChange = (value: string) => {
|
|
setKeywords(value)
|
|
handleSearch()
|
|
}
|
|
const [tagFilterValue, setTagFilterValue] = useState<string[]>([])
|
|
const [tagIDs, setTagIDs] = useState<string[]>([])
|
|
const { run: handleTagsUpdate } = useDebounceFn(() => {
|
|
setTagIDs(tagFilterValue)
|
|
}, { wait: 500 })
|
|
const handleTagsChange = (value: string[]) => {
|
|
setTagFilterValue(value)
|
|
handleTagsUpdate()
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (currentWorkspace.role === 'normal')
|
|
return router.replace('/apps')
|
|
}, [currentWorkspace, router])
|
|
|
|
return (
|
|
<div className='scroll-container relative flex grow flex-col overflow-y-auto bg-background-body'>
|
|
<div className='sticky top-0 z-10 flex items-center justify-end gap-x-1 bg-background-body px-12 pb-2 pt-4'>
|
|
<div className='flex items-center justify-center gap-2'>
|
|
{isCurrentWorkspaceOwner && (
|
|
<CheckboxWithLabel
|
|
isChecked={includeAll}
|
|
onChange={toggleIncludeAll}
|
|
label={t('dataset.allKnowledge')}
|
|
labelClassName='system-md-regular text-text-secondary'
|
|
className='mr-2'
|
|
tooltip={t('dataset.allKnowledgeDescription') as string}
|
|
/>
|
|
)}
|
|
<TagFilter type='knowledge' value={tagFilterValue} onChange={handleTagsChange} />
|
|
<Input
|
|
showLeftIcon
|
|
showClearIcon
|
|
wrapperClassName='w-[200px]'
|
|
value={keywords}
|
|
onChange={e => handleKeywordsChange(e.target.value)}
|
|
onClear={() => handleKeywordsChange('')}
|
|
/>
|
|
<div className='h-4 w-[1px] bg-divider-regular' />
|
|
<Button
|
|
className='shadows-shadow-xs gap-0.5'
|
|
onClick={() => setShowExternalApiPanel(true)}
|
|
>
|
|
<ApiConnectionMod className='h-4 w-4 text-components-button-secondary-text' />
|
|
<div className='system-sm-medium flex items-center justify-center gap-1 px-0.5 text-components-button-secondary-text'>{t('dataset.externalAPIPanelTitle')}</div>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<Datasets tags={tagIDs} keywords={searchKeywords} includeAll={includeAll} />
|
|
{!systemFeatures.branding.enabled && <DatasetFooter />}
|
|
{showTagManagementModal && (
|
|
<TagManagementModal type='knowledge' show={showTagManagementModal} />
|
|
)}
|
|
|
|
{showExternalApiPanel && <ExternalAPIPanel onClose={() => setShowExternalApiPanel(false)} />}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default List
|