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,306 @@
1
+ import {ContainerWrapper} from '../component/ContainerWrapper';
2
+ import {registerEditorPlugin} from '../manager';
3
+ import {BasePlugin} from '../plugin';
4
+ import {getSchemaTpl} from '../component/schemaTpl';
5
+ import type {SchemaObject} from 'amis/lib/Schema';
6
+
7
+ export class PagePlugin extends BasePlugin {
8
+ // 关联渲染器名字
9
+ rendererName = 'page';
10
+ $schema = '/schemas/PageSchema.json';
11
+
12
+ // 组件名称
13
+ name = '页面';
14
+ isBaseComponent = true;
15
+ // 注释掉是为了不让它在出现在组件列表中,因为只有顶级才会用到这个。
16
+ // description =
17
+ // '页面渲染器,页面的顶级入口。包含多个区域,您可以选择在不同的区域里面放置不同的渲染器。';
18
+ docLink = '/amis/zh-CN/components/page';
19
+ tags = '容器';
20
+ icon = 'fa fa-desktop';
21
+ scaffold: SchemaObject = {
22
+ type: 'page',
23
+ body: [
24
+ {
25
+ type: 'tpl',
26
+ tpl: '内容'
27
+ }
28
+ ]
29
+ };
30
+ previewSchema: SchemaObject = {
31
+ type: 'page',
32
+ className: 'text-left b-a',
33
+ asideClassName: 'w-xs',
34
+ title: '标题',
35
+ subTitle: '副标题',
36
+ aside: '边栏',
37
+ body: '内容'
38
+ };
39
+
40
+ // 普通容器类渲染器配置
41
+ regions = [
42
+ {key: 'toolbar', label: '工具栏', preferTag: '工具栏内容'},
43
+ {key: 'aside', label: '边栏', placeholder: '边栏内容'},
44
+ {key: 'body', label: '内容区', placeholder: '页面内容'}
45
+ ];
46
+ wrapper = ContainerWrapper;
47
+
48
+ panelTitle = '页面';
49
+ panelBody = [
50
+ getSchemaTpl('tabs', [
51
+ {
52
+ title: '常规',
53
+ body: [
54
+ {
55
+ type: 'checkboxes',
56
+ name: 'regions',
57
+ label: '区域展示',
58
+ pipeIn: (value: any) =>
59
+ Array.isArray(value)
60
+ ? value
61
+ : ['auto', 'body', 'toolbar', 'aside', 'header'],
62
+ pipeOut: (value: any) => {
63
+ return Array.isArray(value) && ~value.indexOf('auto')
64
+ ? undefined
65
+ : value.length
66
+ ? value
67
+ : ['auto', 'body', 'toolbar', 'aside', 'header'];
68
+ },
69
+ joinValues: false,
70
+ extractValue: true,
71
+ inline: false,
72
+ options: [
73
+ {
74
+ label: '自动',
75
+ value: 'auto'
76
+ },
77
+ {
78
+ label: '内容区',
79
+ value: 'body',
80
+ disabledOn:
81
+ '!Array.isArray(this.regions) || ~this.regions.indexOf("auto")'
82
+ },
83
+ {
84
+ label: '边栏',
85
+ value: 'aside',
86
+ disabledOn:
87
+ '!Array.isArray(this.regions) ||~this.regions.indexOf("auto")'
88
+ },
89
+ {
90
+ label: '工具栏',
91
+ value: 'toolbar',
92
+ disabledOn:
93
+ '!Array.isArray(this.regions) ||~this.regions.indexOf("auto")'
94
+ },
95
+ {
96
+ label: '顶部',
97
+ value: 'header',
98
+ disabledOn:
99
+ '!Array.isArray(this.regions) ||~this.regions.indexOf("auto")'
100
+ }
101
+ ]
102
+ },
103
+
104
+ {
105
+ label: '标题',
106
+ name: 'title',
107
+ type: 'input-text'
108
+ },
109
+
110
+ {
111
+ label: '副标题',
112
+ name: 'subTitle',
113
+ type: 'input-text'
114
+ },
115
+
116
+ {
117
+ label: '提示',
118
+ name: 'remark',
119
+ type: 'textarea',
120
+ visibleOn: 'this.title',
121
+ description: '标题附近会出现一个提示图标,鼠标放上去会提示该内容。'
122
+ },
123
+ getSchemaTpl('data')
124
+ ]
125
+ },
126
+
127
+ {
128
+ title: '接口',
129
+ body: [
130
+ getSchemaTpl('api', {
131
+ label: '数据初始化接口',
132
+ name: 'initApi',
133
+ sampleBuilder: (schema: any) => `{
134
+ "status": 0,
135
+ "msg": "",
136
+
137
+ data: {
138
+ // 示例数据
139
+ "id": 1,
140
+ "a": "sample"
141
+ }
142
+ }`
143
+ }),
144
+
145
+ getSchemaTpl('initFetch'),
146
+
147
+ {
148
+ label: '开启定时刷新',
149
+ type: 'switch',
150
+ name: 'interval',
151
+ visibleOn: 'data.initApi',
152
+ pipeIn: (value: any) => !!value,
153
+ pipeOut: (value: any) => (value ? 3000 : undefined),
154
+ mode: 'inline'
155
+ },
156
+
157
+ {
158
+ name: 'interval',
159
+ type: 'input-number',
160
+ visibleOn: 'typeof this.interval === "number"',
161
+ step: 500
162
+ },
163
+
164
+ {
165
+ name: 'silentPolling',
166
+ label: '静默刷新',
167
+ type: 'switch',
168
+ mode: 'inline',
169
+ visibleOn: '!!data.interval',
170
+ description: '设置自动定时刷新时是否显示loading'
171
+ },
172
+
173
+ {
174
+ name: 'stopAutoRefreshWhen',
175
+ label: '停止定时刷新检测表达式',
176
+ type: 'input-text',
177
+ visibleOn: '!!data.interval',
178
+ description:
179
+ '定时刷新一旦设置会一直刷新,除非给出表达式,条件满足后则不刷新了。'
180
+ },
181
+
182
+ {
183
+ label: '默认消息提示',
184
+ type: 'combo',
185
+ name: 'messages',
186
+ multiLine: true,
187
+ description:
188
+ '设置 ajax 默认提示信息,当 ajax 没有返回 msg 信息时有用,如果 ajax 返回携带了 msg 值,则还是以 ajax 返回为主',
189
+ items: [
190
+ {
191
+ label: '获取成功提示',
192
+ type: 'input-text',
193
+ name: 'fetchSuccess'
194
+ },
195
+
196
+ {
197
+ label: '获取失败提示',
198
+ type: 'input-text',
199
+ name: 'fetchFailed'
200
+ },
201
+
202
+ {
203
+ label: '保存成功提示',
204
+ type: 'input-text',
205
+ name: 'saveSuccess'
206
+ },
207
+
208
+ {
209
+ label: '保存失败提示',
210
+ type: 'input-text',
211
+ name: 'saveFailed'
212
+ }
213
+ ]
214
+ }
215
+ ]
216
+ },
217
+
218
+ {
219
+ title: '外观',
220
+ body: [
221
+ getSchemaTpl('className'),
222
+ getSchemaTpl('className', {
223
+ name: 'headerClassName',
224
+ label: '头部CSS类名'
225
+ }),
226
+ getSchemaTpl('className', {
227
+ name: 'bodyClassName',
228
+ label: '内容CSS类名'
229
+ }),
230
+
231
+ getSchemaTpl('className', {
232
+ name: 'asideClassName',
233
+ label: '边栏CSS类名'
234
+ }),
235
+
236
+ getSchemaTpl('className', {
237
+ name: 'toolbarClassName',
238
+ label: '工具栏CSS类名'
239
+ }),
240
+ getSchemaTpl('style')
241
+ ]
242
+ },
243
+
244
+ {
245
+ title: '其他',
246
+ body: [
247
+ getSchemaTpl('name')
248
+
249
+ // {
250
+ // type: 'combo',
251
+ // name: 'definitions',
252
+ // multiple: true,
253
+ // multiLine: true,
254
+ // label: '定义',
255
+ // description: '定义类型,定义完成后可被子节点引用。',
256
+ // pipeIn: (value: any) =>
257
+ // value
258
+ // ? Object.keys(value).map(key => ({
259
+ // key,
260
+ // value: value[key]
261
+ // }))
262
+ // : [],
263
+ // pipeOut: (value: any) =>
264
+ // Array.isArray(value)
265
+ // ? value.reduce(
266
+ // (obj, current) => ({
267
+ // ...obj,
268
+ // [current.key || '']: current.value
269
+ // ? current.value
270
+ // : {type: 'tpl', tpl: '内容'}
271
+ // }),
272
+ // {}
273
+ // )
274
+ // : undefined,
275
+ // items: [
276
+ // {
277
+ // type: 'input-text',
278
+ // name: 'key',
279
+ // label: 'Key',
280
+ // required: true
281
+ // },
282
+
283
+ // {
284
+ // children: ({index}: any) => (
285
+ // <Button
286
+ // size="sm"
287
+ // level="danger"
288
+ // // onClick={this.handleEditDefinitionDetail.bind(
289
+ // // this,
290
+ // // index
291
+ // // )}
292
+ // block
293
+ // >
294
+ // 配置详情
295
+ // </Button>
296
+ // )
297
+ // }
298
+ // ]
299
+ // }
300
+ ]
301
+ }
302
+ ])
303
+ ];
304
+ }
305
+
306
+ registerEditorPlugin(PagePlugin);
@@ -0,0 +1,41 @@
1
+ import React from 'react';
2
+ import {Icon} from 'amis';
3
+ import {AvailableRenderersPanel} from '../../component/Panel/AvailableRenderersPanel';
4
+ import {registerEditorPlugin} from '../../manager';
5
+ import {BasePlugin, BasicPanelItem, BuildPanelEventContext} from '../../plugin';
6
+
7
+ /**
8
+ * 添加源码编辑功能
9
+ */
10
+ export class AvailableRenderersPlugin extends BasePlugin {
11
+ order = -9999;
12
+
13
+ buildEditorPanel(
14
+ context: BuildPanelEventContext,
15
+ panels: Array<BasicPanelItem>
16
+ ) {
17
+ const store = this.manager.store;
18
+
19
+ // 多选时不显示
20
+ if (context.selections.length) {
21
+ return;
22
+ }
23
+
24
+ if (store.subRenderers.length) {
25
+ panels.push({
26
+ key: 'renderers',
27
+ icon: 'png-icon renderers-png', // 'fa fa-cube',
28
+ title: (
29
+ <span className="editor-tab-icon" editor-tooltip="组件">
30
+ <Icon icon="editor-renderer" />
31
+ </span>
32
+ ),
33
+ component: AvailableRenderersPanel,
34
+ position: 'left',
35
+ order: -9999
36
+ });
37
+ }
38
+ }
39
+ }
40
+
41
+ registerEditorPlugin(AvailableRenderersPlugin);
@@ -0,0 +1,44 @@
1
+ import React from 'react';
2
+ import {Icon} from 'amis';
3
+ import CodeEditorPanel from '../../component/Panel/CodeEditorPanel';
4
+ import {registerEditorPlugin} from '../../manager';
5
+ import {
6
+ BasePlugin,
7
+ BasicPanelItem,
8
+ RendererJSONSchemaResolveEventContext,
9
+ BuildPanelEventContext
10
+ } from '../../plugin';
11
+ import WidthDraggableContainer from '../../component/base/WidthDraggableContainer';
12
+
13
+ /**
14
+ * 添加源码编辑功能
15
+ */
16
+ export class CodePlugin extends BasePlugin {
17
+ order = -9999;
18
+
19
+ buildJSONSchema({info}: RendererJSONSchemaResolveEventContext) {
20
+ return info.$schema;
21
+ }
22
+
23
+ buildEditorPanel(
24
+ {info, selections}: BuildPanelEventContext,
25
+ panels: Array<BasicPanelItem>
26
+ ) {
27
+ if (this.manager.store.jsonSchemaUri && !selections.length) {
28
+ panels.push({
29
+ key: 'code',
30
+ icon: 'png-icon code-png', // 'fa fa-code',
31
+ title: (
32
+ <span className="editor-tab-icon" editor-tooltip="代码">
33
+ <Icon icon="editor-code" />
34
+ </span>
35
+ ),
36
+ position: 'left',
37
+ component: WidthDraggableContainer(CodeEditorPanel),
38
+ order: 5000
39
+ });
40
+ }
41
+ }
42
+ }
43
+
44
+ registerEditorPlugin(CodePlugin);
@@ -0,0 +1,26 @@
1
+ import {TargetNamePanel} from '../../component/Panel/TargetNamePanel';
2
+ import {registerEditorPlugin} from '../../manager';
3
+ import {BasePlugin, BasicPanelItem, BuildPanelEventContext} from '../../plugin';
4
+
5
+ /**
6
+ * 添加名字面板,方便根据组件名字定位节点
7
+ */
8
+ export class NamePlugin extends BasePlugin {
9
+ order = -9999;
10
+
11
+ buildEditorPanel(
12
+ {info, selections}: BuildPanelEventContext,
13
+ panels: Array<BasicPanelItem>
14
+ ) {
15
+ // panels.push({
16
+ // position: 'left',
17
+ // key: 'name-list',
18
+ // icon: 'fa fa-list',
19
+ // title: '名字',
20
+ // component: TargetNamePanel,
21
+ // order: 4000
22
+ // });
23
+ }
24
+ }
25
+ // PM端:名字tab 使用有点奇怪,暂时去掉
26
+ // registerEditorPlugin(NamePlugin);
@@ -0,0 +1,40 @@
1
+ import React from 'react';
2
+ import {Icon} from 'amis';
3
+ import {OutlinePanel} from '../../component/Panel/Outline';
4
+ import {registerEditorPlugin} from '../../manager';
5
+ import {BasePlugin, BasicPanelItem, BuildPanelEventContext} from '../../plugin';
6
+ import WidthDraggableContainer from '../../component/base/WidthDraggableContainer';
7
+ /**
8
+ * 大纲面板
9
+ */
10
+ export class OutlinePlugin extends BasePlugin {
11
+ order = -9999;
12
+
13
+ buildEditorPanel(
14
+ context: BuildPanelEventContext,
15
+ panels: Array<BasicPanelItem>
16
+ ) {
17
+ const store = this.manager.store;
18
+
19
+ // 多选时显示大纲面板
20
+ if (store && context.selections.length) {
21
+ const {changeLeftPanelOpenStatus, changeLeftPanelKey} = store;
22
+ changeLeftPanelOpenStatus(true);
23
+ changeLeftPanelKey('outline');
24
+ }
25
+ panels.push({
26
+ key: 'outline',
27
+ icon: 'png-icon outline-png', // 'fa fa-navicon',
28
+ title: (
29
+ <span className="editor-tab-icon" editor-tooltip="大纲">
30
+ <Icon icon="editor-outline" />
31
+ </span>
32
+ ),
33
+ component: WidthDraggableContainer(OutlinePanel),
34
+ position: 'left',
35
+ order: 4000
36
+ });
37
+ }
38
+ }
39
+
40
+ registerEditorPlugin(OutlinePlugin);
@@ -0,0 +1,243 @@
1
+ import {Button} from 'amis';
2
+ import React from 'react';
3
+ import {registerEditorPlugin} from '../manager';
4
+ import {
5
+ BasePlugin,
6
+ BaseEventContext,
7
+ BasicPanelItem,
8
+ RegionConfig,
9
+ RendererInfo,
10
+ BuildPanelEventContext
11
+ } from '../plugin';
12
+ import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
13
+
14
+ export class PanelPlugin extends BasePlugin {
15
+ // 关联渲染器名字
16
+ rendererName = 'panel';
17
+ $schema = '/schemas/panelSchema.json';
18
+
19
+ name = '面板';
20
+ isBaseComponent = true;
21
+ icon = 'fa fa-window-maximize';
22
+ description = '展示一个面板,可以配置标题,内容区。';
23
+ docLink = '/amis/zh-CN/components/panel';
24
+ tags = '容器';
25
+ scaffold = {
26
+ type: 'panel',
27
+ title: '标题',
28
+ body: '内容'
29
+ };
30
+ previewSchema = {
31
+ type: 'panel',
32
+ title: '这是一个面板',
33
+ body: '这是内容区',
34
+ className: 'Panel--default text-left m-b-none',
35
+ actions: [
36
+ {
37
+ label: '按钮1',
38
+ type: 'button'
39
+ },
40
+ {
41
+ label: '按钮2',
42
+ type: 'button'
43
+ }
44
+ ]
45
+ };
46
+
47
+ regions: Array<RegionConfig> = [
48
+ {
49
+ key: 'body',
50
+ label: '内容区',
51
+
52
+ // 复写渲染器里面的 renderBody 方法
53
+ renderMethod: 'renderBody',
54
+
55
+ // 这个 case 很另类,要自己写。form 里面直接复用了 Panel 来输出内容。
56
+ // 这种 case 应该跳过包裹 Region
57
+ // 只有他自己输出时才包裹,form 调用进来是下发了 children 来完成渲染
58
+ // 自己的话是其他方式。
59
+ renderMethodOverride: (regions, insertRegion) =>
60
+ function (this: any, ...args: any[]) {
61
+ const info: RendererInfo = this.props.$$editor;
62
+ const dom = this.super(...args);
63
+
64
+ if (info && !this.props.children) {
65
+ return insertRegion(this, dom, regions, info, info.plugin.manager);
66
+ }
67
+
68
+ return dom;
69
+ }
70
+ },
71
+
72
+ {
73
+ key: 'actions',
74
+ label: '按钮组',
75
+ renderMethod: 'renderActions',
76
+ preferTag: '按钮'
77
+ }
78
+ ];
79
+
80
+ panelTitle = '面板';
81
+ panelBodyCreator = (context: BaseEventContext) => {
82
+ const isForm = /(?:^|\/)form$/.test(context.path);
83
+
84
+ return [
85
+ getSchemaTpl('tabs', [
86
+ {
87
+ title: '常规',
88
+ body: [
89
+ {
90
+ label: '标题',
91
+ name: 'title',
92
+ type: 'input-text'
93
+ },
94
+
95
+ isForm
96
+ ? null
97
+ : {
98
+ children: (
99
+ <Button
100
+ size="sm"
101
+ level="info"
102
+ className="m-b"
103
+ onClick={() => {
104
+ // this.manager.showInsertPanel('body')
105
+ this.manager.showRendererPanel('');
106
+ }}
107
+ block
108
+ >
109
+ 内容区新增内容
110
+ </Button>
111
+ )
112
+ }
113
+ ]
114
+ },
115
+ {
116
+ title: '外观',
117
+ body: [
118
+ {
119
+ name: 'affixFooter',
120
+ label: '固定底部',
121
+ type: 'switch',
122
+ value: false,
123
+ mode: 'inline',
124
+ className: 'block'
125
+ },
126
+
127
+ getSchemaTpl('horizontal', {
128
+ visibleOn:
129
+ '(data.mode || data.$$formMode) == "horizontal" && data.$$mode == "form"'
130
+ }),
131
+
132
+ {
133
+ name: isForm ? 'panelClassName' : 'className',
134
+ label: '样式',
135
+ type: 'button-group-select',
136
+ size: 'sm',
137
+ pipeIn: (value: any) =>
138
+ typeof value === 'string' &&
139
+ /(?:^|\s)(Panel\-\-(\w+))(?:$|\s)/.test(value)
140
+ ? RegExp.$1
141
+ : '',
142
+ pipeOut: (value: string, origin: string) =>
143
+ origin
144
+ ? `${origin.replace(
145
+ /(?:^|\s)(Panel\-\-(\w+))(?=($|\s))/g,
146
+ ''
147
+ )} ${value}`
148
+ .replace(/\s+/g, ' ')
149
+ .trim()
150
+ : value,
151
+ options: [
152
+ {
153
+ label: '默认',
154
+ value: 'Panel--default'
155
+ },
156
+ {
157
+ label: '主色',
158
+ value: 'Panel--primary'
159
+ },
160
+ {
161
+ label: '提示',
162
+ value: 'Panel--info'
163
+ },
164
+ {
165
+ label: '成功',
166
+ value: 'Panel--success'
167
+ },
168
+ {
169
+ label: '警告',
170
+ value: 'Panel--warning'
171
+ },
172
+ {
173
+ label: '危险',
174
+ value: 'Panel--danger'
175
+ }
176
+ ]
177
+ },
178
+
179
+ getSchemaTpl('className', {
180
+ name: isForm ? 'panelClassName' : 'className',
181
+ pipeIn: defaultValue('Panel--default')
182
+ }),
183
+
184
+ getSchemaTpl('className', {
185
+ name: 'headerClassName',
186
+ label: '头部区域 CSS 类名'
187
+ }),
188
+
189
+ getSchemaTpl('className', {
190
+ name: 'bodyClassName',
191
+ label: '内容区域 CSS 类名'
192
+ }),
193
+
194
+ getSchemaTpl('className', {
195
+ name: 'footerClassName',
196
+ label: '底部区域 CSS 类名'
197
+ }),
198
+
199
+ getSchemaTpl('className', {
200
+ name: 'actionsClassName',
201
+ label: '按钮外层 CSS 类名'
202
+ }),
203
+
204
+ getSchemaTpl('subFormItemMode'),
205
+ getSchemaTpl('subFormHorizontalMode'),
206
+ getSchemaTpl('subFormHorizontal')
207
+ ]
208
+ },
209
+ {
210
+ title: '显隐',
211
+ body: [getSchemaTpl('ref'), getSchemaTpl('visible')]
212
+ }
213
+ ])
214
+ ];
215
+ };
216
+
217
+ buildEditorPanel(
218
+ context: BuildPanelEventContext,
219
+ panels: Array<BasicPanelItem>
220
+ ) {
221
+ const path = context.path;
222
+ const schema = context.schema;
223
+
224
+ if (
225
+ context.info.renderer.name === 'form' &&
226
+ schema.wrapWithPanel !== false &&
227
+ !context.selections.length
228
+ ) {
229
+ panels.push({
230
+ key: 'panel',
231
+ icon: 'fa fa-list-alt',
232
+ title: this.panelTitle,
233
+ render: this.manager.makeSchemaFormRender({
234
+ body: this.panelBodyCreator(context)
235
+ })
236
+ });
237
+ } else {
238
+ super.buildEditorPanel(context, panels);
239
+ }
240
+ }
241
+ }
242
+
243
+ registerEditorPlugin(PanelPlugin);