feat: enhance online drive connection UI and add localization for connection status in dataset pipeline

This commit is contained in:
twwu 2025-06-26 14:24:50 +08:00
parent 3a9c79b09a
commit 2a25ca2b2c
6 changed files with 72 additions and 45 deletions

View File

@ -23,7 +23,7 @@ const NotionConnector = ({ onSetting }: NotionConnectorProps) => {
</span> </span>
<div className='system-sm-regular text-text-tertiary'>{t('datasetCreation.stepOne.notionSyncTip')}</div> <div className='system-sm-regular text-text-tertiary'>{t('datasetCreation.stepOne.notionSyncTip')}</div>
</div> </div>
<Button className='h-8' variant='primary' onClick={onSetting}>{t('datasetCreation.stepOne.connect')}</Button> <Button variant='primary' onClick={onSetting}>{t('datasetCreation.stepOne.connect')}</Button>
</div> </div>
) )
} }

View File

@ -57,6 +57,7 @@ export const useDatasourceOptions = (pipelineNodes: Node<DataSourceNodeType>[])
data: node.data, data: node.data,
}) })
}) })
if (process.env.NODE_ENV === 'development') {
// todo: delete mock data // todo: delete mock data
options.push({ options.push({
label: 'Google Drive', label: 'Google Drive',
@ -75,7 +76,7 @@ export const useDatasourceOptions = (pipelineNodes: Node<DataSourceNodeType>[])
selected: false, selected: false,
}, },
}) })
}
return options return options
}, [datasourceNodes]) }, [datasourceNodes])

View File

@ -1,3 +1,6 @@
import { useTranslation } from 'react-i18next'
import Button from '@/app/components/base/button'
import { Icon3Dots } from '@/app/components/base/icons/src/vender/line/others'
import BlockIcon from '@/app/components/workflow/block-icon' import BlockIcon from '@/app/components/workflow/block-icon'
import { useToolIcon } from '@/app/components/workflow/hooks' import { useToolIcon } from '@/app/components/workflow/hooks'
import type { DataSourceNodeType } from '@/app/components/workflow/nodes/data-source/types' import type { DataSourceNodeType } from '@/app/components/workflow/nodes/data-source/types'
@ -5,15 +8,18 @@ import { BlockEnum } from '@/app/components/workflow/types'
type ConnectProps = { type ConnectProps = {
nodeData: DataSourceNodeType nodeData: DataSourceNodeType
onSetting: () => void
} }
const Connect = ({ const Connect = ({
nodeData, nodeData,
onSetting,
}: ConnectProps) => { }: ConnectProps) => {
const { t } = useTranslation()
const toolIcon = useToolIcon(nodeData) const toolIcon = useToolIcon(nodeData)
return ( return (
<div className='flex flex-col p-6'> <div className='flex flex-col items-start gap-y-2 rounded-xl bg-workflow-process-bg p-6'>
<div className='flex size-12 items-center justify-center rounded-[10px] border-[0.5px] border-components-card-border bg-components-card-bg p-1 shadow-lg shadow-shadow-shadow-5'> <div className='flex size-12 items-center justify-center rounded-[10px] border-[0.5px] border-components-card-border bg-components-card-bg p-1 shadow-lg shadow-shadow-shadow-5'>
<BlockIcon <BlockIcon
type={BlockEnum.DataSource} type={BlockEnum.DataSource}
@ -21,12 +27,22 @@ const Connect = ({
size='md' size='md'
/> />
</div> </div>
<p className='mb-6 text-gray-600'> <div className='flex flex-col gap-y-1'>
To connect your online drive, please follow the instructions provided by your service provider. <div className='flex flex-col gap-y-1 pb-3 pt-1'>
</p> <div className='system-md-semibold text-text-secondary'>
<button className='rounded bg-blue-500 px-4 py-2 text-white hover:bg-blue-600'> <span className='relative'>
Connect Now {t('datasetPipeline.onlineDrive.notConnected', { name: nodeData.title })}
</button> <Icon3Dots className='absolute -right-2.5 -top-1.5 size-4 text-text-secondary' />
</span>
</div>
<div className='system-sm-regular text-text-tertiary'>
{t('datasetPipeline.onlineDrive.notConnectedTip', { name: nodeData.title })}
</div>
</div>
<Button className='w-fit' variant='primary' onClick={onSetting}>
{t('datasetCreation.stepOne.connect')}
</Button>
</div>
</div> </div>
) )
} }

View File

@ -55,6 +55,7 @@ export const useDatasourceOptions = () => {
data: node.data, data: node.data,
}) })
}) })
if (process.env.NODE_ENV === 'development') {
// todo: delete mock data // todo: delete mock data
options.push({ options.push({
label: 'Google Drive', label: 'Google Drive',
@ -73,6 +74,7 @@ export const useDatasourceOptions = () => {
selected: false, selected: false,
}, },
}) })
}
return options return options
}, [datasourceNodes]) }, [datasourceNodes])

View File

@ -106,6 +106,10 @@ const translation = {
documentSettings: { documentSettings: {
title: 'Document Settings', title: 'Document Settings',
}, },
onlineDrive: {
notConnected: '{{name}} is not connected',
notConnectedTip: 'To sync with {{name}}, connection to {{name}} must be established first.',
},
} }
export default translation export default translation

View File

@ -106,6 +106,10 @@ const translation = {
documentSettings: { documentSettings: {
title: '文档设置', title: '文档设置',
}, },
onlineDrive: {
notConnected: '{{name}} 未绑定',
notConnectedTip: '同步 {{name}} 内容前, 须先绑定 {{name}}。',
},
} }
export default translation export default translation