mirror of
https://github.com/langgenius/dify.git
synced 2026-01-28 22:53:23 +08:00
100 lines
3.5 KiB
TypeScript
100 lines
3.5 KiB
TypeScript
import type { FC } from 'react'
|
|
import type { CommandNodeType } from './types'
|
|
import type { NodePanelProps } from '@/app/components/workflow/types'
|
|
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Field from '@/app/components/workflow/nodes/_base/components/field'
|
|
import Input from '@/app/components/workflow/nodes/_base/components/input-support-select-var'
|
|
import OutputVars, { VarItem } from '@/app/components/workflow/nodes/_base/components/output-vars'
|
|
import Split from '@/app/components/workflow/nodes/_base/components/split'
|
|
import useAvailableVarList from '@/app/components/workflow/nodes/_base/hooks/use-available-var-list'
|
|
import useConfig from './use-config'
|
|
|
|
const i18nPrefix = 'nodes.command'
|
|
|
|
const Panel: FC<NodePanelProps<CommandNodeType>> = ({
|
|
id,
|
|
data,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
|
|
const {
|
|
readOnly,
|
|
inputs,
|
|
handleWorkingDirectoryChange,
|
|
handleCommandChange,
|
|
} = useConfig(id, data)
|
|
|
|
const { availableVars, availableNodesWithParent } = useAvailableVarList(id, {
|
|
onlyLeafNodeVar: false,
|
|
filterVar: () => true,
|
|
})
|
|
|
|
return (
|
|
<div className="mt-2">
|
|
<div className="space-y-4 px-4 pb-4">
|
|
<Field
|
|
title={t(`${i18nPrefix}.workingDirectory`, { ns: 'workflow' })}
|
|
>
|
|
<Input
|
|
instanceId="command-working-directory"
|
|
className="w-full rounded-lg border border-components-input-border-active bg-components-input-bg-normal px-3 py-2 text-sm text-components-input-text-filled"
|
|
placeholder={t(`${i18nPrefix}.workingDirectoryPlaceholder`, { ns: 'workflow' }) || ''}
|
|
value={inputs.working_directory || ''}
|
|
onChange={handleWorkingDirectoryChange}
|
|
readOnly={readOnly}
|
|
nodesOutputVars={availableVars}
|
|
availableNodes={availableNodesWithParent}
|
|
/>
|
|
</Field>
|
|
<Split />
|
|
<Field
|
|
title={t(`${i18nPrefix}.command`, { ns: 'workflow' })}
|
|
required
|
|
>
|
|
<Input
|
|
instanceId="command-command"
|
|
className="min-h-[120px] w-full rounded-lg border border-components-input-border-active bg-components-input-bg-normal px-3 py-2 font-mono text-sm text-components-input-text-filled"
|
|
placeholder={t(`${i18nPrefix}.commandPlaceholder`, { ns: 'workflow' }) || ''}
|
|
promptMinHeightClassName="min-h-[120px]"
|
|
value={inputs.command || ''}
|
|
onChange={handleCommandChange}
|
|
readOnly={readOnly}
|
|
nodesOutputVars={availableVars}
|
|
availableNodes={availableNodesWithParent}
|
|
/>
|
|
</Field>
|
|
</div>
|
|
<Split />
|
|
<div>
|
|
<OutputVars>
|
|
<>
|
|
<VarItem
|
|
name="stdout"
|
|
type="string"
|
|
description={t(`${i18nPrefix}.outputVars.stdout`, { ns: 'workflow' })}
|
|
/>
|
|
<VarItem
|
|
name="stderr"
|
|
type="string"
|
|
description={t(`${i18nPrefix}.outputVars.stderr`, { ns: 'workflow' })}
|
|
/>
|
|
<VarItem
|
|
name="exit_code"
|
|
type="number"
|
|
description={t(`${i18nPrefix}.outputVars.exitCode`, { ns: 'workflow' })}
|
|
/>
|
|
<VarItem
|
|
name="pid"
|
|
type="number"
|
|
description={t(`${i18nPrefix}.outputVars.pid`, { ns: 'workflow' })}
|
|
/>
|
|
</>
|
|
</OutputVars>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Panel)
|