'use client' import React, { useState, useCallback, useEffect } from 'react' import { useTranslation } from 'react-i18next' import { useBoolean } from 'ahooks' import type { DataSet, File, createDocumentResponse } from '@/models/datasets' import { fetchTenantInfo } from '@/service/common' import { fetchDataDetail } from '@/service/datasets' import StepsNavBar from './steps-nav-bar' import StepOne from './step-one' import StepTwo from './step-two' import StepThree from './step-three' import AccountSetting from '@/app/components/header/account-setting' import AppUnavailable from '../../base/app-unavailable' type DatasetUpdateFormProps = { datasetId?: string; } const DatasetUpdateForm = ({ datasetId }: DatasetUpdateFormProps) => { const { t } = useTranslation() const [hasSetAPIKEY, setHasSetAPIKEY] = useState(true) const [isShowSetAPIKey, { setTrue: showSetAPIKey, setFalse: hideSetAPIkey }] = useBoolean() const [step, setStep] = useState(1) const [indexingTypeCache, setIndexTypeCache] = useState('') const [file, setFile] = useState() const [result, setResult] = useState() const [hasError, setHasError] = useState(false) const updateFile = (file?: File) => { setFile(file) } 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) } useEffect(() => { checkAPIKey() }, []) const [detail, setDetail] = useState(null) useEffect(() => { (async () => { if (datasetId) { try { const detail = await fetchDataDetail(datasetId) setDetail(detail) } catch (e) { setHasError(true) } } })() }, [datasetId]) if (hasError) { return } return (
{step === 1 && } {(step === 2 && (!datasetId || (datasetId && !!detail))) && } {step === 3 && }
{isShowSetAPIKey && { await checkAPIKey() hideSetAPIkey() }} />}
) } export default DatasetUpdateForm