2023-05-15 08:51:32 +08:00
|
|
|
'use client'
|
2023-06-16 21:47:51 +08:00
|
|
|
import React, { useCallback, useEffect, useState } from 'react'
|
2023-05-15 08:51:32 +08:00
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import { useBoolean } from 'ahooks'
|
2023-06-16 21:47:51 +08:00
|
|
|
import AppUnavailable from '../../base/app-unavailable'
|
2023-05-15 08:51:32 +08:00
|
|
|
import StepsNavBar from './steps-nav-bar'
|
|
|
|
import StepOne from './step-one'
|
|
|
|
import StepTwo from './step-two'
|
|
|
|
import StepThree from './step-three'
|
2023-06-16 21:47:51 +08:00
|
|
|
import { DataSourceType } from '@/models/datasets'
|
2023-06-21 09:44:01 +08:00
|
|
|
import type { DataSet, createDocumentResponse } from '@/models/datasets'
|
2023-06-16 21:47:51 +08:00
|
|
|
import { fetchDataSource, fetchTenantInfo } from '@/service/common'
|
|
|
|
import { fetchDataDetail } from '@/service/datasets'
|
|
|
|
import type { DataSourceNotionPage } from '@/models/common'
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
import AccountSetting from '@/app/components/header/account-setting'
|
2023-06-16 21:47:51 +08:00
|
|
|
|
|
|
|
type Page = DataSourceNotionPage & { workspace_id: string }
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
type DatasetUpdateFormProps = {
|
2023-06-16 21:47:51 +08:00
|
|
|
datasetId?: string
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const DatasetUpdateForm = ({ datasetId }: DatasetUpdateFormProps) => {
|
|
|
|
const { t } = useTranslation()
|
|
|
|
const [hasSetAPIKEY, setHasSetAPIKEY] = useState(true)
|
|
|
|
const [isShowSetAPIKey, { setTrue: showSetAPIKey, setFalse: hideSetAPIkey }] = useBoolean()
|
2023-06-16 21:47:51 +08:00
|
|
|
const [hasConnection, setHasConnection] = useState(true)
|
|
|
|
const [isShowDataSourceSetting, { setTrue: showDataSourceSetting, setFalse: hideDataSourceSetting }] = useBoolean()
|
|
|
|
const [dataSourceType, setDataSourceType] = useState<DataSourceType>(DataSourceType.FILE)
|
2023-05-15 08:51:32 +08:00
|
|
|
const [step, setStep] = useState(1)
|
|
|
|
const [indexingTypeCache, setIndexTypeCache] = useState('')
|
2023-06-21 09:44:01 +08:00
|
|
|
const [fileList, setFiles] = useState<any[]>([])
|
2023-05-15 08:51:32 +08:00
|
|
|
const [result, setResult] = useState<createDocumentResponse | undefined>()
|
|
|
|
const [hasError, setHasError] = useState(false)
|
|
|
|
|
2023-06-16 21:47:51 +08:00
|
|
|
const [notionPages, setNotionPages] = useState<Page[]>([])
|
|
|
|
const updateNotionPages = (value: Page[]) => {
|
|
|
|
setNotionPages(value)
|
|
|
|
}
|
|
|
|
|
2023-06-21 09:44:01 +08:00
|
|
|
const updateFileList = (preparedFiles: any) => {
|
|
|
|
setFiles(preparedFiles)
|
|
|
|
}
|
|
|
|
|
|
|
|
const updateFile = (fileItem: any, progress: number, list: any[]) => {
|
|
|
|
const targetIndex = list.findIndex((file: any) => file.fileID === fileItem.fileID)
|
|
|
|
list[targetIndex] = {
|
|
|
|
...list[targetIndex],
|
|
|
|
progress,
|
|
|
|
}
|
|
|
|
setFiles([...list])
|
|
|
|
// use follow code would cause dirty list update problem
|
|
|
|
// const newList = list.map((file) => {
|
|
|
|
// if (file.fileID === fileItem.fileID) {
|
|
|
|
// return {
|
|
|
|
// ...fileItem,
|
|
|
|
// progress,
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// return file
|
|
|
|
// })
|
|
|
|
// setFiles(newList)
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
const updateIndexingTypeCache = (type: string) => {
|
|
|
|
setIndexTypeCache(type)
|
|
|
|
}
|
|
|
|
const updateResultCache = (res?: createDocumentResponse) => {
|
|
|
|
setResult(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
const nextStep = useCallback(() => {
|
|
|
|
setStep(step + 1)
|
|
|
|
}, [step, setStep])
|
|
|
|
|
|
|
|
const changeStep = useCallback((delta: number) => {
|
|
|
|
setStep(step + delta)
|
|
|
|
}, [step, setStep])
|
|
|
|
|
|
|
|
const checkAPIKey = async () => {
|
|
|
|
const data = await fetchTenantInfo({ url: '/info' })
|
|
|
|
const hasSetKey = data.providers.some(({ is_valid }) => is_valid)
|
|
|
|
setHasSetAPIKEY(hasSetKey)
|
|
|
|
}
|
2023-06-16 21:47:51 +08:00
|
|
|
const checkNotionConnection = async () => {
|
|
|
|
const { data } = await fetchDataSource({ url: '/data-source/integrates' })
|
|
|
|
const hasConnection = data.filter(item => item.provider === 'notion') || []
|
|
|
|
setHasConnection(hasConnection.length > 0)
|
|
|
|
}
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
checkAPIKey()
|
2023-06-16 21:47:51 +08:00
|
|
|
checkNotionConnection()
|
2023-05-15 08:51:32 +08:00
|
|
|
}, [])
|
|
|
|
|
|
|
|
const [detail, setDetail] = useState<DataSet | null>(null)
|
|
|
|
useEffect(() => {
|
|
|
|
(async () => {
|
|
|
|
if (datasetId) {
|
|
|
|
try {
|
|
|
|
const detail = await fetchDataDetail(datasetId)
|
|
|
|
setDetail(detail)
|
2023-06-16 21:47:51 +08:00
|
|
|
}
|
|
|
|
catch (e) {
|
2023-05-15 08:51:32 +08:00
|
|
|
setHasError(true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})()
|
|
|
|
}, [datasetId])
|
|
|
|
|
2023-06-16 21:47:51 +08:00
|
|
|
if (hasError)
|
2023-05-15 08:51:32 +08:00
|
|
|
return <AppUnavailable code={500} unknownReason={t('datasetCreation.error.unavailable') as string} />
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='flex' style={{ height: 'calc(100vh - 56px)' }}>
|
|
|
|
<div className="flex flex-col w-56 overflow-y-auto bg-white border-r border-gray-200 shrink-0">
|
|
|
|
<StepsNavBar step={step} datasetId={datasetId} />
|
|
|
|
</div>
|
|
|
|
<div className="grow bg-white">
|
|
|
|
{step === 1 && <StepOne
|
2023-06-16 21:47:51 +08:00
|
|
|
hasConnection={hasConnection}
|
|
|
|
onSetting={showDataSourceSetting}
|
2023-05-15 08:51:32 +08:00
|
|
|
datasetId={datasetId}
|
2023-06-16 21:47:51 +08:00
|
|
|
dataSourceType={dataSourceType}
|
|
|
|
dataSourceTypeDisable={!!detail?.data_source_type}
|
|
|
|
changeType={setDataSourceType}
|
2023-06-21 09:44:01 +08:00
|
|
|
files={fileList}
|
2023-05-15 08:51:32 +08:00
|
|
|
updateFile={updateFile}
|
2023-06-21 09:44:01 +08:00
|
|
|
updateFileList={updateFileList}
|
2023-06-16 21:47:51 +08:00
|
|
|
notionPages={notionPages}
|
|
|
|
updateNotionPages={updateNotionPages}
|
2023-05-15 08:51:32 +08:00
|
|
|
onStepChange={nextStep}
|
|
|
|
/>}
|
|
|
|
{(step === 2 && (!datasetId || (datasetId && !!detail))) && <StepTwo
|
|
|
|
hasSetAPIKEY={hasSetAPIKEY}
|
|
|
|
onSetting={showSetAPIKey}
|
|
|
|
indexingType={detail?.indexing_technique || ''}
|
|
|
|
datasetId={datasetId}
|
2023-06-16 21:47:51 +08:00
|
|
|
dataSourceType={dataSourceType}
|
2023-06-21 09:44:01 +08:00
|
|
|
files={fileList.map(file => file.file)}
|
2023-06-16 21:47:51 +08:00
|
|
|
notionPages={notionPages}
|
2023-05-15 08:51:32 +08:00
|
|
|
onStepChange={changeStep}
|
|
|
|
updateIndexingTypeCache={updateIndexingTypeCache}
|
|
|
|
updateResultCache={updateResultCache}
|
|
|
|
/>}
|
|
|
|
{step === 3 && <StepThree
|
|
|
|
datasetId={datasetId}
|
|
|
|
datasetName={detail?.name}
|
|
|
|
indexingType={detail?.indexing_technique || indexingTypeCache}
|
|
|
|
creationCache={result}
|
|
|
|
/>}
|
|
|
|
</div>
|
|
|
|
{isShowSetAPIKey && <AccountSetting activeTab="provider" onCancel={async () => {
|
|
|
|
await checkAPIKey()
|
|
|
|
hideSetAPIkey()
|
|
|
|
}} />}
|
2023-06-16 21:47:51 +08:00
|
|
|
{isShowDataSourceSetting && <AccountSetting activeTab="data-source" onCancel={hideDataSourceSetting}/>}
|
2023-05-15 08:51:32 +08:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default DatasetUpdateForm
|