amis-editor 4.1.0-beta.1 → 4.1.0-beta.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (195) hide show
  1. package/dist/component/Breadcrumb.d.ts +23 -2
  2. package/dist/component/Editor.d.ts +19 -0
  3. package/dist/component/Panel/RenderersPanel.d.ts +1 -2
  4. package/dist/component/RegionWrapper.d.ts +14 -7
  5. package/dist/component/RendererThumb.d.ts +5 -5
  6. package/dist/component/VRenderer.d.ts +4 -0
  7. package/dist/component/base/SearchCustomRendererPanel.d.ts +15 -0
  8. package/dist/component/base/SearchPanel.d.ts +83 -0
  9. package/dist/component/base/SearchRendererPanel.d.ts +2 -42
  10. package/dist/exports.min.js +1 -1
  11. package/dist/index.d.ts +4 -1
  12. package/dist/index.min.js +1 -1
  13. package/dist/manager.d.ts +14 -3
  14. package/dist/plugin/Card.d.ts +1 -0
  15. package/dist/plugin/Cards.d.ts +1 -0
  16. package/dist/plugin/Carousel.d.ts +1 -0
  17. package/dist/plugin/Chart.d.ts +1 -0
  18. package/dist/plugin/Collapse.d.ts +1 -0
  19. package/dist/plugin/Custom.d.ts +3 -0
  20. package/dist/plugin/CustomRegion.d.ts +43 -0
  21. package/dist/plugin/Flex.d.ts +1 -0
  22. package/dist/plugin/Form/Control.d.ts +1 -0
  23. package/dist/plugin/Form/InputURL.d.ts +1 -0
  24. package/dist/plugin/Grid.d.ts +1 -0
  25. package/dist/plugin/HBox.d.ts +1 -0
  26. package/dist/plugin/Json.d.ts +1 -0
  27. package/dist/plugin/List.d.ts +1 -0
  28. package/dist/plugin/Mapping.d.ts +1 -0
  29. package/dist/plugin/Markdown.d.ts +1 -0
  30. package/dist/plugin/Nav.d.ts +1 -0
  31. package/dist/plugin/Panel/Outline.d.ts +8 -0
  32. package/dist/plugin/Progress.d.ts +1 -0
  33. package/dist/plugin/QRCode.d.ts +1 -0
  34. package/dist/plugin/Reset.d.ts +0 -1
  35. package/dist/plugin/Service.d.ts +1 -0
  36. package/dist/plugin/Sparkline.d.ts +1 -0
  37. package/dist/plugin/Status.d.ts +1 -0
  38. package/dist/plugin/Steps.d.ts +1 -0
  39. package/dist/plugin/Submit.d.ts +0 -1
  40. package/dist/plugin/TableView.d.ts +1 -0
  41. package/dist/plugin/Tasks.d.ts +1 -0
  42. package/dist/plugin/TooltipWrapper.d.ts +1 -0
  43. package/dist/plugin/Video.d.ts +1 -0
  44. package/dist/plugin/WebComponent.d.ts +1 -0
  45. package/dist/plugin/Wrapper.d.ts +1 -0
  46. package/dist/plugin.d.ts +2 -2
  47. package/dist/store/editor.d.ts +20 -2
  48. package/dist/store/node.d.ts +6 -0
  49. package/dist/style.css +1 -1
  50. package/dist/util.d.ts +7 -2
  51. package/package.json +6 -3
  52. package/src/component/schemaTpl.tsx +2155 -0
  53. package/src/plugin/.DS_Store +0 -0
  54. package/src/plugin/Alert.tsx +87 -0
  55. package/src/plugin/AnchorNav.tsx +233 -0
  56. package/src/plugin/Audio.tsx +161 -0
  57. package/src/plugin/Avatar.tsx +77 -0
  58. package/src/plugin/Breadcrumb.tsx +107 -0
  59. package/src/plugin/Button.tsx +283 -0
  60. package/src/plugin/ButtonGroup.tsx +88 -0
  61. package/src/plugin/ButtonToolbar.tsx +89 -0
  62. package/src/plugin/CRUD.tsx +1832 -0
  63. package/src/plugin/Card.tsx +290 -0
  64. package/src/plugin/Cards.tsx +315 -0
  65. package/src/plugin/Carousel.tsx +386 -0
  66. package/src/plugin/Chart.tsx +218 -0
  67. package/src/plugin/CodeView.tsx +60 -0
  68. package/src/plugin/Collapse.tsx +143 -0
  69. package/src/plugin/CollapseGroup.tsx +167 -0
  70. package/src/plugin/Container.tsx +44 -0
  71. package/src/plugin/Custom.tsx +128 -0
  72. package/src/plugin/CustomRegion.tsx +150 -0
  73. package/src/plugin/Date.tsx +81 -0
  74. package/src/plugin/Datetime.tsx +75 -0
  75. package/src/plugin/Dialog.tsx +178 -0
  76. package/src/plugin/Divider.tsx +36 -0
  77. package/src/plugin/Drawer.tsx +217 -0
  78. package/src/plugin/DropDownButton.tsx +234 -0
  79. package/src/plugin/Each.tsx +152 -0
  80. package/src/plugin/ErrorRenderer.tsx +15 -0
  81. package/src/plugin/Flex.tsx +156 -0
  82. package/src/plugin/Form/ButtonGroupSelect.tsx +86 -0
  83. package/src/plugin/Form/ButtonToolbar.tsx +121 -0
  84. package/src/plugin/Form/ChainedSelect.tsx +70 -0
  85. package/src/plugin/Form/Checkbox.tsx +87 -0
  86. package/src/plugin/Form/Checkboxes.tsx +167 -0
  87. package/src/plugin/Form/CodeEditor.tsx +91 -0
  88. package/src/plugin/Form/Combo.tsx +582 -0
  89. package/src/plugin/Form/ConditionBuilder.tsx +324 -0
  90. package/src/plugin/Form/Control.tsx +139 -0
  91. package/src/plugin/Form/DiffEditor.tsx +117 -0
  92. package/src/plugin/Form/FieldSet.tsx +175 -0
  93. package/src/plugin/Form/Form.tsx +692 -0
  94. package/src/plugin/Form/Formula.tsx +91 -0
  95. package/src/plugin/Form/Group.tsx +300 -0
  96. package/src/plugin/Form/Hidden.tsx +56 -0
  97. package/src/plugin/Form/InputArray.tsx +228 -0
  98. package/src/plugin/Form/InputCity.tsx +93 -0
  99. package/src/plugin/Form/InputColor.tsx +123 -0
  100. package/src/plugin/Form/InputDate.tsx +175 -0
  101. package/src/plugin/Form/InputDateRange.tsx +225 -0
  102. package/src/plugin/Form/InputDateTime.tsx +183 -0
  103. package/src/plugin/Form/InputDateTimeRange.tsx +221 -0
  104. package/src/plugin/Form/InputEmail.tsx +33 -0
  105. package/src/plugin/Form/InputExcel.tsx +85 -0
  106. package/src/plugin/Form/InputFile.tsx +228 -0
  107. package/src/plugin/Form/InputGroup.tsx +105 -0
  108. package/src/plugin/Form/InputImage.tsx +277 -0
  109. package/src/plugin/Form/InputKV.tsx +72 -0
  110. package/src/plugin/Form/InputMonth.tsx +35 -0
  111. package/src/plugin/Form/InputMonthRange.tsx +195 -0
  112. package/src/plugin/Form/InputNumber.tsx +97 -0
  113. package/src/plugin/Form/InputPassword.tsx +33 -0
  114. package/src/plugin/Form/InputQuarter.tsx +35 -0
  115. package/src/plugin/Form/InputQuarterRange.tsx +195 -0
  116. package/src/plugin/Form/InputRange.tsx +121 -0
  117. package/src/plugin/Form/InputRating.tsx +78 -0
  118. package/src/plugin/Form/InputRepeat.tsx +69 -0
  119. package/src/plugin/Form/InputRichText.tsx +197 -0
  120. package/src/plugin/Form/InputSubForm.tsx +198 -0
  121. package/src/plugin/Form/InputTable.tsx +434 -0
  122. package/src/plugin/Form/InputTag.tsx +81 -0
  123. package/src/plugin/Form/InputText.tsx +186 -0
  124. package/src/plugin/Form/InputTime.tsx +95 -0
  125. package/src/plugin/Form/InputTree.tsx +240 -0
  126. package/src/plugin/Form/InputURL.tsx +34 -0
  127. package/src/plugin/Form/InputYear.tsx +35 -0
  128. package/src/plugin/Form/Item.tsx +325 -0
  129. package/src/plugin/Form/ListSelect.tsx +84 -0
  130. package/src/plugin/Form/LocationPicker.tsx +75 -0
  131. package/src/plugin/Form/MatrixCheckboxes.tsx +147 -0
  132. package/src/plugin/Form/NestedSelect.tsx +222 -0
  133. package/src/plugin/Form/Picker.tsx +217 -0
  134. package/src/plugin/Form/Radios.tsx +130 -0
  135. package/src/plugin/Form/Select.tsx +216 -0
  136. package/src/plugin/Form/Static.tsx +335 -0
  137. package/src/plugin/Form/Switch.tsx +116 -0
  138. package/src/plugin/Form/TabsTransfer.tsx +270 -0
  139. package/src/plugin/Form/Textarea.tsx +94 -0
  140. package/src/plugin/Form/Transfer.tsx +379 -0
  141. package/src/plugin/Form/TreeSelect.tsx +263 -0
  142. package/src/plugin/Form/UUID.tsx +48 -0
  143. package/src/plugin/Grid.tsx +799 -0
  144. package/src/plugin/HBox.tsx +727 -0
  145. package/src/plugin/IFrame.tsx +72 -0
  146. package/src/plugin/Image.tsx +318 -0
  147. package/src/plugin/Images.tsx +238 -0
  148. package/src/plugin/Json.tsx +76 -0
  149. package/src/plugin/Link.tsx +95 -0
  150. package/src/plugin/List.tsx +278 -0
  151. package/src/plugin/ListItem.tsx +233 -0
  152. package/src/plugin/Log.tsx +52 -0
  153. package/src/plugin/Mapping.tsx +156 -0
  154. package/src/plugin/Markdown.tsx +47 -0
  155. package/src/plugin/Nav.tsx +186 -0
  156. package/src/plugin/Operation.tsx +97 -0
  157. package/src/plugin/Others/Action.tsx +428 -0
  158. package/src/plugin/Others/BasicToolbar.tsx +591 -0
  159. package/src/plugin/Others/DataDebug.tsx +134 -0
  160. package/src/plugin/Others/TableCell.tsx +480 -0
  161. package/src/plugin/Others/Unknown.tsx +37 -0
  162. package/src/plugin/Page.tsx +308 -0
  163. package/src/plugin/Panel/AvailableRenderers.tsx +41 -0
  164. package/src/plugin/Panel/Code.tsx +44 -0
  165. package/src/plugin/Panel/Name.tsx +26 -0
  166. package/src/plugin/Panel/Outline.tsx +40 -0
  167. package/src/plugin/Panel.tsx +243 -0
  168. package/src/plugin/Plain.tsx +91 -0
  169. package/src/plugin/Progress.tsx +132 -0
  170. package/src/plugin/Property.tsx +139 -0
  171. package/src/plugin/QRCode.tsx +98 -0
  172. package/src/plugin/Reset.tsx +23 -0
  173. package/src/plugin/Service.tsx +167 -0
  174. package/src/plugin/Sparkline.tsx +40 -0
  175. package/src/plugin/Status.tsx +78 -0
  176. package/src/plugin/Steps.tsx +140 -0
  177. package/src/plugin/Submit.tsx +23 -0
  178. package/src/plugin/Table.tsx +440 -0
  179. package/src/plugin/TableView.tsx +711 -0
  180. package/src/plugin/Tabs.tsx +364 -0
  181. package/src/plugin/Tasks.tsx +276 -0
  182. package/src/plugin/Time.tsx +75 -0
  183. package/src/plugin/TooltipWrapper.tsx +193 -0
  184. package/src/plugin/Tpl.tsx +162 -0
  185. package/src/plugin/Video.tsx +160 -0
  186. package/src/plugin/WebComponent.tsx +56 -0
  187. package/src/plugin/Wizard.tsx +743 -0
  188. package/src/plugin/Wrapper.tsx +107 -0
  189. package/src/plugin.ts +1046 -0
  190. package/dist/150a58f3318ca7541ed9.png +0 -0
  191. package/dist/471adb97c322b226e589.png +0 -0
  192. package/dist/4de5f42360bc5946c3c2.png +0 -0
  193. package/dist/4e9968bba3855f088fed.png +0 -0
  194. package/dist/7f09c38ebc687fea847a.png +0 -0
  195. package/dist/c94073576487510314ea.png +0 -0
@@ -0,0 +1,582 @@
1
+ import {Button} from 'amis';
2
+ import {registerEditorPlugin} from '../../manager';
3
+ import {
4
+ BaseEventContext,
5
+ BasePlugin,
6
+ BasicSubRenderInfo,
7
+ BasicToolbarItem,
8
+ ContextMenuEventContext,
9
+ ContextMenuItem,
10
+ RendererEventContext,
11
+ SubRendererInfo
12
+ } from '../../plugin';
13
+ import {
14
+ defaultValue,
15
+ getSchemaTpl,
16
+ valuePipeOut
17
+ } from '../../component/schemaTpl';
18
+ import React from 'react';
19
+ import {diff, JSONPipeIn} from '../../../src/util';
20
+ import {JSONPipeOut} from '../../util';
21
+ import {mockValue} from '../../mocker';
22
+ import {setVariable} from 'amis/lib/utils/helper';
23
+
24
+ export class ComboControlPlugin extends BasePlugin {
25
+ // 关联渲染器名字
26
+ rendererName = 'combo';
27
+ $schema = '/schemas/ComboControlSchema.json';
28
+
29
+ // 组件名称
30
+ name = '组合输入';
31
+ isBaseComponent = true;
32
+ icon = 'fa fa-group';
33
+ description = '多个表单项的组合,可配置是否增加和删除初始设定的模板';
34
+ docLink = '/amis/zh-CN/components/form/combo';
35
+ tags = ['表单项'];
36
+ scaffold = {
37
+ type: 'combo',
38
+ label: '组合输入',
39
+ name: 'combo',
40
+ multiple: true,
41
+ items: [
42
+ {
43
+ type: 'input-text',
44
+ name: 'input-text',
45
+ placeholder: '文本'
46
+ },
47
+
48
+ {
49
+ type: 'select',
50
+ name: 'select',
51
+ placeholder: '选项',
52
+ options: [
53
+ {
54
+ label: 'A',
55
+ value: 'a'
56
+ },
57
+ {
58
+ label: 'B',
59
+ value: 'b'
60
+ }
61
+ ]
62
+ }
63
+ ]
64
+ };
65
+ previewSchema: any = {
66
+ type: 'form',
67
+ className: 'text-left',
68
+ mode: 'horizontal',
69
+ wrapWithPanel: false,
70
+ body: [
71
+ {
72
+ ...this.scaffold,
73
+ value: [{text: 'Row 1', select: 'a'}, {}]
74
+ }
75
+ ]
76
+ };
77
+
78
+ panelTitle = '组合输入';
79
+ panelBodyCreator = (context: BaseEventContext) => {
80
+ return [
81
+ {
82
+ name: 'conditions',
83
+ type: 'button-group-select',
84
+ size: 'sm',
85
+ mode: 'inline',
86
+ className: 'block',
87
+ options: [
88
+ {
89
+ label: '固定成员类型',
90
+ value: '1'
91
+ },
92
+
93
+ {
94
+ label: '多分支',
95
+ value: '2'
96
+ }
97
+ ],
98
+ pipeIn: (value: any) => (value ? '2' : '1'),
99
+ pipeOut: (value: any) =>
100
+ value == 2
101
+ ? [
102
+ {
103
+ label: '类型名称',
104
+ test: '',
105
+ items: [
106
+ {
107
+ type: 'input-text',
108
+ label: '文本',
109
+ name: 'text'
110
+ }
111
+ ],
112
+ scaffold: {}
113
+ }
114
+ ]
115
+ : undefined
116
+ },
117
+
118
+ {
119
+ name: 'conditions',
120
+ visibleOn: 'this.conditions',
121
+ type: 'combo',
122
+ label: '分支管理',
123
+ multiple: true,
124
+ multiLine: true,
125
+ minLength: 1,
126
+ items: [
127
+ {
128
+ label: '名称',
129
+ name: 'label',
130
+ type: 'input-text',
131
+ required: true
132
+ },
133
+ {
134
+ label: '命中条件',
135
+ name: 'test',
136
+ required: true,
137
+ type: 'input-text',
138
+ placeholder: '比如: this.type === "text"',
139
+ description: '根据成员数据判断是否使用此分支'
140
+ },
141
+
142
+ {
143
+ name: 'items',
144
+ asFormItem: true,
145
+ children: ({value, onChange}: any) => {
146
+ return (
147
+ <Button
148
+ size="sm"
149
+ level="danger"
150
+ className="m-b"
151
+ block
152
+ onClick={() =>
153
+ this.manager.openSubEditor({
154
+ title: '配置子表单项',
155
+ value: value,
156
+ slot: {
157
+ type: 'form',
158
+ mode: 'normal',
159
+ body: '$$',
160
+ wrapWithPanel: false,
161
+ className: 'wrapper'
162
+ },
163
+ onChange: onChange
164
+ })
165
+ }
166
+ >
167
+ 配置子表单集合
168
+ </Button>
169
+ );
170
+ }
171
+ },
172
+ {
173
+ type: 'textarea',
174
+ name: 'scaffold',
175
+ required: true,
176
+ label: '新增初始值',
177
+ pipeOut: valuePipeOut
178
+ }
179
+ ],
180
+ scaffold: {
181
+ label: '类型名称',
182
+ test: '',
183
+ items: [
184
+ {
185
+ type: 'input-text',
186
+ label: '文本',
187
+ name: 'text'
188
+ }
189
+ ],
190
+ scaffold: {}
191
+ }
192
+ },
193
+
194
+ {
195
+ name: 'typeSwitchable',
196
+ visibleOn: 'this.conditions',
197
+ label: '是否可切换类型',
198
+ type: 'switch',
199
+ mode: 'inline',
200
+ className: 'block',
201
+ pipeIn: defaultValue(true)
202
+ },
203
+
204
+ {
205
+ name: 'items',
206
+ visibleOn: '!this.conditions',
207
+ asFormItem: true,
208
+ children: ({value, onChange}: any) => {
209
+ return (
210
+ <Button
211
+ size="sm"
212
+ level="danger"
213
+ className="m-b"
214
+ block
215
+ onClick={() => {
216
+ this.manager.openSubEditor({
217
+ title: '配置子表单集合',
218
+ value: value,
219
+ slot: {
220
+ type: 'form',
221
+ mode: 'normal',
222
+ body: '$$',
223
+ wrapWithPanel: false,
224
+ className: 'wrapper'
225
+ },
226
+ onChange: value => onChange(value)
227
+ });
228
+ }}
229
+ >
230
+ 配置子表单集合
231
+ </Button>
232
+ );
233
+ }
234
+ },
235
+
236
+ getSchemaTpl('switchDefaultValue', {
237
+ visibleOn: '!this.defaultCheckAll'
238
+ }),
239
+
240
+ {
241
+ type: 'textarea',
242
+ name: 'value',
243
+ label: '默认值',
244
+ pipeOut: valuePipeOut,
245
+ visibleOn: 'typeof this.value !== "undefined"'
246
+ },
247
+
248
+ {
249
+ label: '多行模式',
250
+ name: 'multiLine',
251
+ type: 'switch',
252
+ mode: 'inline',
253
+ className: 'w-full',
254
+ value: false,
255
+ option: '即是否要换行'
256
+ },
257
+
258
+ getSchemaTpl('multiple'),
259
+ getSchemaTpl('joinValues'),
260
+ getSchemaTpl('delimiter'),
261
+
262
+ {
263
+ type: 'switch',
264
+ name: 'flat',
265
+ mode: 'inline',
266
+ className: 'w-full',
267
+ label: '是否将值打平',
268
+ visibleOn:
269
+ 'Array.isArray(data.items) && data.items.length === 1 && data.multiple',
270
+ description:
271
+ '默认数组内的数据结构为对象,如果只有一个表单项,可以配置将值打平,那么数组内放置的就是那个表单项的值'
272
+ },
273
+
274
+ {
275
+ label: '是否可新增',
276
+ type: 'switch',
277
+ name: 'addable',
278
+ mode: 'inline',
279
+ className: 'w-full',
280
+ visibleOn: 'this.multiple',
281
+ pipeIn: defaultValue(true)
282
+ },
283
+
284
+ {
285
+ type: 'textarea',
286
+ name: 'scaffold',
287
+ label: '新增初始值',
288
+ visibleOn: 'this.multiple && this.addable !== false',
289
+ pipeOut: valuePipeOut,
290
+ pipeIn: defaultValue({})
291
+ },
292
+
293
+ {
294
+ label: '新增按钮文字',
295
+ name: 'addButtonText',
296
+ type: 'input-text',
297
+ visibleOn: 'data.addable',
298
+ pipeIn: defaultValue('新增')
299
+ },
300
+
301
+ {
302
+ label: '是否可删除',
303
+ type: 'switch',
304
+ name: 'removable',
305
+ mode: 'inline',
306
+ className: 'w-full',
307
+ visibleOn: 'this.multiple',
308
+ pipeIn: defaultValue(true)
309
+ },
310
+
311
+ getSchemaTpl('api', {
312
+ name: 'deleteApi',
313
+ label: '删除前的请求',
314
+ hiddenOn: '!data.removable'
315
+ }),
316
+
317
+ {
318
+ label: '删除确认提示',
319
+ name: 'deleteConfirmText',
320
+ type: 'input-text',
321
+ visibleOn: 'data.deleteApi',
322
+ pipeIn: defaultValue('确认要删除')
323
+ },
324
+
325
+ {
326
+ name: 'draggable',
327
+ label: '是否可拖拽排序',
328
+ type: 'switch',
329
+ visibleOn: 'this.multiple',
330
+ mode: 'inline',
331
+ className: 'w-full'
332
+ },
333
+
334
+ {
335
+ label: '拖拽排序的提示文字',
336
+ name: 'draggableTip',
337
+ type: 'input-text',
338
+ visibleOn: 'data.draggable',
339
+ pipeIn: defaultValue('可通过拖动每行中的【交换】按钮进行顺序调整')
340
+ },
341
+
342
+ {
343
+ name: 'noBorder',
344
+ label: '去掉边框',
345
+ type: 'switch',
346
+ visibleOn: 'this.multiLine',
347
+ mode: 'inline',
348
+ className: 'w-full'
349
+ },
350
+
351
+ {
352
+ name: 'minLength',
353
+ type: 'input-number',
354
+ label: '限制最小数量'
355
+ },
356
+
357
+ {
358
+ name: 'maxLength',
359
+ type: 'input-number',
360
+ label: '限制最大数量'
361
+ },
362
+
363
+ {
364
+ label: '默认消息提示',
365
+ type: 'combo',
366
+ name: 'messages',
367
+ multiLine: true,
368
+ description: '',
369
+ items: [
370
+ {
371
+ label: '有子表单项限制失败时提示',
372
+ type: 'input-text',
373
+ name: 'validateFailed'
374
+ },
375
+
376
+ {
377
+ label: '最小长度验证失败时提示',
378
+ type: 'input-text',
379
+ name: 'minLengthValidateFailed'
380
+ },
381
+
382
+ {
383
+ label: '最大长度验证失败时提示',
384
+ type: 'input-text',
385
+ name: 'maxLengthValidateFailed'
386
+ }
387
+ ]
388
+ },
389
+
390
+ {
391
+ name: 'canAccessSuperData',
392
+ label: '是否自动填充父级同名变量',
393
+ type: 'switch',
394
+ pipeIn: defaultValue(false),
395
+ mode: 'inline',
396
+ className: 'w-full'
397
+ },
398
+
399
+ {
400
+ name: 'tabsMode',
401
+ label: '采用 Tabs 展示方式',
402
+ type: 'switch',
403
+ mode: 'inline',
404
+ className: 'w-full',
405
+ pipeIn: defaultValue(false)
406
+ },
407
+
408
+ {
409
+ name: 'tabsStyle',
410
+ label: 'Tabs 的展示模式',
411
+ visibleOn: 'data.tabsMode',
412
+ type: 'list-select',
413
+ options: [
414
+ {
415
+ label: '正常',
416
+ value: 'normal'
417
+ },
418
+ {
419
+ label: '水平',
420
+ value: 'horizontal'
421
+ },
422
+ {
423
+ label: '内联',
424
+ value: 'inline'
425
+ }
426
+ ],
427
+ mode: 'inline',
428
+ className: 'w-full'
429
+ },
430
+
431
+ {
432
+ name: 'tabsLabelTpl',
433
+ label: '选项卡标题的生成模板',
434
+ visibleOn: 'data.tabsMode',
435
+ type: 'input-text',
436
+ mode: 'inline',
437
+ className: 'w-full'
438
+ },
439
+
440
+ {
441
+ name: 'lazyLoad',
442
+ label: '懒加载',
443
+ type: 'switch',
444
+ mode: 'inline',
445
+ className: 'w-full',
446
+ pipeIn: defaultValue(false),
447
+ description: '如果数据比较多,比较卡顿时,可开启此配置项'
448
+ },
449
+
450
+ {
451
+ name: 'strictMode',
452
+ label: '严格模式',
453
+ type: 'switch',
454
+ mode: 'inline',
455
+ className: 'w-full',
456
+ pipeIn: defaultValue(true),
457
+ description: '如果你希望环境变量的值实时透传到 Combo 中,请关闭此选项。'
458
+ },
459
+
460
+ {
461
+ name: 'syncFields',
462
+ visibleOn: '!data.strictMode',
463
+ label: '配置同步字段',
464
+ type: 'input-text',
465
+ multiple: true,
466
+ joinValues: false,
467
+ extractValue: true,
468
+ description:
469
+ '如果 Combo 层级比较深,底层的获取外层的数据可能不同步。但是给 combo 配置这个属性就能同步下来。'
470
+ },
471
+
472
+ {
473
+ name: 'nullable',
474
+ label: '允许为空',
475
+ type: 'switch',
476
+ mode: 'inline',
477
+ className: 'w-full',
478
+ pipeIn: defaultValue(false),
479
+ description:
480
+ '如果子表单项里面配置验证器,且又是单条模式。可以允许用户选择清空(不填)。'
481
+ },
482
+
483
+ {
484
+ name: 'items',
485
+ label: '各列 CSS 配置',
486
+ hiddenOn: 'this.multiLine',
487
+ type: 'combo',
488
+ addable: false,
489
+ removable: false,
490
+ multiple: true,
491
+ items: [
492
+ {
493
+ name: 'columnClassName',
494
+ placeholder: 'CSS 类名',
495
+ type: 'input-text'
496
+ }
497
+ ]
498
+ },
499
+ getSchemaTpl('subFormItemMode', {
500
+ visibleOn: 'this.multiLine'
501
+ }),
502
+ getSchemaTpl('subFormHorizontalMode'),
503
+ getSchemaTpl('subFormHorizontal')
504
+ ];
505
+ };
506
+
507
+ filterProps(props: any) {
508
+ props = JSONPipeOut(props);
509
+
510
+ // 至少显示一个成员,否则啥都不显示。
511
+ if (props.multiple && !props.value && !props.$ref) {
512
+ const mockedData = {};
513
+
514
+ if (Array.isArray(props.items)) {
515
+ props.items.forEach((control: any) => {
516
+ control.name &&
517
+ setVariable(mockedData, control.name, mockValue(control));
518
+ });
519
+ }
520
+
521
+ props.value = [mockedData];
522
+ }
523
+
524
+ return props;
525
+ }
526
+
527
+ buildEditorToolbar(
528
+ {id, info, schema}: BaseEventContext,
529
+ toolbars: Array<BasicToolbarItem>
530
+ ) {
531
+ if (info.renderer.name === 'combo' && !Array.isArray(schema.conditions)) {
532
+ toolbars.push({
533
+ icon: 'fa fa-expand',
534
+ order: 100,
535
+ tooltip: '配置子表单项',
536
+ onClick: this.editDetail.bind(this, id)
537
+ });
538
+ }
539
+ }
540
+
541
+ buildEditorContextMenu(
542
+ {id, schema, region, info}: ContextMenuEventContext,
543
+ menus: Array<ContextMenuItem>
544
+ ) {
545
+ if (info.renderer.name === 'combo' && !Array.isArray(schema.conditions)) {
546
+ menus.push('|', {
547
+ label: '配置成员渲染器',
548
+ onSelect: this.editDetail.bind(this, id)
549
+ });
550
+ }
551
+ }
552
+
553
+ editDetail(id: string) {
554
+ const manager = this.manager;
555
+ const store = manager.store;
556
+ const node = store.getNodeById(id);
557
+ const value = store.getValueOf(id);
558
+
559
+ node &&
560
+ value &&
561
+ this.manager.openSubEditor({
562
+ title: '配置子表单项',
563
+ value: value.items,
564
+ slot: {
565
+ type: 'form',
566
+ mode: 'normal',
567
+ body: '$$',
568
+ wrapWithPanel: false,
569
+ className: 'wrapper'
570
+ },
571
+ onChange: newValue => {
572
+ newValue = {
573
+ ...value,
574
+ items: newValue
575
+ };
576
+ manager.panelChangeValue(newValue, diff(value, newValue));
577
+ }
578
+ });
579
+ }
580
+ }
581
+
582
+ registerEditorPlugin(ComboControlPlugin);