refactor: replace Container with List, update DatasetCard z-index, and implement useDatasetList for data fetching
parent
2670557258
commit
019ef74bf2
@ -1,7 +1,7 @@
|
|||||||
import Container from '../../components/datasets/list/container'
|
import List from '../../components/datasets/list'
|
||||||
|
|
||||||
const AppList = async () => {
|
const DatasetList = async () => {
|
||||||
return <Container />
|
return <List />
|
||||||
}
|
}
|
||||||
|
|
||||||
export default AppList
|
export default DatasetList
|
||||||
|
|||||||
@ -1,146 +0,0 @@
|
|||||||
'use client'
|
|
||||||
|
|
||||||
// Libraries
|
|
||||||
import { useEffect, useMemo, useRef, useState } from 'react'
|
|
||||||
import { useRouter } from 'next/navigation'
|
|
||||||
import { useTranslation } from 'react-i18next'
|
|
||||||
import { useBoolean, useDebounceFn } from 'ahooks'
|
|
||||||
import { useQuery } from '@tanstack/react-query'
|
|
||||||
|
|
||||||
// Components
|
|
||||||
import ExternalAPIPanel from '../external-api/external-api-panel'
|
|
||||||
import Datasets from './datasets'
|
|
||||||
import DatasetFooter from './dataset-footer'
|
|
||||||
import ApiServer from '../../develop/ApiServer'
|
|
||||||
import Doc from './doc'
|
|
||||||
import SegmentedControl from '@/app/components/base/segmented-control'
|
|
||||||
import { RiBook2Line, RiTerminalBoxLine } from '@remixicon/react'
|
|
||||||
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'
|
|
||||||
|
|
||||||
// Services
|
|
||||||
import { fetchDatasetApiBaseUrl } from '@/service/datasets'
|
|
||||||
|
|
||||||
// Hooks
|
|
||||||
import { useTabSearchParams } from '@/hooks/use-tab-searchparams'
|
|
||||||
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'
|
|
||||||
|
|
||||||
const Container = () => {
|
|
||||||
const { t } = useTranslation()
|
|
||||||
const router = useRouter()
|
|
||||||
const { currentWorkspace, isCurrentWorkspaceOwner } = useAppContext()
|
|
||||||
const showTagManagementModal = useTagStore(s => s.showTagManagementModal)
|
|
||||||
const { showExternalApiPanel, setShowExternalApiPanel } = useExternalApiPanel()
|
|
||||||
const [includeAll, { toggle: toggleIncludeAll }] = useBoolean(false)
|
|
||||||
|
|
||||||
document.title = `${t('dataset.knowledge')} - Dify`
|
|
||||||
|
|
||||||
const options = useMemo(() => {
|
|
||||||
return [
|
|
||||||
{ value: 'dataset', text: t('dataset.datasets'), Icon: RiBook2Line },
|
|
||||||
...(currentWorkspace.role === 'dataset_operator' ? [] : [{
|
|
||||||
value: 'api', text: t('dataset.datasetsApi'), Icon: RiTerminalBoxLine,
|
|
||||||
}]),
|
|
||||||
]
|
|
||||||
}, [currentWorkspace.role, t])
|
|
||||||
|
|
||||||
const [activeTab, setActiveTab] = useTabSearchParams({
|
|
||||||
defaultTab: 'dataset',
|
|
||||||
})
|
|
||||||
const containerRef = useRef<HTMLDivElement>(null)
|
|
||||||
const { data } = useQuery(
|
|
||||||
{
|
|
||||||
queryKey: ['datasetApiBaseInfo'],
|
|
||||||
queryFn: () => fetchDatasetApiBaseUrl('/datasets/api-base-info'),
|
|
||||||
enabled: activeTab !== 'dataset',
|
|
||||||
},
|
|
||||||
)
|
|
||||||
|
|
||||||
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 ref={containerRef} 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-between gap-x-1 bg-background-body px-12 pb-2 pt-4'>
|
|
||||||
<SegmentedControl
|
|
||||||
value={activeTab}
|
|
||||||
onChange={newActiveTab => setActiveTab(newActiveTab as string)}
|
|
||||||
options={options}
|
|
||||||
size='large'
|
|
||||||
activeClassName='text-text-primary'
|
|
||||||
/>
|
|
||||||
{activeTab === 'dataset' && (
|
|
||||||
<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>
|
|
||||||
)}
|
|
||||||
{activeTab === 'api' && data && <ApiServer apiBaseUrl={data.api_base_url || ''} />}
|
|
||||||
</div>
|
|
||||||
{activeTab === 'dataset' && (
|
|
||||||
<>
|
|
||||||
<Datasets containerRef={containerRef} tags={tagIDs} keywords={searchKeywords} includeAll={includeAll} />
|
|
||||||
<DatasetFooter />
|
|
||||||
{showTagManagementModal && (
|
|
||||||
<TagManagementModal type='knowledge' show={showTagManagementModal} />
|
|
||||||
)}
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
{activeTab === 'api' && data && <Doc apiBaseUrl={data.api_base_url || ''} />}
|
|
||||||
|
|
||||||
{showExternalApiPanel && <ExternalAPIPanel onClose={() => setShowExternalApiPanel(false)} />}
|
|
||||||
</div>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Container
|
|
||||||
@ -0,0 +1,32 @@
|
|||||||
|
import { useInfiniteQuery } from '@tanstack/react-query'
|
||||||
|
import type { DataSetListResponse, DatasetListRequest } from '@/models/datasets'
|
||||||
|
import { get } from '../base'
|
||||||
|
import { useReset } from '../use-base'
|
||||||
|
import qs from 'qs'
|
||||||
|
|
||||||
|
const NAME_SPACE = 'dataset'
|
||||||
|
|
||||||
|
const DatasetListKey = [NAME_SPACE, 'list']
|
||||||
|
|
||||||
|
export const useDatasetList = (params: DatasetListRequest) => {
|
||||||
|
const { initialPage, tag_ids, limit, include_all, keyword } = params
|
||||||
|
return useInfiniteQuery({
|
||||||
|
queryKey: [...DatasetListKey, initialPage, tag_ids, limit, include_all, keyword],
|
||||||
|
queryFn: ({ pageParam = 1 }) => {
|
||||||
|
const urlParams = qs.stringify({
|
||||||
|
tag_ids,
|
||||||
|
limit,
|
||||||
|
include_all,
|
||||||
|
keyword,
|
||||||
|
page: pageParam,
|
||||||
|
}, { indices: false })
|
||||||
|
return get<DataSetListResponse>(`/datasets?${urlParams}`)
|
||||||
|
},
|
||||||
|
getNextPageParam: lastPage => lastPage.has_more ? lastPage.page + 1 : null,
|
||||||
|
initialPageParam: initialPage,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export const useResetDatasetList = () => {
|
||||||
|
return useReset([...DatasetListKey])
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue