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,149 @@
1
+ import {registerEditorPlugin} from '../manager';
2
+ import {BaseEventContext, BasePlugin} from '../plugin';
3
+ import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
4
+ import {isObject} from '../util';
5
+
6
+ export class MappingPlugin extends BasePlugin {
7
+ // 关联渲染器名字
8
+ rendererName = 'mapping';
9
+ $schema = '/schemas/MappingSchema.json';
10
+
11
+ // 组件名称
12
+ name = '映射';
13
+ isBaseComponent = true;
14
+ description =
15
+ '对现有值做映射展示,比如原始值是:1、2、3...,需要展示成:下线、上线、过期等等。';
16
+ docLink = '/amis/zh-CN/components/mapping';
17
+ tags = ['展示'];
18
+ icon = 'fa fa-exchange';
19
+ scaffold = {
20
+ type: 'mapping',
21
+ value: 2,
22
+ map: {
23
+ 0: '<span class="label label-info">一</span>',
24
+ 1: '<span class="label label-success">二</span>',
25
+ 2: '<span class="label label-danger">三</span>',
26
+ 3: '<span class="label label-warning">四</span>',
27
+ 4: '<span class="label label-primary">五</span>',
28
+ '*': '<span class="label label-default">-</span>'
29
+ }
30
+ };
31
+ previewSchema = {
32
+ ...this.scaffold
33
+ };
34
+
35
+ panelTitle = '映射';
36
+ panelBodyCreator = (context: BaseEventContext) => {
37
+ const isUnderField = /\/field\/\w+$/.test(context.path as string);
38
+ return [
39
+ getSchemaTpl('tabs', [
40
+ {
41
+ title: '常规',
42
+ body: [
43
+ isUnderField
44
+ ? {
45
+ type: 'tpl',
46
+ inline: false,
47
+ className: 'text-info text-sm',
48
+ tpl: '<p>当前为字段内容节点配置,选择上层还有更多的配置。</p>'
49
+ }
50
+ : null,
51
+
52
+ {
53
+ label: '映射表',
54
+ type: 'combo',
55
+ scaffold: {
56
+ key: 'key-{index}',
57
+ value: 'value-{index}'
58
+ },
59
+ required: true,
60
+ name: 'map',
61
+ descriptionClassName: 'help-block text-xs m-b-none',
62
+ description:
63
+ '<p>当值命中左侧 Key 时,展示右侧内容,当没有命中时,默认实现 Key 为 <code>*</code>的内容</div>(请确保key值唯一)',
64
+ multiple: true,
65
+ pipeIn: (value: any) => {
66
+ if (!isObject(value)) {
67
+ return [
68
+ {
69
+ key: '*',
70
+ value: '通配值'
71
+ }
72
+ ];
73
+ }
74
+
75
+ let arr: Array<any> = [];
76
+
77
+ Object.keys(value).forEach(key => {
78
+ arr.push({
79
+ key: key || '',
80
+ value:
81
+ typeof value[key] === 'string'
82
+ ? value[key]
83
+ : JSON.stringify(value[key])
84
+ });
85
+ });
86
+ return arr;
87
+ },
88
+ pipeOut: (value: any) => {
89
+ if (!Array.isArray(value)) {
90
+ return value;
91
+ }
92
+ let obj: any = {};
93
+
94
+ value.forEach((item: any, idx: number) => {
95
+ let key: string = item.key || '';
96
+ let value: any = item.value;
97
+ if (key === 'key-{index}' && value === 'value-{index}') {
98
+ key = key.replace('-{index}', `${idx}`);
99
+ value = value.replace('-{index}', `${idx}`);
100
+ }
101
+ try {
102
+ value = JSON.parse(value);
103
+ } catch (e) {}
104
+
105
+ obj[key] = value;
106
+ });
107
+
108
+ return obj;
109
+ },
110
+ items: [
111
+ {
112
+ placeholder: 'Key',
113
+ type: 'input-text',
114
+ unique: true,
115
+ name: 'key',
116
+ required: true,
117
+ columnClassName: 'w-xs'
118
+ },
119
+
120
+ {
121
+ placeholder: '内容',
122
+ type: 'input-text',
123
+ name: 'value'
124
+ }
125
+ ]
126
+ },
127
+
128
+ {
129
+ name: 'placeholder',
130
+ type: 'input-text',
131
+ pipeIn: defaultValue('-'),
132
+ label: '占位符'
133
+ }
134
+ ]
135
+ },
136
+ {
137
+ title: '外观',
138
+ body: [getSchemaTpl('className')]
139
+ },
140
+ {
141
+ title: '显隐',
142
+ body: [getSchemaTpl('ref'), getSchemaTpl('visible')]
143
+ }
144
+ ])
145
+ ];
146
+ };
147
+ }
148
+
149
+ registerEditorPlugin(MappingPlugin);
@@ -0,0 +1,47 @@
1
+ import {registerEditorPlugin} from '../manager';
2
+ import {BaseEventContext, BasePlugin} from '../plugin';
3
+ import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
4
+
5
+ export class MarkdownPlugin extends BasePlugin {
6
+ // 关联渲染器名字
7
+ rendererName = 'markdown';
8
+ $schema = '/schemas/MarkdownSchema.json';
9
+
10
+ // 组件名称
11
+ name = 'Markdown';
12
+ isBaseComponent = true;
13
+ description = '展示 markdown 内容';
14
+ docLink = '/amis/zh-CN/components/markdown';
15
+ tags = ['展示'];
16
+ icon = 'fa fa-file-text';
17
+ scaffold = {
18
+ type: 'markdown',
19
+ value: '## 这是标题'
20
+ };
21
+ previewSchema = {
22
+ ...this.scaffold
23
+ };
24
+
25
+ panelTitle = 'MD';
26
+ panelBodyCreator = (context: BaseEventContext) => {
27
+ const isUnderField = /\/field\/\w+$/.test(context.path as string);
28
+ return [
29
+ getSchemaTpl('tabs', [
30
+ {
31
+ title: '常规',
32
+ body: [getSchemaTpl('markdownBody')]
33
+ },
34
+ {
35
+ title: '外观',
36
+ body: [getSchemaTpl('className')]
37
+ },
38
+ {
39
+ title: '显隐',
40
+ body: [getSchemaTpl('ref'), getSchemaTpl('visible')]
41
+ }
42
+ ])
43
+ ];
44
+ };
45
+ }
46
+
47
+ registerEditorPlugin(MarkdownPlugin);
@@ -0,0 +1,184 @@
1
+ import {registerEditorPlugin} from '../manager';
2
+ import {BasePlugin} from '../plugin';
3
+ import {getSchemaTpl} from '../component/schemaTpl';
4
+
5
+ export class NavPlugin extends BasePlugin {
6
+ // 关联渲染器名字
7
+ rendererName = 'nav';
8
+ $schema = '/schemas/NavSchema.json';
9
+
10
+ // 组件名称
11
+ name = '导航';
12
+ isBaseComponent = true;
13
+ description = '用来渲染导航菜单,支持横排和竖排。';
14
+ docLink = '/amis/zh-CN/components/nav';
15
+ tags = ['功能'];
16
+ icon = 'fa fa-map-signs';
17
+ scaffold = {
18
+ type: 'nav',
19
+ stacked: true,
20
+ links: [
21
+ {
22
+ label: '页面1',
23
+ to: '?id=1'
24
+ },
25
+ {
26
+ label: '页面2',
27
+ to: '?id=2'
28
+ }
29
+ ]
30
+ };
31
+ previewSchema = {
32
+ ...this.scaffold
33
+ };
34
+
35
+ panelTitle = '导航';
36
+
37
+ panelDefinitions = {
38
+ links: {
39
+ label: '菜单管理',
40
+ name: 'links',
41
+ type: 'combo',
42
+ multiple: true,
43
+ draggable: true,
44
+ addButtonText: '新增菜单',
45
+ multiLine: true,
46
+ messages: {
47
+ validateFailed: '菜单中存在配置错误,请仔细检查'
48
+ },
49
+ scaffold: {
50
+ label: '',
51
+ to: ''
52
+ },
53
+ items: [
54
+ {
55
+ type: 'input-text',
56
+ name: 'label',
57
+ label: '名称',
58
+ required: true
59
+ },
60
+
61
+ {
62
+ type: 'input-text',
63
+ name: 'to',
64
+ label: '跳转地址',
65
+ required: true
66
+ },
67
+
68
+ {
69
+ type: 'icon-picker',
70
+ name: 'icon',
71
+ label: '图标'
72
+ },
73
+
74
+ {
75
+ type: 'group',
76
+ label: '是否高亮',
77
+ direction: 'vertical',
78
+ className: 'm-b-none',
79
+ labelRemark: {
80
+ trigger: 'click',
81
+ rootClose: true,
82
+ className: 'm-l-xs',
83
+ content: '可以配置该菜单是否要高亮',
84
+ placement: 'left'
85
+ },
86
+ body: [
87
+ {
88
+ name: 'active',
89
+ type: 'radios',
90
+ inline: true,
91
+ // pipeIn: (value:any) => typeof value === 'boolean' ? value : '1'
92
+ options: [
93
+ {
94
+ label: '是',
95
+ value: true
96
+ },
97
+
98
+ {
99
+ label: '否',
100
+ value: false
101
+ },
102
+
103
+ {
104
+ label: '表达式',
105
+ value: ''
106
+ }
107
+ ]
108
+ },
109
+
110
+ {
111
+ name: 'activeOn',
112
+ autoComplete: false,
113
+ visibleOn: 'typeof this.active !== "boolean"',
114
+ type: 'input-text',
115
+ placeholder: '留空将自动分析菜单地址',
116
+ className: 'm-t-n-sm'
117
+ }
118
+ ]
119
+ },
120
+
121
+ {
122
+ type: 'switch',
123
+ label: '包含子菜单',
124
+ name: 'children',
125
+ mode: 'inline',
126
+ className: 'block',
127
+ pipeIn: (value: any) => !!value,
128
+ pipeOut: (value: any) => (value ? [{label: '', to: ''}] : undefined),
129
+ messages: {
130
+ validateFailed: '子菜单中存在配置错误,请仔细检查'
131
+ }
132
+ },
133
+
134
+ {
135
+ name: 'children',
136
+ $ref: 'links',
137
+ visibleOn: 'this.hasOwnProperty("children") && this.children',
138
+ label: '子菜单管理',
139
+ addButtonText: '新增子菜单'
140
+ }
141
+ ]
142
+ }
143
+ };
144
+ panelBody = [
145
+ getSchemaTpl('tabs', [
146
+ {
147
+ title: '常规',
148
+ body: [
149
+ {
150
+ $ref: 'links',
151
+ name: 'links'
152
+ },
153
+
154
+ {type: 'divider'},
155
+
156
+ getSchemaTpl('api', {
157
+ name: 'source',
158
+ label: '获取菜单接口',
159
+ description: '如果菜单地址希望可以动态设置,请在此填入接口地址'
160
+ })
161
+ ]
162
+ },
163
+ {
164
+ title: '外观',
165
+ body: [
166
+ {
167
+ name: 'stacked',
168
+ type: 'switch',
169
+ mode: 'inline',
170
+ className: 'block',
171
+ label: '是否竖着摆放'
172
+ },
173
+ getSchemaTpl('className')
174
+ ]
175
+ },
176
+ {
177
+ title: '显隐',
178
+ body: [getSchemaTpl('ref'), getSchemaTpl('visible')]
179
+ }
180
+ ])
181
+ ];
182
+ }
183
+
184
+ registerEditorPlugin(NavPlugin);
@@ -0,0 +1,95 @@
1
+ import {Button} from 'amis';
2
+ import React from 'react';
3
+ import {registerEditorPlugin} from '../manager';
4
+ import {
5
+ BaseEventContext,
6
+ BasePlugin,
7
+ BasicSubRenderInfo,
8
+ RegionConfig,
9
+ RendererEventContext,
10
+ SubRendererInfo
11
+ } from '../plugin';
12
+ import {getSchemaTpl} from '../component/schemaTpl';
13
+
14
+ export class OperationPlugin extends BasePlugin {
15
+ // 关联渲染器名字
16
+ rendererName = 'operation';
17
+ $schema = '/schemas/OperationSchema.json';
18
+
19
+ // 组件名称
20
+ name = '操作栏';
21
+ isBaseComponent = true;
22
+ description = '操作栏,用于表格。';
23
+ tags = ['展示'];
24
+ icon = '';
25
+ scaffold = {
26
+ type: 'operation',
27
+ label: '操作',
28
+ buttons: [
29
+ {
30
+ label: '按钮',
31
+ type: 'button'
32
+ }
33
+ ]
34
+ };
35
+ previewSchema = {
36
+ type: 'tpl',
37
+ tpl: '操作栏'
38
+ };
39
+
40
+ regions: Array<RegionConfig> = [
41
+ {
42
+ key: 'buttons',
43
+ label: '按钮集',
44
+ renderMethod: 'render',
45
+ insertPosition: 'inner',
46
+ preferTag: '按钮'
47
+ }
48
+ ];
49
+
50
+ panelTitle = '操作栏';
51
+ panelBodyCreator = (context: BaseEventContext) => {
52
+ return [
53
+ getSchemaTpl('className', {
54
+ name: 'innerClassName'
55
+ }),
56
+
57
+ {
58
+ children: (
59
+ <Button
60
+ level="info"
61
+ size="sm"
62
+ className="m-b-sm"
63
+ block
64
+ onClick={() => {
65
+ // this.manager.showInsertPanel('buttons', context.id, '按钮');
66
+ this.manager.showRendererPanel(
67
+ '按钮',
68
+ '请从左侧组件面板中点击添加新的按钮'
69
+ );
70
+ }}
71
+ >
72
+ 添加按钮
73
+ </Button>
74
+ )
75
+ }
76
+ ];
77
+ };
78
+
79
+ buildSubRenderers(
80
+ context: RendererEventContext,
81
+ renderers: Array<SubRendererInfo>
82
+ ): BasicSubRenderInfo | Array<BasicSubRenderInfo> | void {
83
+ if (
84
+ context &&
85
+ context.info &&
86
+ context.info.renderer &&
87
+ (context.info.renderer.name === 'table' ||
88
+ context.info.renderer.name === 'crud')
89
+ ) {
90
+ return super.buildSubRenderers.apply(this, arguments);
91
+ }
92
+ }
93
+ }
94
+
95
+ registerEditorPlugin(OperationPlugin);