| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 | 
							- import type { FC } from 'react'
 - import React from 'react'
 - import { useTranslation } from 'react-i18next'
 - import useConfig from './use-config'
 - import VarList from './components/var-list'
 - import type { VariableAssignerNodeType } from './types'
 - import Field from '@/app/components/workflow/nodes/_base/components/field'
 - import Selector from '@/app/components/workflow/nodes/_base/components/selector'
 - import AddButton from '@/app/components/base/button/add-button'
 - import { ChevronDown } from '@/app/components/base/icons/src/vender/line/arrows'
 - import type { NodePanelProps } from '@/app/components/workflow/types'
 - import { VarType } from '@/app/components/workflow/types'
 - import Split from '@/app/components/workflow/nodes/_base/components/split'
 - import OutputVars, { VarItem } from '@/app/components/workflow/nodes/_base/components/output-vars'
 - 
 - const i18nPrefix = 'workflow.nodes.variableAssigner'
 - const Panel: FC<NodePanelProps<VariableAssignerNodeType>> = ({
 -   id,
 -   data,
 - }) => {
 -   const { t } = useTranslation()
 - 
 -   const {
 -     readOnly,
 -     inputs,
 -     handleOutputTypeChange,
 -     handleVarListChange,
 -     handleAddVariable,
 -     handleOnVarOpen,
 -     filterVar,
 -   } = useConfig(id, data)
 - 
 -   const typeOptions = [
 -     { label: t(`${i18nPrefix}.type.string`), value: VarType.string },
 -     { label: t(`${i18nPrefix}.type.number`), value: VarType.number },
 -     { label: t(`${i18nPrefix}.type.object`), value: VarType.object },
 -     { label: t(`${i18nPrefix}.type.array`), value: VarType.array },
 -   ]
 - 
 -   return (
 -     <div className='mt-2'>
 -       <div className='px-4 pb-4 space-y-4'>
 -         <Field
 -           title={t(`${i18nPrefix}.outputVarType`)}
 -         >
 -           <Selector
 -             readonly={readOnly}
 -             value={inputs.output_type}
 -             options={typeOptions}
 -             onChange={handleOutputTypeChange}
 -             trigger={
 -               <div className='flex items-center h-8 justify-between px-2.5 rounded-lg bg-gray-100 capitalize'>
 -                 <div className='text-[13px] font-normal text-gray-900'>{inputs.output_type}</div>
 -                 {!readOnly && <ChevronDown className='w-3.5 h-3.5 text-gray-700' />}
 -               </div>
 -             }
 -             popupClassName='!top-[36px] !w-[387px]'
 -             showChecked
 -           />
 -         </Field>
 -         <Field
 -           title={t(`${i18nPrefix}.title`)}
 -           operations={
 -             !readOnly ? <AddButton onClick={handleAddVariable} /> : undefined
 -           }
 -         >
 -           <VarList
 -             readonly={readOnly}
 -             nodeId={id}
 -             list={inputs.variables}
 -             onChange={handleVarListChange}
 -             onOpen={handleOnVarOpen}
 -             onlyLeafNodeVar
 -             filterVar={filterVar}
 -           />
 -         </Field>
 -       </div>
 -       <Split />
 -       <div className='px-4 pt-4 pb-2'>
 -         <OutputVars>
 -           <>
 -             <VarItem
 -               name='output'
 -               type={inputs.output_type}
 -               description={t(`${i18nPrefix}.outputVars.output`)}
 -             />
 -           </>
 -         </OutputVars>
 -       </div>
 -     </div>
 -   )
 - }
 - 
 - export default React.memo(Panel)
 
 
  |