function.tsx 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. import { ModalForm, ProCard, ProForm, ProFormList, ProFormSelect, ProFormText } from '@ant-design/pro-components';
  2. import { Input, InputRef, Space, Tag } from 'antd';
  3. import React, { useRef, useState } from 'react';
  4. /**
  5. * @author bianlanzhou
  6. * @since 2024-10-24
  7. * @desc 函数对象
  8. */
  9. const FunctionObject: React.FC<{
  10. value?: {
  11. key: string;
  12. label: string;
  13. code: string;
  14. extParams?: string[];
  15. }[];
  16. onChange?: (
  17. value: {
  18. key: string;
  19. label: string;
  20. }[],
  21. ) => void;
  22. }> = ({ value, onChange }) => {
  23. const ref = useRef<InputRef | null>(null);
  24. const [newTags, setNewTags] = useState<
  25. FunctionObjectItem[]
  26. >([]);
  27. const handleInputConfirm = (functions: any) => {
  28. let tags = [...(value || [])];
  29. functions.attributes.forEach(
  30. (item: FunctionObjectItem) => {
  31. tags = [
  32. ...[...(value || [])],
  33. { key: `new-${tags.length}`, label: item.code, extParams: item.extParams, code: item.code },
  34. ];
  35. onChange?.(tags);
  36. setNewTags([])
  37. }
  38. )
  39. };
  40. return (
  41. <ModalForm<FunctionObjectItem>
  42. trigger={
  43. <Space>
  44. {(value || []).concat(newTags).map((item) => (
  45. <Tag key={item.key}>{item.label}</Tag>
  46. ))}
  47. <Input
  48. ref={ref}
  49. type="text"
  50. size="middle"
  51. style={{ width: 78 }}
  52. value=''
  53. />
  54. </Space>
  55. }
  56. title="函数配置向导"
  57. onFinish={
  58. async (value) => {
  59. handleInputConfirm(value)
  60. return true;
  61. }
  62. }
  63. width='60vw'
  64. style={{ maxHeight: '60vh', overflowY: 'auto' }}
  65. >
  66. <ProFormList
  67. name="attributes"
  68. creatorButtonProps={{
  69. creatorButtonText: '函数',
  70. }}
  71. min={0}
  72. onAfterRemove={(param) => {
  73. if (Number.isInteger(param)) {
  74. newTags.splice(param as number, 1)
  75. }
  76. }}
  77. initialValue={value}
  78. copyIconProps={false}
  79. itemRender={({ listDom, action }, { index }) => (
  80. <ProCard
  81. bordered
  82. style={{ marginBlockEnd: 8 }}
  83. title={`函数 ${index + 1}`}
  84. extra={action}
  85. bodyStyle={{ paddingBlockEnd: 0 }}
  86. >
  87. {listDom}
  88. </ProCard>
  89. )}
  90. >
  91. <ProForm.Group>
  92. <ProFormSelect name="code" placeholder="请选择函数"
  93. valueEnum={{
  94. MD5: 'MD5',
  95. BASE64: 'BASE64',
  96. }}
  97. label='函数名'
  98. width='sm'
  99. rules={[
  100. {
  101. required: true,
  102. message: '请选择函数',
  103. },
  104. ]}
  105. />
  106. <ProForm.Item isListField style={{ marginBlockEnd: 0 }} label="额外参数">
  107. <ProFormList
  108. name="extParams"
  109. creatorButtonProps={{
  110. creatorButtonText: '增加',
  111. icon: false,
  112. type: 'link',
  113. style: { width: 'unset' },
  114. }}
  115. min={1}
  116. copyIconProps={false}
  117. deleteIconProps={{ tooltipText: '删除' }}
  118. itemRender={({ listDom, action }) => (
  119. <div
  120. style={{
  121. display: 'inline-flex',
  122. marginInlineEnd: 25,
  123. }}
  124. >
  125. {listDom}
  126. {action}
  127. </div>
  128. )}
  129. >
  130. <ProFormText allowClear={false} width="xs" name={['name']} />
  131. </ProFormList>
  132. </ProForm.Item>
  133. </ProForm.Group>
  134. </ProFormList>
  135. </ModalForm>
  136. );
  137. }
  138. export default FunctionObject;