| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 | 
							- 'use client'
 
- import React, { useMemo, useState } from 'react'
 
- import { useTranslation } from 'react-i18next'
 
- import { RiArrowRightLine, RiFolder6Line } from '@remixicon/react'
 
- import FilePreview from '../file-preview'
 
- import FileUploader from '../file-uploader'
 
- import NotionPagePreview from '../notion-page-preview'
 
- import EmptyDatasetCreationModal from '../empty-dataset-creation-modal'
 
- import Website from '../website'
 
- import WebsitePreview from '../website/preview'
 
- import s from './index.module.css'
 
- import cn from '@/utils/classnames'
 
- import type { CrawlOptions, CrawlResultItem, FileItem } from '@/models/datasets'
 
- import type { DataSourceProvider, NotionPage } from '@/models/common'
 
- import { DataSourceType } from '@/models/datasets'
 
- import Button from '@/app/components/base/button'
 
- import { NotionPageSelector } from '@/app/components/base/notion-page-selector'
 
- import { useDatasetDetailContext } from '@/context/dataset-detail'
 
- import { useProviderContext } from '@/context/provider-context'
 
- import VectorSpaceFull from '@/app/components/billing/vector-space-full'
 
- import classNames from '@/utils/classnames'
 
- import { Icon3Dots } from '@/app/components/base/icons/src/vender/line/others'
 
- type IStepOneProps = {
 
-   datasetId?: string
 
-   dataSourceType?: DataSourceType
 
-   dataSourceTypeDisable: boolean
 
-   hasConnection: boolean
 
-   onSetting: () => void
 
-   files: FileItem[]
 
-   updateFileList: (files: FileItem[]) => void
 
-   updateFile: (fileItem: FileItem, progress: number, list: FileItem[]) => void
 
-   notionPages?: NotionPage[]
 
-   updateNotionPages: (value: NotionPage[]) => void
 
-   onStepChange: () => void
 
-   changeType: (type: DataSourceType) => void
 
-   websitePages?: CrawlResultItem[]
 
-   updateWebsitePages: (value: CrawlResultItem[]) => void
 
-   onWebsiteCrawlProviderChange: (provider: DataSourceProvider) => void
 
-   onWebsiteCrawlJobIdChange: (jobId: string) => void
 
-   crawlOptions: CrawlOptions
 
-   onCrawlOptionsChange: (payload: CrawlOptions) => void
 
- }
 
- type NotionConnectorProps = {
 
-   onSetting: () => void
 
- }
 
- export const NotionConnector = ({ onSetting }: NotionConnectorProps) => {
 
-   const { t } = useTranslation()
 
-   return (
 
-     <div className='flex w-[640px] flex-col items-start rounded-2xl bg-workflow-process-bg p-6'>
 
-       <span className={cn(s.notionIcon, 'mb-2 h-12 w-12 rounded-[10px] border-[0.5px] border-components-card-border p-3 shadow-lg shadow-shadow-shadow-5')} />
 
-       <div className='mb-1 flex flex-col gap-y-1 pb-3 pt-1'>
 
-         <span className='system-md-semibold text-text-secondary'>
 
-           {t('datasetCreation.stepOne.notionSyncTitle')}
 
-           <Icon3Dots className='relative -left-1.5 -top-2.5 inline h-4 w-4 text-text-secondary' />
 
-         </span>
 
-         <div className='system-sm-regular text-text-tertiary'>{t('datasetCreation.stepOne.notionSyncTip')}</div>
 
-       </div>
 
-       <Button className='h-8' variant='primary' onClick={onSetting}>{t('datasetCreation.stepOne.connect')}</Button>
 
-     </div>
 
-   )
 
- }
 
- const StepOne = ({
 
-   datasetId,
 
-   dataSourceType: inCreatePageDataSourceType,
 
-   dataSourceTypeDisable,
 
-   changeType,
 
-   hasConnection,
 
-   onSetting,
 
-   onStepChange,
 
-   files,
 
-   updateFileList,
 
-   updateFile,
 
-   notionPages = [],
 
-   updateNotionPages,
 
-   websitePages = [],
 
-   updateWebsitePages,
 
-   onWebsiteCrawlProviderChange,
 
-   onWebsiteCrawlJobIdChange,
 
-   crawlOptions,
 
-   onCrawlOptionsChange,
 
- }: IStepOneProps) => {
 
-   const { dataset } = useDatasetDetailContext()
 
-   const [showModal, setShowModal] = useState(false)
 
-   const [currentFile, setCurrentFile] = useState<File | undefined>()
 
-   const [currentNotionPage, setCurrentNotionPage] = useState<NotionPage | undefined>()
 
-   const [currentWebsite, setCurrentWebsite] = useState<CrawlResultItem | undefined>()
 
-   const { t } = useTranslation()
 
-   const modalShowHandle = () => setShowModal(true)
 
-   const modalCloseHandle = () => setShowModal(false)
 
-   const updateCurrentFile = (file: File) => {
 
-     setCurrentFile(file)
 
-   }
 
-   const hideFilePreview = () => {
 
-     setCurrentFile(undefined)
 
-   }
 
-   const updateCurrentPage = (page: NotionPage) => {
 
-     setCurrentNotionPage(page)
 
-   }
 
-   const hideNotionPagePreview = () => {
 
-     setCurrentNotionPage(undefined)
 
-   }
 
-   const hideWebsitePreview = () => {
 
-     setCurrentWebsite(undefined)
 
-   }
 
-   const shouldShowDataSourceTypeList = !datasetId || (datasetId && !dataset?.data_source_type)
 
-   const isInCreatePage = shouldShowDataSourceTypeList
 
-   const dataSourceType = isInCreatePage ? inCreatePageDataSourceType : dataset?.data_source_type
 
-   const { plan, enableBilling } = useProviderContext()
 
-   const allFileLoaded = (files.length > 0 && files.every(file => file.file.id))
 
-   const hasNotin = notionPages.length > 0
 
-   const isVectorSpaceFull = plan.usage.vectorSpace >= plan.total.vectorSpace
 
-   const isShowVectorSpaceFull = (allFileLoaded || hasNotin) && isVectorSpaceFull && enableBilling
 
-   const notSupportBatchUpload = enableBilling && plan.type === 'sandbox'
 
-   const nextDisabled = useMemo(() => {
 
-     if (!files.length)
 
-       return true
 
-     if (files.some(file => !file.file.id))
 
-       return true
 
-     if (isShowVectorSpaceFull)
 
-       return true
 
-     return false
 
-   }, [files, isShowVectorSpaceFull])
 
-   return (
 
-     <div className='h-full w-full overflow-x-auto'>
 
-       <div className='flex h-full w-full min-w-[1440px]'>
 
-         <div className='relative h-full w-1/2 overflow-y-auto'>
 
-           <div className='flex justify-end'>
 
-             <div className={classNames(s.form)}>
 
-               {
 
-                 shouldShowDataSourceTypeList && (
 
-                   <div className={classNames(s.stepHeader, 'text-text-secondary system-md-semibold')}>
 
-                     {t('datasetCreation.steps.one')}
 
-                   </div>
 
-                 )
 
-               }
 
-               {
 
-                 shouldShowDataSourceTypeList && (
 
-                   <div className='mb-8 grid grid-cols-3 gap-4'>
 
-                     <div
 
-                       className={cn(
 
-                         s.dataSourceItem,
 
-                         'system-sm-medium',
 
-                         dataSourceType === DataSourceType.FILE && s.active,
 
-                         dataSourceTypeDisable && dataSourceType !== DataSourceType.FILE && s.disabled,
 
-                       )}
 
-                       onClick={() => {
 
-                         if (dataSourceTypeDisable)
 
-                           return
 
-                         changeType(DataSourceType.FILE)
 
-                         hideFilePreview()
 
-                         hideNotionPagePreview()
 
-                       }}
 
-                     >
 
-                       <span className={cn(s.datasetIcon)} />
 
-                       <span
 
-                         title={t('datasetCreation.stepOne.dataSourceType.file')}
 
-                         className='truncate'
 
-                       >
 
-                         {t('datasetCreation.stepOne.dataSourceType.file')}
 
-                       </span>
 
-                     </div>
 
-                     <div
 
-                       className={cn(
 
-                         s.dataSourceItem,
 
-                         'system-sm-medium',
 
-                         dataSourceType === DataSourceType.NOTION && s.active,
 
-                         dataSourceTypeDisable && dataSourceType !== DataSourceType.NOTION && s.disabled,
 
-                       )}
 
-                       onClick={() => {
 
-                         if (dataSourceTypeDisable)
 
-                           return
 
-                         changeType(DataSourceType.NOTION)
 
-                         hideFilePreview()
 
-                         hideNotionPagePreview()
 
-                       }}
 
-                     >
 
-                       <span className={cn(s.datasetIcon, s.notion)} />
 
-                       <span
 
-                         title={t('datasetCreation.stepOne.dataSourceType.notion')}
 
-                         className='truncate'
 
-                       >
 
-                         {t('datasetCreation.stepOne.dataSourceType.notion')}
 
-                       </span>
 
-                     </div>
 
-                     <div
 
-                       className={cn(
 
-                         s.dataSourceItem,
 
-                         'system-sm-medium',
 
-                         dataSourceType === DataSourceType.WEB && s.active,
 
-                         dataSourceTypeDisable && dataSourceType !== DataSourceType.WEB && s.disabled,
 
-                       )}
 
-                       onClick={() => changeType(DataSourceType.WEB)}
 
-                     >
 
-                       <span className={cn(s.datasetIcon, s.web)} />
 
-                       <span
 
-                         title={t('datasetCreation.stepOne.dataSourceType.web')}
 
-                         className='truncate'
 
-                       >
 
-                         {t('datasetCreation.stepOne.dataSourceType.web')}
 
-                       </span>
 
-                     </div>
 
-                   </div>
 
-                 )
 
-               }
 
-               {dataSourceType === DataSourceType.FILE && (
 
-                 <>
 
-                   <FileUploader
 
-                     fileList={files}
 
-                     titleClassName={!shouldShowDataSourceTypeList ? 'mt-[30px] !mb-[44px] !text-lg' : undefined}
 
-                     prepareFileList={updateFileList}
 
-                     onFileListUpdate={updateFileList}
 
-                     onFileUpdate={updateFile}
 
-                     onPreview={updateCurrentFile}
 
-                     notSupportBatchUpload={notSupportBatchUpload}
 
-                   />
 
-                   {isShowVectorSpaceFull && (
 
-                     <div className='mb-4 max-w-[640px]'>
 
-                       <VectorSpaceFull />
 
-                     </div>
 
-                   )}
 
-                   <div className="flex max-w-[640px] justify-end gap-2">
 
-                     {/* <Button>{t('datasetCreation.stepOne.cancel')}</Button> */}
 
-                     <Button disabled={nextDisabled} variant='primary' onClick={onStepChange}>
 
-                       <span className="flex gap-0.5 px-[10px]">
 
-                         <span className="px-0.5">{t('datasetCreation.stepOne.button')}</span>
 
-                         <RiArrowRightLine className="size-4" />
 
-                       </span>
 
-                     </Button>
 
-                   </div>
 
-                 </>
 
-               )}
 
-               {dataSourceType === DataSourceType.NOTION && (
 
-                 <>
 
-                   {!hasConnection && <NotionConnector onSetting={onSetting} />}
 
-                   {hasConnection && (
 
-                     <>
 
-                       <div className='mb-8 w-[640px]'>
 
-                         <NotionPageSelector
 
-                           value={notionPages.map(page => page.page_id)}
 
-                           onSelect={updateNotionPages}
 
-                           onPreview={updateCurrentPage}
 
-                         />
 
-                       </div>
 
-                       {isShowVectorSpaceFull && (
 
-                         <div className='mb-4 max-w-[640px]'>
 
-                           <VectorSpaceFull />
 
-                         </div>
 
-                       )}
 
-                       <div className="flex max-w-[640px] justify-end gap-2">
 
-                         {/* <Button>{t('datasetCreation.stepOne.cancel')}</Button> */}
 
-                         <Button disabled={isShowVectorSpaceFull || !notionPages.length} variant='primary' onClick={onStepChange}>
 
-                           <span className="flex gap-0.5 px-[10px]">
 
-                             <span className="px-0.5">{t('datasetCreation.stepOne.button')}</span>
 
-                             <RiArrowRightLine className="size-4" />
 
-                           </span>
 
-                         </Button>
 
-                       </div>
 
-                     </>
 
-                   )}
 
-                 </>
 
-               )}
 
-               {dataSourceType === DataSourceType.WEB && (
 
-                 <>
 
-                   <div className={cn('mb-8 w-[640px]', !shouldShowDataSourceTypeList && 'mt-12')}>
 
-                     <Website
 
-                       onPreview={setCurrentWebsite}
 
-                       checkedCrawlResult={websitePages}
 
-                       onCheckedCrawlResultChange={updateWebsitePages}
 
-                       onCrawlProviderChange={onWebsiteCrawlProviderChange}
 
-                       onJobIdChange={onWebsiteCrawlJobIdChange}
 
-                       crawlOptions={crawlOptions}
 
-                       onCrawlOptionsChange={onCrawlOptionsChange}
 
-                     />
 
-                   </div>
 
-                   {isShowVectorSpaceFull && (
 
-                     <div className='mb-4 max-w-[640px]'>
 
-                       <VectorSpaceFull />
 
-                     </div>
 
-                   )}
 
-                   <div className="flex max-w-[640px] justify-end gap-2">
 
-                     {/* <Button>{t('datasetCreation.stepOne.cancel')}</Button> */}
 
-                     <Button disabled={isShowVectorSpaceFull || !websitePages.length} variant='primary' onClick={onStepChange}>
 
-                       <span className="flex gap-0.5 px-[10px]">
 
-                         <span className="px-0.5">{t('datasetCreation.stepOne.button')}</span>
 
-                         <RiArrowRightLine className="size-4" />
 
-                       </span>
 
-                     </Button>
 
-                   </div>
 
-                 </>
 
-               )}
 
-               {!datasetId && (
 
-                 <>
 
-                   <div className={s.dividerLine} />
 
-                   <span className="inline-flex cursor-pointer items-center text-[13px] leading-4 text-text-accent" onClick={modalShowHandle}>
 
-                     <RiFolder6Line className="mr-1 size-4" />
 
-                     {t('datasetCreation.stepOne.emptyDatasetCreation')}
 
-                   </span>
 
-                 </>
 
-               )}
 
-             </div>
 
-             <EmptyDatasetCreationModal show={showModal} onHide={modalCloseHandle} />
 
-           </div>
 
-         </div>
 
-         <div className='h-full w-1/2 overflow-y-auto'>
 
-           {currentFile && <FilePreview file={currentFile} hidePreview={hideFilePreview} />}
 
-           {currentNotionPage && <NotionPagePreview currentPage={currentNotionPage} hidePreview={hideNotionPagePreview} />}
 
-           {currentWebsite && <WebsitePreview payload={currentWebsite} hidePreview={hideWebsitePreview} />}
 
-         </div>
 
-       </div>
 
-     </div>
 
-   )
 
- }
 
- export default StepOne
 
 
  |