mirror of
https://github.com/langgenius/dify.git
synced 2025-11-17 11:53:27 +00:00
23 lines
542 B
TypeScript
23 lines
542 B
TypeScript
|
|
import type { NodeDefault } from '../../types'
|
||
|
|
import type { DataSourceEmptyNodeType } from './types'
|
||
|
|
import { genNodeMetaData } from '@/app/components/workflow/utils'
|
||
|
|
import { BlockEnum } from '@/app/components/workflow/types'
|
||
|
|
|
||
|
|
const metaData = genNodeMetaData({
|
||
|
|
sort: -1,
|
||
|
|
type: BlockEnum.DataSourceEmpty,
|
||
|
|
isUndeletable: true,
|
||
|
|
isSingleton: true,
|
||
|
|
})
|
||
|
|
const nodeDefault: NodeDefault<DataSourceEmptyNodeType> = {
|
||
|
|
metaData,
|
||
|
|
defaultValue: {},
|
||
|
|
checkValid() {
|
||
|
|
return {
|
||
|
|
isValid: true,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
}
|
||
|
|
|
||
|
|
export default nodeDefault
|