import { ModalForm, ProCard, ProForm, ProFormList, ProFormSelect, ProFormText } from '@ant-design/pro-components'; import { Input, InputRef, Space, Tag } from 'antd'; import React, { useRef, useState } from 'react'; /** * @author bianlanzhou * @since 2024-10-24 * @desc 函数对象 */ const FunctionObject: React.FC<{ value?: { key: string; label: string; code: string; extParams?: string[]; }[]; onChange?: ( value: { key: string; label: string; }[], ) => void; }> = ({ value, onChange }) => { const ref = useRef(null); const [newTags, setNewTags] = useState< FunctionObjectItem[] >([]); const handleInputConfirm = (functions: any) => { let tags = [...(value || [])]; functions.attributes.forEach( (item: FunctionObjectItem) => { tags = [ ...[...(value || [])], { key: `new-${tags.length}`, label: item.code, extParams: item.extParams, code: item.code }, ]; onChange?.(tags); setNewTags([]) } ) }; return ( trigger={ {(value || []).concat(newTags).map((item) => ( {item.label} ))} } title="函数配置向导" onFinish={ async (value) => { handleInputConfirm(value) return true; } } width='60vw' style={{ maxHeight: '60vh', overflowY: 'auto' }} > { if (Number.isInteger(param)) { newTags.splice(param as number, 1) } }} initialValue={value} copyIconProps={false} itemRender={({ listDom, action }, { index }) => ( {listDom} )} > (
{listDom} {action}
)} >
); } export default FunctionObject;