mirror of
https://github.com/langgenius/dify.git
synced 2025-11-18 22:07:37 +00:00
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: jyong <718720800@qq.com> Co-authored-by: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: quicksand <quicksandzn@gmail.com> Co-authored-by: Jyong <76649700+JohnJyong@users.noreply.github.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: Yongtao Huang <yongtaoh2022@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: Hanqing Zhao <sherry9277@gmail.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Harry <xh001x@hotmail.com>
59 lines
2.2 KiB
TypeScript
59 lines
2.2 KiB
TypeScript
import React, { useCallback } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { RiAddCircleLine } from '@remixicon/react'
|
|
import { useCreatePipelineDataset } from '@/service/knowledge/use-create-dataset'
|
|
import { useInvalidDatasetList } from '@/service/knowledge/use-dataset'
|
|
import Toast from '@/app/components/base/toast'
|
|
import { useRouter } from 'next/navigation'
|
|
|
|
const CreateCard = () => {
|
|
const { t } = useTranslation()
|
|
const { push } = useRouter()
|
|
|
|
const { mutateAsync: createEmptyDataset } = useCreatePipelineDataset()
|
|
const invalidDatasetList = useInvalidDatasetList()
|
|
|
|
const handleCreate = useCallback(async () => {
|
|
await createEmptyDataset(undefined, {
|
|
onSuccess: (data) => {
|
|
if (data) {
|
|
const { id } = data
|
|
Toast.notify({
|
|
type: 'success',
|
|
message: t('datasetPipeline.creation.successTip'),
|
|
})
|
|
invalidDatasetList()
|
|
push(`/datasets/${id}/pipeline`)
|
|
}
|
|
},
|
|
onError: () => {
|
|
Toast.notify({
|
|
type: 'error',
|
|
message: t('datasetPipeline.creation.errorTip'),
|
|
})
|
|
},
|
|
})
|
|
}, [createEmptyDataset, push, invalidDatasetList, t])
|
|
|
|
return (
|
|
<div
|
|
className='group relative flex h-[132px] cursor-pointer flex-col rounded-xl border-[0.5px] border-components-panel-border bg-components-panel-on-panel-item-bg pb-3 shadow-xs shadow-shadow-shadow-3'
|
|
onClick={handleCreate}
|
|
>
|
|
<div className='flex items-center gap-x-3 p-4 pb-2'>
|
|
<div className='flex size-10 shrink-0 items-center justify-center rounded-[10px] border border-dashed border-divider-regular bg-background-section group-hover:border-state-accent-hover-alt group-hover:bg-state-accent-hover'>
|
|
<RiAddCircleLine className='size-5 text-text-quaternary group-hover:text-text-accent' />
|
|
</div>
|
|
<div className='system-md-semibold truncate text-text-primary'>
|
|
{t('datasetPipeline.creation.createFromScratch.title')}
|
|
</div>
|
|
</div>
|
|
<p className='system-xs-regular line-clamp-3 px-4 py-1 text-text-tertiary'>
|
|
{t('datasetPipeline.creation.createFromScratch.description')}
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(CreateCard)
|