import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import { RiAddLine, } from '@remixicon/react' import VarList from './components/var-list' import useConfig from './use-config' import type { AssignerNodeType } from './types' import { useHandleAddOperationItem } from './hooks' import ActionButton from '@/app/components/base/action-button' import { type NodePanelProps } from '@/app/components/workflow/types' const i18nPrefix = 'workflow.nodes.assigner' const Panel: FC> = ({ id, data, }) => { const { t } = useTranslation() const handleAddOperationItem = useHandleAddOperationItem() const { readOnly, inputs, handleOperationListChanges, getAssignedVarType, getToAssignedVarType, writeModeTypesNum, writeModeTypesArr, writeModeTypes, filterAssignedVar, filterToAssignedVar, } = useConfig(id, data) const handleAddOperation = () => { const newList = handleAddOperationItem(inputs.items || []) handleOperationListChanges(newList) } return (
{t(`${i18nPrefix}.variables`)}
{ handleOperationListChanges(newList) }} filterVar={filterAssignedVar} filterToAssignedVar={filterToAssignedVar} getAssignedVarType={getAssignedVarType} writeModeTypes={writeModeTypes} writeModeTypesArr={writeModeTypesArr} writeModeTypesNum={writeModeTypesNum} getToAssignedVarType={getToAssignedVarType} />
) } export default React.memo(Panel)