mirror of
https://github.com/langgenius/dify.git
synced 2025-10-27 08:58:46 +00:00
feat: enhance online drive connection UI and add localization for connection status in dataset pipeline
This commit is contained in:
parent
3a9c79b09a
commit
2a25ca2b2c
@ -23,7 +23,7 @@ const NotionConnector = ({ onSetting }: NotionConnectorProps) => {
|
||||
</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>
|
||||
<Button variant='primary' onClick={onSetting}>{t('datasetCreation.stepOne.connect')}</Button>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
@ -57,6 +57,7 @@ export const useDatasourceOptions = (pipelineNodes: Node<DataSourceNodeType>[])
|
||||
data: node.data,
|
||||
})
|
||||
})
|
||||
if (process.env.NODE_ENV === 'development') {
|
||||
// todo: delete mock data
|
||||
options.push({
|
||||
label: 'Google Drive',
|
||||
@ -75,7 +76,7 @@ export const useDatasourceOptions = (pipelineNodes: Node<DataSourceNodeType>[])
|
||||
selected: false,
|
||||
},
|
||||
})
|
||||
|
||||
}
|
||||
return options
|
||||
}, [datasourceNodes])
|
||||
|
||||
|
||||
@ -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 { useToolIcon } from '@/app/components/workflow/hooks'
|
||||
import type { DataSourceNodeType } from '@/app/components/workflow/nodes/data-source/types'
|
||||
@ -5,15 +8,18 @@ import { BlockEnum } from '@/app/components/workflow/types'
|
||||
|
||||
type ConnectProps = {
|
||||
nodeData: DataSourceNodeType
|
||||
onSetting: () => void
|
||||
}
|
||||
|
||||
const Connect = ({
|
||||
nodeData,
|
||||
onSetting,
|
||||
}: ConnectProps) => {
|
||||
const { t } = useTranslation()
|
||||
const toolIcon = useToolIcon(nodeData)
|
||||
|
||||
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'>
|
||||
<BlockIcon
|
||||
type={BlockEnum.DataSource}
|
||||
@ -21,12 +27,22 @@ const Connect = ({
|
||||
size='md'
|
||||
/>
|
||||
</div>
|
||||
<p className='mb-6 text-gray-600'>
|
||||
To connect your online drive, please follow the instructions provided by your service provider.
|
||||
</p>
|
||||
<button className='rounded bg-blue-500 px-4 py-2 text-white hover:bg-blue-600'>
|
||||
Connect Now
|
||||
</button>
|
||||
<div className='flex flex-col gap-y-1'>
|
||||
<div className='flex flex-col gap-y-1 pb-3 pt-1'>
|
||||
<div className='system-md-semibold text-text-secondary'>
|
||||
<span className='relative'>
|
||||
{t('datasetPipeline.onlineDrive.notConnected', { name: nodeData.title })}
|
||||
<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>
|
||||
)
|
||||
}
|
||||
|
||||
@ -55,6 +55,7 @@ export const useDatasourceOptions = () => {
|
||||
data: node.data,
|
||||
})
|
||||
})
|
||||
if (process.env.NODE_ENV === 'development') {
|
||||
// todo: delete mock data
|
||||
options.push({
|
||||
label: 'Google Drive',
|
||||
@ -73,6 +74,7 @@ export const useDatasourceOptions = () => {
|
||||
selected: false,
|
||||
},
|
||||
})
|
||||
}
|
||||
return options
|
||||
}, [datasourceNodes])
|
||||
|
||||
|
||||
@ -106,6 +106,10 @@ const translation = {
|
||||
documentSettings: {
|
||||
title: 'Document Settings',
|
||||
},
|
||||
onlineDrive: {
|
||||
notConnected: '{{name}} is not connected',
|
||||
notConnectedTip: 'To sync with {{name}}, connection to {{name}} must be established first.',
|
||||
},
|
||||
}
|
||||
|
||||
export default translation
|
||||
|
||||
@ -106,6 +106,10 @@ const translation = {
|
||||
documentSettings: {
|
||||
title: '文档设置',
|
||||
},
|
||||
onlineDrive: {
|
||||
notConnected: '{{name}} 未绑定',
|
||||
notConnectedTip: '同步 {{name}} 内容前, 须先绑定 {{name}}。',
|
||||
},
|
||||
}
|
||||
|
||||
export default translation
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user