amis-editor 4.1.0-beta.4 → 4.2.0-beta.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (218) hide show
  1. package/dist/component/Breadcrumb.d.ts +23 -2
  2. package/dist/component/ClassNameControl.d.ts +1 -1
  3. package/dist/component/Control/APIControl.d.ts +2 -2
  4. package/dist/component/Control/OptionControl.d.ts +3 -3
  5. package/dist/component/Control/PopoverEdit.d.ts +4 -4
  6. package/dist/component/Control/ValidationControl.d.ts +1 -1
  7. package/dist/component/Editor.d.ts +20 -1
  8. package/dist/component/IFramePreview.d.ts +2 -1
  9. package/dist/component/NodeWrapper.d.ts +1 -1
  10. package/dist/component/Panel/RenderersPanel.d.ts +1 -2
  11. package/dist/component/Preview.d.ts +3 -1
  12. package/dist/component/RegionWrapper.d.ts +4 -0
  13. package/dist/component/ScaffoldModal.d.ts +1 -1
  14. package/dist/component/VRenderer.d.ts +4 -0
  15. package/dist/component/base/InputComponentName.d.ts +1 -1
  16. package/dist/component/base/SearchCustomRendererPanel.d.ts +15 -0
  17. package/dist/component/base/SearchPanel.d.ts +83 -0
  18. package/dist/component/base/SearchRendererPanel.d.ts +2 -42
  19. package/dist/component/base/ShortcutKey.d.ts +23 -0
  20. package/dist/env.d.ts +1 -1
  21. package/dist/exports.min.js +1 -1
  22. package/dist/index.d.ts +5 -1
  23. package/dist/index.min.js +1 -1
  24. package/dist/manager.d.ts +16 -4
  25. package/dist/plugin/Alert.d.ts +1 -1
  26. package/dist/plugin/Button.d.ts +1 -1
  27. package/dist/plugin/Card.d.ts +1 -0
  28. package/dist/plugin/Cards.d.ts +2 -1
  29. package/dist/plugin/Carousel.d.ts +1 -0
  30. package/dist/plugin/Chart.d.ts +1 -0
  31. package/dist/plugin/Collapse.d.ts +1 -0
  32. package/dist/plugin/Custom.d.ts +3 -0
  33. package/dist/plugin/CustomRegion.d.ts +40 -0
  34. package/dist/plugin/Dialog.d.ts +1 -1
  35. package/dist/plugin/Drawer.d.ts +1 -1
  36. package/dist/plugin/DropDownButton.d.ts +1 -1
  37. package/dist/plugin/Each.d.ts +1 -1
  38. package/dist/plugin/Flex.d.ts +1 -0
  39. package/dist/plugin/Form/Control.d.ts +1 -0
  40. package/dist/plugin/Form/Form.d.ts +19 -3
  41. package/dist/plugin/Form/Formula.d.ts +3 -3
  42. package/dist/plugin/Form/InputURL.d.ts +1 -0
  43. package/dist/plugin/Form/Switch.d.ts +2 -0
  44. package/dist/plugin/Grid.d.ts +1 -0
  45. package/dist/plugin/HBox.d.ts +1 -0
  46. package/dist/plugin/IFrame.d.ts +3 -3
  47. package/dist/plugin/Json.d.ts +1 -0
  48. package/dist/plugin/List.d.ts +2 -1
  49. package/dist/plugin/Mapping.d.ts +1 -0
  50. package/dist/plugin/Markdown.d.ts +1 -0
  51. package/dist/plugin/Nav.d.ts +1 -0
  52. package/dist/plugin/Page.d.ts +1 -1
  53. package/dist/plugin/Panel/Outline.d.ts +8 -0
  54. package/dist/plugin/Progress.d.ts +1 -0
  55. package/dist/plugin/QRCode.d.ts +1 -0
  56. package/dist/plugin/Reset.d.ts +0 -1
  57. package/dist/plugin/Service.d.ts +1 -0
  58. package/dist/plugin/Sparkline.d.ts +1 -0
  59. package/dist/plugin/Status.d.ts +1 -0
  60. package/dist/plugin/Steps.d.ts +1 -0
  61. package/dist/plugin/Submit.d.ts +0 -1
  62. package/dist/plugin/Table.d.ts +1 -1
  63. package/dist/plugin/TableView.d.ts +1 -0
  64. package/dist/plugin/Tasks.d.ts +1 -0
  65. package/dist/plugin/TooltipWrapper.d.ts +1 -0
  66. package/dist/plugin/Video.d.ts +1 -0
  67. package/dist/plugin/WebComponent.d.ts +1 -0
  68. package/dist/plugin/Wizard.d.ts +11 -2
  69. package/dist/plugin/Wrapper.d.ts +1 -0
  70. package/dist/plugin.d.ts +8 -7
  71. package/dist/store/editor.d.ts +58 -22
  72. package/dist/store/node.d.ts +6 -0
  73. package/dist/style.css +1 -1
  74. package/dist/util.d.ts +1 -1
  75. package/package.json +9 -3
  76. package/src/component/schemaTpl.tsx +2157 -0
  77. package/src/plugin/Alert.tsx +87 -0
  78. package/src/plugin/AnchorNav.tsx +233 -0
  79. package/src/plugin/Audio.tsx +154 -0
  80. package/src/plugin/Avatar.tsx +77 -0
  81. package/src/plugin/Breadcrumb.tsx +107 -0
  82. package/src/plugin/Button.tsx +281 -0
  83. package/src/plugin/ButtonGroup.tsx +85 -0
  84. package/src/plugin/ButtonToolbar.tsx +87 -0
  85. package/src/plugin/CRUD.tsx +1835 -0
  86. package/src/plugin/Card.tsx +290 -0
  87. package/src/plugin/Cards.tsx +318 -0
  88. package/src/plugin/Carousel.tsx +377 -0
  89. package/src/plugin/Chart.tsx +218 -0
  90. package/src/plugin/CodeView.tsx +60 -0
  91. package/src/plugin/Collapse.tsx +136 -0
  92. package/src/plugin/CollapseGroup.tsx +167 -0
  93. package/src/plugin/Container.tsx +40 -0
  94. package/src/plugin/Custom.tsx +128 -0
  95. package/src/plugin/CustomRegion.tsx +156 -0
  96. package/src/plugin/Date.tsx +74 -0
  97. package/src/plugin/Datetime.tsx +68 -0
  98. package/src/plugin/Dialog.tsx +176 -0
  99. package/src/plugin/Divider.tsx +36 -0
  100. package/src/plugin/Drawer.tsx +214 -0
  101. package/src/plugin/DropDownButton.tsx +235 -0
  102. package/src/plugin/Each.tsx +150 -0
  103. package/src/plugin/ErrorRenderer.tsx +15 -0
  104. package/src/plugin/Flex.tsx +151 -0
  105. package/src/plugin/Form/ButtonGroupSelect.tsx +75 -0
  106. package/src/plugin/Form/ButtonToolbar.tsx +110 -0
  107. package/src/plugin/Form/ChainedSelect.tsx +70 -0
  108. package/src/plugin/Form/Checkbox.tsx +87 -0
  109. package/src/plugin/Form/Checkboxes.tsx +167 -0
  110. package/src/plugin/Form/CodeEditor.tsx +81 -0
  111. package/src/plugin/Form/Combo.tsx +582 -0
  112. package/src/plugin/Form/ConditionBuilder.tsx +315 -0
  113. package/src/plugin/Form/Control.tsx +139 -0
  114. package/src/plugin/Form/DiffEditor.tsx +111 -0
  115. package/src/plugin/Form/FieldSet.tsx +163 -0
  116. package/src/plugin/Form/Form.tsx +687 -0
  117. package/src/plugin/Form/Formula.tsx +79 -0
  118. package/src/plugin/Form/Group.tsx +295 -0
  119. package/src/plugin/Form/Hidden.tsx +44 -0
  120. package/src/plugin/Form/InputArray.tsx +228 -0
  121. package/src/plugin/Form/InputCity.tsx +93 -0
  122. package/src/plugin/Form/InputColor.tsx +123 -0
  123. package/src/plugin/Form/InputDate.tsx +175 -0
  124. package/src/plugin/Form/InputDateRange.tsx +225 -0
  125. package/src/plugin/Form/InputDateTime.tsx +183 -0
  126. package/src/plugin/Form/InputDateTimeRange.tsx +221 -0
  127. package/src/plugin/Form/InputEmail.tsx +33 -0
  128. package/src/plugin/Form/InputExcel.tsx +85 -0
  129. package/src/plugin/Form/InputFile.tsx +221 -0
  130. package/src/plugin/Form/InputGroup.tsx +96 -0
  131. package/src/plugin/Form/InputImage.tsx +266 -0
  132. package/src/plugin/Form/InputKV.tsx +72 -0
  133. package/src/plugin/Form/InputMonth.tsx +35 -0
  134. package/src/plugin/Form/InputMonthRange.tsx +195 -0
  135. package/src/plugin/Form/InputNumber.tsx +89 -0
  136. package/src/plugin/Form/InputPassword.tsx +33 -0
  137. package/src/plugin/Form/InputQuarter.tsx +35 -0
  138. package/src/plugin/Form/InputQuarterRange.tsx +195 -0
  139. package/src/plugin/Form/InputRange.tsx +121 -0
  140. package/src/plugin/Form/InputRating.tsx +78 -0
  141. package/src/plugin/Form/InputRepeat.tsx +57 -0
  142. package/src/plugin/Form/InputRichText.tsx +186 -0
  143. package/src/plugin/Form/InputSubForm.tsx +189 -0
  144. package/src/plugin/Form/InputTable.tsx +434 -0
  145. package/src/plugin/Form/InputTag.tsx +70 -0
  146. package/src/plugin/Form/InputText.tsx +186 -0
  147. package/src/plugin/Form/InputTime.tsx +85 -0
  148. package/src/plugin/Form/InputTree.tsx +229 -0
  149. package/src/plugin/Form/InputURL.tsx +34 -0
  150. package/src/plugin/Form/InputYear.tsx +35 -0
  151. package/src/plugin/Form/Item.tsx +327 -0
  152. package/src/plugin/Form/ListSelect.tsx +73 -0
  153. package/src/plugin/Form/LocationPicker.tsx +62 -0
  154. package/src/plugin/Form/MatrixCheckboxes.tsx +136 -0
  155. package/src/plugin/Form/NestedSelect.tsx +211 -0
  156. package/src/plugin/Form/Picker.tsx +209 -0
  157. package/src/plugin/Form/Radios.tsx +119 -0
  158. package/src/plugin/Form/Select.tsx +233 -0
  159. package/src/plugin/Form/Static.tsx +322 -0
  160. package/src/plugin/Form/Switch.tsx +107 -0
  161. package/src/plugin/Form/TabsTransfer.tsx +259 -0
  162. package/src/plugin/Form/Textarea.tsx +83 -0
  163. package/src/plugin/Form/Transfer.tsx +368 -0
  164. package/src/plugin/Form/TreeSelect.tsx +263 -0
  165. package/src/plugin/Form/UUID.tsx +48 -0
  166. package/src/plugin/Grid.tsx +798 -0
  167. package/src/plugin/HBox.tsx +727 -0
  168. package/src/plugin/IFrame.tsx +70 -0
  169. package/src/plugin/Image.tsx +314 -0
  170. package/src/plugin/Images.tsx +231 -0
  171. package/src/plugin/Json.tsx +69 -0
  172. package/src/plugin/Link.tsx +93 -0
  173. package/src/plugin/List.tsx +278 -0
  174. package/src/plugin/ListItem.tsx +229 -0
  175. package/src/plugin/Log.tsx +52 -0
  176. package/src/plugin/Mapping.tsx +149 -0
  177. package/src/plugin/Markdown.tsx +47 -0
  178. package/src/plugin/Nav.tsx +184 -0
  179. package/src/plugin/Operation.tsx +95 -0
  180. package/src/plugin/Others/Action.tsx +426 -0
  181. package/src/plugin/Others/BasicToolbar.tsx +585 -0
  182. package/src/plugin/Others/DataDebug.tsx +134 -0
  183. package/src/plugin/Others/TableCell.tsx +480 -0
  184. package/src/plugin/Others/Unknown.tsx +37 -0
  185. package/src/plugin/Page.tsx +306 -0
  186. package/src/plugin/Panel/AvailableRenderers.tsx +41 -0
  187. package/src/plugin/Panel/Code.tsx +44 -0
  188. package/src/plugin/Panel/Name.tsx +26 -0
  189. package/src/plugin/Panel/Outline.tsx +40 -0
  190. package/src/plugin/Panel.tsx +243 -0
  191. package/src/plugin/Plain.tsx +84 -0
  192. package/src/plugin/Progress.tsx +125 -0
  193. package/src/plugin/Property.tsx +139 -0
  194. package/src/plugin/QRCode.tsx +96 -0
  195. package/src/plugin/Reset.tsx +23 -0
  196. package/src/plugin/Service.tsx +162 -0
  197. package/src/plugin/Sparkline.tsx +40 -0
  198. package/src/plugin/Status.tsx +76 -0
  199. package/src/plugin/Steps.tsx +128 -0
  200. package/src/plugin/Submit.tsx +23 -0
  201. package/src/plugin/Table.tsx +428 -0
  202. package/src/plugin/TableView.tsx +709 -0
  203. package/src/plugin/Tabs.tsx +362 -0
  204. package/src/plugin/Tasks.tsx +274 -0
  205. package/src/plugin/Time.tsx +68 -0
  206. package/src/plugin/TooltipWrapper.tsx +193 -0
  207. package/src/plugin/Tpl.tsx +158 -0
  208. package/src/plugin/Video.tsx +158 -0
  209. package/src/plugin/WebComponent.tsx +53 -0
  210. package/src/plugin/Wizard.tsx +740 -0
  211. package/src/plugin/Wrapper.tsx +107 -0
  212. package/src/plugin.ts +1050 -0
  213. package/dist/150a58f3318ca7541ed9.png +0 -0
  214. package/dist/471adb97c322b226e589.png +0 -0
  215. package/dist/4de5f42360bc5946c3c2.png +0 -0
  216. package/dist/4e9968bba3855f088fed.png +0 -0
  217. package/dist/7f09c38ebc687fea847a.png +0 -0
  218. package/dist/c94073576487510314ea.png +0 -0
@@ -0,0 +1,727 @@
1
+ import {Button} from 'amis';
2
+ import React from 'react';
3
+ import {registerEditorPlugin} from '../manager';
4
+ import {
5
+ BaseEventContext,
6
+ BasePlugin,
7
+ ContextMenuEventContext,
8
+ ContextMenuItem,
9
+ PluginEvent,
10
+ RendererJSONSchemaResolveEventContext,
11
+ VRendererConfig,
12
+ ResizeMoveEventContext
13
+ } from '../plugin';
14
+ import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
15
+ import {EditorNodeType} from '../store/node';
16
+ import {Schema} from 'amis/lib/types';
17
+ import {VRenderer} from '../component/VRenderer';
18
+ import {RegionWrapper as Region} from '../component/RegionWrapper';
19
+ import {JSONChangeInArray, JSONPipeIn, repeatArray} from '../util';
20
+ import {Icon} from '../icons/index';
21
+
22
+ export class HBoxPlugin extends BasePlugin {
23
+ // 关联渲染器名字
24
+ rendererName = 'hbox';
25
+ $schema = '/schemas/HBoxSchema.json';
26
+ disabledRendererPlugin = true; // 组件面板不显示
27
+
28
+ // 组件名称
29
+ name = 'HBox';
30
+ isBaseComponent = true;
31
+ icon = 'fa fa-columns';
32
+ description =
33
+ '用来实现左右排版布局,默认平均分配,可以通过 columnClassName 配置某列的宽度。';
34
+ docLink = '/amis/zh-CN/components/hbox';
35
+ tags = ['容器'];
36
+ scaffold = {
37
+ type: 'hbox',
38
+ gap: 'base',
39
+ columns: [
40
+ {
41
+ body: []
42
+ },
43
+ {
44
+ body: []
45
+ }
46
+ ]
47
+ };
48
+ previewSchema = {
49
+ type: 'hbox',
50
+ columns: [
51
+ {
52
+ type: 'tpl',
53
+ tpl: '固定宽度<br />w-xs',
54
+ columnClassName: 'bg-primary w-xs'
55
+ },
56
+ {
57
+ type: 'tpl',
58
+ tpl: '自动填满',
59
+ columnClassName: 'bg-success'
60
+ }
61
+ ]
62
+ };
63
+
64
+ panelTitle = 'HBox';
65
+ panelBodyCreator = (context: BaseEventContext) => [
66
+ getSchemaTpl('tabs', [
67
+ {
68
+ title: '常规',
69
+ body: [
70
+ getSchemaTpl('fieldSet', {
71
+ title: '插入',
72
+ collapsable: false,
73
+ body: [
74
+ {
75
+ type: 'wrapper',
76
+ size: 'none',
77
+ className: 'grid grid-cols-2 gap-4 mb-4',
78
+ body: [
79
+ {
80
+ children: (
81
+ <Button
82
+ size="sm"
83
+ onClick={() => this.insertRowAfter(context.node)}
84
+ >
85
+ <Icon className="icon" icon="arrow-to-bottom" />
86
+ <span>下方插入新行</span>
87
+ </Button>
88
+ )
89
+ },
90
+ {
91
+ children: (
92
+ <Button
93
+ size="sm"
94
+ onClick={() => this.insertRowBefore(context.node)}
95
+ >
96
+ <Icon className="icon" icon="top-arrow-to-top" />
97
+ <span>上方插入新行</span>
98
+ </Button>
99
+ )
100
+ }
101
+ ]
102
+ },
103
+
104
+ {
105
+ label: '列数',
106
+ name: 'columns',
107
+ type: 'select',
108
+ pipeIn: (value: any) =>
109
+ Array.isArray(value) ? value.length : undefined,
110
+ pipeOut: (value: any, origin: any) => {
111
+ if (Array.isArray(origin)) {
112
+ if (origin.length > value) {
113
+ origin = origin.concat();
114
+ origin.splice(value - 1, origin.length - value);
115
+ } else {
116
+ origin = origin.concat(
117
+ repeatArray(
118
+ {
119
+ body: []
120
+ },
121
+ value - origin.length
122
+ )
123
+ );
124
+ }
125
+ }
126
+
127
+ return origin;
128
+ },
129
+ options: repeatArray(null, 12).map((_, index) => ({
130
+ label: `${index + 1}`,
131
+ value: index + 1
132
+ }))
133
+ }
134
+ ]
135
+ }),
136
+
137
+ {
138
+ type: 'list-select',
139
+ name: 'gap',
140
+ label: '列间距',
141
+ size: 'sm',
142
+ clearable: true,
143
+ tiled: true,
144
+ options: [
145
+ {
146
+ label: '极小',
147
+ value: 'xs'
148
+ },
149
+ {
150
+ label: '小',
151
+ value: 'sm'
152
+ },
153
+ {
154
+ label: '正常',
155
+ value: 'base'
156
+ },
157
+ {
158
+ label: '中',
159
+ value: 'md'
160
+ },
161
+ {
162
+ label: '大',
163
+ value: 'lg'
164
+ }
165
+ ]
166
+ },
167
+
168
+ {
169
+ name: 'columns',
170
+ label: '列集合',
171
+ type: 'combo',
172
+ scaffold: {
173
+ body: []
174
+ },
175
+ minLength: 1,
176
+ multiple: true,
177
+ // draggable: true,
178
+ draggableTip: '',
179
+ items: [
180
+ {
181
+ type: 'tpl',
182
+ tpl: '<span class="label label-default">列${index | plus}</span>',
183
+ columnClassName: 'no-grow v-middle'
184
+ },
185
+ getSchemaTpl('className', {
186
+ name: 'columnClassName',
187
+ labelRemark: '',
188
+ label: ''
189
+ })
190
+ ]
191
+ },
192
+ getSchemaTpl('fieldSet', {
193
+ title: '水平对齐',
194
+ collapsable: false,
195
+ body: [
196
+ {
197
+ type: 'button-group-select',
198
+ name: 'align',
199
+ size: 'sm',
200
+ label: false,
201
+ tiled: true,
202
+ pipeIn: defaultValue('left'),
203
+ options: [
204
+ {
205
+ value: 'left',
206
+ label: '左对齐'
207
+ },
208
+ {
209
+ value: 'center',
210
+ label: '中间对齐'
211
+ },
212
+ {
213
+ value: 'right',
214
+ label: '右对齐'
215
+ },
216
+ {
217
+ value: 'between',
218
+ label: '两端对齐'
219
+ }
220
+ ]
221
+ }
222
+ ]
223
+ }),
224
+
225
+ getSchemaTpl('fieldSet', {
226
+ title: '垂直对齐',
227
+ collapsable: false,
228
+ body: [
229
+ {
230
+ type: 'button-group-select',
231
+ name: 'valign',
232
+ size: 'sm',
233
+ label: false,
234
+ tiled: true,
235
+ pipeIn: defaultValue('top'),
236
+ options: [
237
+ {
238
+ value: 'top',
239
+ label: '顶部对齐'
240
+ },
241
+ {
242
+ value: 'middle',
243
+ label: '中间对齐'
244
+ },
245
+ {
246
+ value: 'bottom',
247
+ label: '底部对齐'
248
+ },
249
+ {
250
+ value: 'between',
251
+ label: '两端对齐'
252
+ }
253
+ ]
254
+ }
255
+ ]
256
+ })
257
+ ]
258
+ },
259
+ {
260
+ title: '外观',
261
+ body: [
262
+ getSchemaTpl('className'),
263
+ getSchemaTpl('subFormItemMode'),
264
+ getSchemaTpl('subFormHorizontalMode'),
265
+ getSchemaTpl('subFormHorizontal')
266
+ ]
267
+ },
268
+ {
269
+ title: '显隐',
270
+ body: [getSchemaTpl('visible')]
271
+ }
272
+ ])
273
+ ];
274
+
275
+ vRendererConfig: VRendererConfig = {
276
+ regions: {
277
+ body: {
278
+ key: 'body',
279
+ label: '内容区',
280
+ placeholder: '列',
281
+ wrapperResolve: (dom: HTMLElement) => dom
282
+ }
283
+ },
284
+ panelTitle: '列',
285
+ panelBodyCreator: (context: BaseEventContext) => {
286
+ return [
287
+ getSchemaTpl('tabs', [
288
+ {
289
+ title: '常规',
290
+ body: [
291
+ getSchemaTpl('fieldSet', {
292
+ title: '插入',
293
+ collapsable: false,
294
+ body: [
295
+ {
296
+ type: 'wrapper',
297
+ size: 'none',
298
+ className: 'grid grid-cols-2 gap-4',
299
+ body: [
300
+ {
301
+ children: (
302
+ <Button
303
+ size="sm"
304
+ onClick={() =>
305
+ this.insertRowAfter(context.node.host)
306
+ }
307
+ >
308
+ <Icon className="icon" icon="arrow-to-bottom" />
309
+ <span>下方插入新行</span>
310
+ </Button>
311
+ )
312
+ },
313
+ {
314
+ children: (
315
+ <Button
316
+ size="sm"
317
+ onClick={() =>
318
+ this.insertRowBefore(context.node.host)
319
+ }
320
+ >
321
+ <Icon className="icon" icon="top-arrow-to-top" />
322
+ <span>上方插入新行</span>
323
+ </Button>
324
+ )
325
+ },
326
+ {
327
+ children: (
328
+ <Button
329
+ size="sm"
330
+ onClick={() => this.insertColumnBefore(context)}
331
+ >
332
+ <Icon className="icon" icon="left-arrow-to-left" />
333
+ <span>左侧插入新列</span>
334
+ </Button>
335
+ )
336
+ },
337
+ {
338
+ children: (
339
+ <Button
340
+ size="sm"
341
+ onClick={() => this.insertColumnAfter(context)}
342
+ >
343
+ <Icon className="icon" icon="arrow-to-right" />
344
+ <span>右侧插入新列</span>
345
+ </Button>
346
+ )
347
+ }
348
+ ]
349
+ }
350
+ ]
351
+ }),
352
+
353
+ getSchemaTpl('fieldSet', {
354
+ title: '宽度设置',
355
+ collapsable: false,
356
+ body: [
357
+ {
358
+ type: 'button-group-select',
359
+ name: 'width',
360
+ size: 'sm',
361
+ label: false,
362
+ pipeIn: (value: any) =>
363
+ value && value !== 'auto' ? 'manual' : value || '',
364
+ pipeOut: (value: any) =>
365
+ value === 'manual' ? '20%' : value,
366
+ options: [
367
+ {
368
+ value: '',
369
+ label: '适配宽度'
370
+ },
371
+ {
372
+ value: 'auto',
373
+ label: '适配内容'
374
+ },
375
+ {
376
+ value: 'manual',
377
+ label: '手动'
378
+ }
379
+ ],
380
+ description:
381
+ '<% if (this.width && this.width !== "auto") {%>请按住高亮框右侧方块拖动调整宽度<%}%>'
382
+ }
383
+ ]
384
+ }),
385
+
386
+ getSchemaTpl('fieldSet', {
387
+ title: '垂直对齐',
388
+ collapsable: false,
389
+ body: [
390
+ {
391
+ type: 'button-group-select',
392
+ name: 'valign',
393
+ size: 'sm',
394
+ label: false,
395
+ tiled: true,
396
+ clearable: true,
397
+ options: [
398
+ {
399
+ value: 'top',
400
+ label: '顶部对齐'
401
+ },
402
+ {
403
+ value: 'middle',
404
+ label: '中间对齐'
405
+ },
406
+ {
407
+ value: 'bottom',
408
+ label: '底部对齐'
409
+ },
410
+ {
411
+ value: 'between',
412
+ label: '两端对齐'
413
+ }
414
+ ]
415
+ }
416
+ ]
417
+ })
418
+ ]
419
+ },
420
+ {
421
+ title: '外观',
422
+ body: [
423
+ getSchemaTpl('className', {
424
+ name: 'columnClassName',
425
+ label: '列 CSS 类名',
426
+ description: '可以添加宽度类样式调整宽度,默认宽度为平均分配。'
427
+ })
428
+ ]
429
+ }
430
+ ])
431
+ ];
432
+ }
433
+ };
434
+
435
+ vWrapperResolve = (dom: HTMLElement) => dom;
436
+ overrides = {
437
+ renderColumn: function (this: any, node: Schema, index: number) {
438
+ const dom = this.super(node, index);
439
+ const info = this.props.$$editor;
440
+
441
+ if (info && node.$$id) {
442
+ const plugin: HBoxPlugin = info.plugin as any;
443
+ const region = plugin.vRendererConfig?.regions?.body;
444
+ if (!region) {
445
+ return dom;
446
+ }
447
+
448
+ return (
449
+ <VRenderer
450
+ key={node.$$id}
451
+ plugin={info.plugin}
452
+ renderer={info.renderer}
453
+ $schema="" // /schemas/GridColumn.json
454
+ hostId={info.id}
455
+ memberIndex={index}
456
+ name={`第${index + 1}列`}
457
+ id={node.$$id}
458
+ draggable={false}
459
+ schemaPath={`${info.schemaPath}/hbox/${index}`}
460
+ wrapperResolve={plugin.vWrapperResolve}
461
+ path={`${this.props.$path}/${index}`} // 好像没啥用
462
+ data={this.props.data} // 好像没啥用
463
+ widthMutable
464
+ >
465
+ {region ? (
466
+ <Region
467
+ key={region.key}
468
+ preferTag={region.preferTag}
469
+ name={region.key}
470
+ label={region.label}
471
+ regionConfig={region}
472
+ placeholder={region.placeholder}
473
+ editorStore={plugin.manager.store}
474
+ manager={plugin.manager}
475
+ children={dom}
476
+ wrapperResolve={region.wrapperResolve}
477
+ rendererName={info.renderer.name}
478
+ />
479
+ ) : (
480
+ dom
481
+ )}
482
+ </VRenderer>
483
+ );
484
+ }
485
+ return dom;
486
+ }
487
+ };
488
+
489
+ // buildEditorPanel(context: BaseEventContext, panels: Array<BasicPanelItem>) {
490
+ // super.buildEditorPanel(context, panels);
491
+ // const parent = context.node.parent?.host as EditorNodeType;
492
+
493
+ // if (
494
+ // parent?.info?.plugin === this &&
495
+ // (this.vRendererConfig.panelControls ||
496
+ // this.vRendererConfig.panelControlsCreator)
497
+ // ) {
498
+ // panels.push({
499
+ // key: 'grid',
500
+ // order: 100,
501
+ // icon: this.vRendererConfig.panelIcon || 'fa fa-tablet',
502
+ // title: this.vRendererConfig.panelTitle || '格子',
503
+ // render: this.manager.makeSchemaFormRender({
504
+ // body: this.vRendererConfig.panelControlsCreator
505
+ // ? this.vRendererConfig.panelControlsCreator(context)
506
+ // : this.vRendererConfig.panelControls!
507
+ // })
508
+ // });
509
+ // }
510
+ // }
511
+
512
+ afterResolveJsonSchema(
513
+ event: PluginEvent<RendererJSONSchemaResolveEventContext>
514
+ ) {
515
+ const context = event.context;
516
+ const parent = context.node.parent?.host as EditorNodeType;
517
+
518
+ if (parent?.info?.plugin === this) {
519
+ event.setData('/schemas/HBoxColumn.json');
520
+ }
521
+ }
522
+
523
+ buildEditorContextMenu(
524
+ context: ContextMenuEventContext,
525
+ menus: Array<ContextMenuItem>
526
+ ) {
527
+ if (context.selections.length || context.info?.plugin !== this) {
528
+ return;
529
+ }
530
+
531
+ if (context.node.isVitualRenderer) {
532
+ menus.push('|');
533
+
534
+ menus.push({
535
+ label: '左侧插入一列',
536
+ onSelect: () => this.insertColumnBefore(context)
537
+ });
538
+
539
+ menus.push({
540
+ label: '右侧插入一列',
541
+ onSelect: () => this.insertColumnAfter(context)
542
+ });
543
+
544
+ menus.push('|');
545
+
546
+ menus.push({
547
+ label: '上方插入一行',
548
+ onSelect: () => this.insertRowBefore(context.node.host)
549
+ });
550
+
551
+ menus.push({
552
+ label: '下方插入一行',
553
+ onSelect: () => this.insertRowAfter(context.node.host)
554
+ });
555
+ } else {
556
+ menus.push('|');
557
+
558
+ menus.push({
559
+ label: '上方插入一行',
560
+ onSelect: () => this.insertRowBefore(context.node)
561
+ });
562
+
563
+ menus.push({
564
+ label: '下方插入一行',
565
+ onSelect: () => this.insertRowAfter(context.node)
566
+ });
567
+ }
568
+ }
569
+
570
+ onWidthChangeStart(
571
+ event: PluginEvent<
572
+ ResizeMoveEventContext,
573
+ {
574
+ onMove(e: MouseEvent): void;
575
+ onEnd(e: MouseEvent): void;
576
+ }
577
+ >
578
+ ) {
579
+ const context = event.context;
580
+ const node = context.node;
581
+ if (node.info?.plugin !== this) {
582
+ return;
583
+ }
584
+ const host = node.host;
585
+ if (!host || host.info?.plugin !== this) {
586
+ return;
587
+ }
588
+
589
+ const dom = context.dom;
590
+ const parent = dom.parentElement as HTMLElement;
591
+ if (!parent) {
592
+ return;
593
+ }
594
+ const resizer = context.resizer;
595
+ const frameRect = parent.getBoundingClientRect();
596
+ let columns = host.schema.columns;
597
+ const index = node.index;
598
+ let finalWidth = columns[index].width;
599
+ const rect = dom.getBoundingClientRect();
600
+
601
+ event.setData({
602
+ onMove: (e: MouseEvent) => {
603
+ const width = e.pageX - rect.left;
604
+ const percent = (finalWidth = `${Math.max(
605
+ 1,
606
+ Math.min(99, Math.round((100 * width) / frameRect.width))
607
+ )}%`);
608
+ columns = columns.concat();
609
+ columns[index] = {
610
+ ...columns[index],
611
+ width: percent
612
+ };
613
+ resizer.setAttribute('data-value', percent);
614
+
615
+ host.updateState({
616
+ columns
617
+ });
618
+ requestAnimationFrame(() => {
619
+ node.calculateHighlightBox();
620
+ });
621
+ },
622
+ onEnd: () => {
623
+ host.updateState({}, true);
624
+ resizer.removeAttribute('data-value');
625
+ node.updateSchema({
626
+ width: finalWidth
627
+ });
628
+ requestAnimationFrame(() => {
629
+ node.calculateHighlightBox();
630
+ });
631
+ }
632
+ });
633
+ }
634
+
635
+ insertRowAfter(node: EditorNodeType) {
636
+ if (node.info?.plugin !== this) {
637
+ return;
638
+ }
639
+ const store = this.manager.store;
640
+ const schema = store.schema;
641
+ const id = node.id;
642
+ store.traceableSetSchema(
643
+ JSONChangeInArray(schema, id, (arr: any[], node: any, index: number) => {
644
+ arr.splice(
645
+ index + 1,
646
+ 0,
647
+ JSONPipeIn({
648
+ type: 'hbox',
649
+ align: node.align,
650
+ valign: node.valign,
651
+ columns: node.columns.map((column: any) => ({
652
+ body: [],
653
+ width: column?.width
654
+ }))
655
+ })
656
+ );
657
+ })
658
+ );
659
+ }
660
+ insertRowBefore(node: EditorNodeType) {
661
+ if (node.info?.plugin !== this) {
662
+ return;
663
+ }
664
+ const store = this.manager.store;
665
+ const id = node.id;
666
+ const schema = store.schema;
667
+ store.traceableSetSchema(
668
+ JSONChangeInArray(schema, id, (arr: any[], node: any, index: number) => {
669
+ arr.splice(
670
+ index,
671
+ 0,
672
+ JSONPipeIn({
673
+ type: 'hbox',
674
+ align: node.align,
675
+ valign: node.valign,
676
+ columns: node.columns.map((column: any) => ({
677
+ body: [],
678
+ width: column?.width
679
+ }))
680
+ })
681
+ );
682
+ })
683
+ );
684
+ }
685
+ insertColumnBefore(context: BaseEventContext) {
686
+ const node = context.node;
687
+ if (node.info?.plugin !== this) {
688
+ return;
689
+ }
690
+ const store = this.manager.store;
691
+ const schema = store.schema;
692
+ const id = context.id;
693
+ store.traceableSetSchema(
694
+ JSONChangeInArray(schema, id, (arr: any[], node: any, index: number) => {
695
+ arr.splice(
696
+ index,
697
+ 0,
698
+ JSONPipeIn({
699
+ body: []
700
+ })
701
+ );
702
+ })
703
+ );
704
+ }
705
+ insertColumnAfter(context: BaseEventContext) {
706
+ const node = context.node;
707
+ if (node.info?.plugin !== this) {
708
+ return;
709
+ }
710
+ const id = context.id;
711
+ const store = this.manager.store;
712
+ const schema = store.schema;
713
+ store.traceableSetSchema(
714
+ JSONChangeInArray(schema, id, (arr: any[], node: any, index: number) => {
715
+ arr.splice(
716
+ index + 1,
717
+ 0,
718
+ JSONPipeIn({
719
+ body: []
720
+ })
721
+ );
722
+ })
723
+ );
724
+ }
725
+ }
726
+
727
+ registerEditorPlugin(HBoxPlugin);