amis-editor 4.1.0-beta.2 → 4.1.0-beta.20

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 +4 -0
  5. package/dist/component/VRenderer.d.ts +4 -0
  6. package/dist/component/base/SearchCustomRendererPanel.d.ts +15 -0
  7. package/dist/component/base/SearchPanel.d.ts +83 -0
  8. package/dist/component/base/SearchRendererPanel.d.ts +2 -42
  9. package/dist/exports.min.js +1 -1
  10. package/dist/index.d.ts +4 -1
  11. package/dist/index.min.js +1 -1
  12. package/dist/manager.d.ts +14 -3
  13. package/dist/plugin/Card.d.ts +1 -0
  14. package/dist/plugin/Cards.d.ts +1 -0
  15. package/dist/plugin/Carousel.d.ts +1 -0
  16. package/dist/plugin/Chart.d.ts +1 -0
  17. package/dist/plugin/Collapse.d.ts +1 -0
  18. package/dist/plugin/Custom.d.ts +3 -0
  19. package/dist/plugin/CustomRegion.d.ts +43 -0
  20. package/dist/plugin/Flex.d.ts +1 -0
  21. package/dist/plugin/Form/Control.d.ts +1 -0
  22. package/dist/plugin/Form/Form.d.ts +19 -3
  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/Wizard.d.ts +11 -2
  46. package/dist/plugin/Wrapper.d.ts +1 -0
  47. package/dist/plugin.d.ts +2 -2
  48. package/dist/store/editor.d.ts +20 -2
  49. package/dist/store/node.d.ts +6 -0
  50. package/dist/style.css +1 -1
  51. package/dist/util.d.ts +7 -2
  52. package/package.json +6 -3
  53. package/src/component/schemaTpl.tsx +2155 -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,222 @@
1
+ import {relativeValueRe} from 'amis';
2
+ import {availableLanguages} from 'amis/lib/renderers/Form/Editor';
3
+ import {
4
+ defaultValue,
5
+ getSchemaTpl,
6
+ valuePipeOut
7
+ } from '../../component/schemaTpl';
8
+ import {registerEditorPlugin} from '../../manager';
9
+ import {
10
+ BasePlugin,
11
+ BasicSubRenderInfo,
12
+ RendererEventContext,
13
+ SubRendererInfo
14
+ } from '../../plugin';
15
+
16
+ export class NestedSelectControlPlugin extends BasePlugin {
17
+ // 关联渲染器名字
18
+ rendererName = 'nested-select';
19
+ $schema = '/schemas/NestedSelectControlSchema.json';
20
+
21
+ // 组件名称
22
+ name = '嵌套下拉框';
23
+ isBaseComponent = true;
24
+ icon = 'fa fa-indent';
25
+ description = `适用于选项中含有子项,可通过<code>source</code>拉取选项,支持多选`;
26
+ docLink = '/amis/zh-CN/components/form/nestedselect';
27
+ tags = ['表单项'];
28
+ scaffold = {
29
+ type: 'nested-select',
30
+ label: '嵌套下拉框',
31
+ name: 'nestedSelect',
32
+ options: [
33
+ {
34
+ label: '选项A',
35
+ value: 'A'
36
+ },
37
+
38
+ {
39
+ label: '选项B',
40
+ value: 'B',
41
+ children: [
42
+ {
43
+ label: '选项C',
44
+ value: 'C'
45
+ },
46
+ {
47
+ label: '选项D',
48
+ value: 'D'
49
+ }
50
+ ]
51
+ }
52
+ ]
53
+ };
54
+ previewSchema: any = {
55
+ type: 'form',
56
+ className: 'text-left',
57
+ mode: 'horizontal',
58
+ wrapWithPanel: false,
59
+ body: [
60
+ {
61
+ ...this.scaffold
62
+ }
63
+ ]
64
+ };
65
+
66
+ panelTitle = '嵌套下拉';
67
+
68
+ panelDefinitions = {
69
+ options: {
70
+ label: '选项 Options',
71
+ name: 'options',
72
+ type: 'combo',
73
+ multiple: true,
74
+ multiLine: true,
75
+ draggable: true,
76
+ addButtonText: '新增选项',
77
+ scaffold: {
78
+ label: '',
79
+ value: ''
80
+ },
81
+ items: [
82
+ {
83
+ type: 'group',
84
+ body: [
85
+ {
86
+ type: 'input-text',
87
+ name: 'label',
88
+ placeholder: '名称',
89
+ required: true
90
+ },
91
+
92
+ {
93
+ type: 'input-text',
94
+ name: 'value',
95
+ placeholder: '值',
96
+ unique: true
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ $ref: 'options',
102
+ label: '子选项',
103
+ name: 'children',
104
+ addButtonText: '新增子选项'
105
+ }
106
+ ]
107
+ }
108
+ };
109
+ panelBody = [
110
+ getSchemaTpl('tabs', [
111
+ {
112
+ title: '常规',
113
+ body: [
114
+ getSchemaTpl('switchDefaultValue'),
115
+ {
116
+ type: 'input-text',
117
+ name: 'value',
118
+ label: '默认值',
119
+ visibleOn: 'typeof this.value !== "undefined"'
120
+ },
121
+
122
+ getSchemaTpl('clearable'),
123
+
124
+ {
125
+ type: 'switch',
126
+ name: 'searchable',
127
+ label: '可否检索',
128
+ mode: 'inline',
129
+ className: 'w-full'
130
+ },
131
+ {
132
+ type: 'input-text',
133
+ name: 'searchPromptText',
134
+ label: '搜索框占位文本'
135
+ },
136
+ {
137
+ type: 'input-text',
138
+ name: 'noResultsText',
139
+ label: '无结果时的文本'
140
+ },
141
+ {
142
+ type: 'switch',
143
+ name: 'hideNodePathLabel',
144
+ label: '隐藏选中节点的祖先节点文本信息',
145
+ mode: 'inline',
146
+ className: 'w-full'
147
+ },
148
+ {
149
+ type: 'switch',
150
+ name: 'enableNodePath',
151
+ label: '节点路径模式',
152
+ mode: 'inline',
153
+ className: 'w-full'
154
+ },
155
+ {
156
+ type: 'switch',
157
+ name: 'onlyChildren',
158
+ label: '选中父节点时只使用子节点的值',
159
+ mode: 'inline',
160
+ className: 'w-full'
161
+ },
162
+ {
163
+ type: 'input-text',
164
+ name: 'pathSeparator',
165
+ visibleOn: 'this.enableNodePath',
166
+ label: '节点路径的分隔符'
167
+ },
168
+ getSchemaTpl('borderMode'),
169
+ getSchemaTpl('fieldSet', {
170
+ title: '选项',
171
+ body: [
172
+ {
173
+ $ref: 'options',
174
+ name: 'options'
175
+ },
176
+ getSchemaTpl('api', {
177
+ name: 'source',
178
+ label: '获取选项接口'
179
+ }),
180
+ getSchemaTpl('multiple'),
181
+
182
+ {
183
+ name: 'cascade',
184
+ visibleOn: 'data.multiple',
185
+ label: '不自动选中子节点?',
186
+ description: '选中父级时,孩子节点是否自动选中',
187
+ type: 'switch',
188
+ mode: 'inline',
189
+ className: 'w-full'
190
+ },
191
+
192
+ {
193
+ name: 'withChildren',
194
+ visibleOn: 'data.cascade !== true && data.multiple',
195
+ label: '数值是否携带子节点',
196
+ type: 'switch',
197
+ mode: 'inline',
198
+ className: 'w-full'
199
+ },
200
+
201
+ getSchemaTpl('joinValues'),
202
+ getSchemaTpl('delimiter'),
203
+ getSchemaTpl('extractValue'),
204
+ getSchemaTpl('autoFill')
205
+ ]
206
+ })
207
+ ]
208
+ },
209
+ {
210
+ title: '外观',
211
+ body: [
212
+ getSchemaTpl('className', {
213
+ label: '菜单类名',
214
+ name: 'menuClassName'
215
+ })
216
+ ]
217
+ }
218
+ ])
219
+ ];
220
+ }
221
+
222
+ registerEditorPlugin(NestedSelectControlPlugin);
@@ -0,0 +1,217 @@
1
+ import React from 'react';
2
+ import {Button} from 'amis';
3
+ import omit = require('lodash/omit');
4
+ import {availableLanguages} from 'amis/lib/renderers/Form/Editor';
5
+ import {
6
+ defaultValue,
7
+ getSchemaTpl,
8
+ valuePipeOut
9
+ } from '../../component/schemaTpl';
10
+ import {registerEditorPlugin} from '../../manager';
11
+ import {
12
+ BaseEventContext,
13
+ BasePlugin,
14
+ BasicSubRenderInfo,
15
+ BasicToolbarItem,
16
+ ContextMenuEventContext,
17
+ ContextMenuItem,
18
+ RendererEventContext,
19
+ SubRendererInfo
20
+ } from '../../plugin';
21
+ import {diff} from '../../../src/util';
22
+
23
+ export class PickerControlPlugin extends BasePlugin {
24
+ // 关联渲染器名字
25
+ rendererName = 'picker';
26
+ $schema = '/schemas/PickerControlSchema.json';
27
+
28
+ // 组件名称
29
+ name = '列表选取';
30
+ isBaseComponent = true;
31
+ icon = 'fa fa-window-restore';
32
+ description = `通过<code>pickerSchema</code>配置可供选取的数据源进行选择需要的数据,支持多选`;
33
+ docLink = '/amis/zh-CN/components/form/picker';
34
+ tags = ['表单项'];
35
+ scaffold = {
36
+ type: 'picker',
37
+ label: '列表选取',
38
+ name: 'picker',
39
+ options: [
40
+ {
41
+ label: '选项A',
42
+ value: 'A'
43
+ },
44
+
45
+ {
46
+ label: '选项B',
47
+ value: 'B'
48
+ }
49
+ ]
50
+ };
51
+ previewSchema: any = {
52
+ type: 'form',
53
+ className: 'text-left',
54
+ mode: 'horizontal',
55
+ wrapWithPanel: false,
56
+ body: [
57
+ {
58
+ ...this.scaffold
59
+ }
60
+ ]
61
+ };
62
+
63
+ panelTitle = '列表选取';
64
+ panelBodyCreator = (context: BaseEventContext) => {
65
+ return [
66
+ {
67
+ type: 'switch',
68
+ name: 'embed',
69
+ mode: 'inline',
70
+ className: 'w-full',
71
+ label: '开启内嵌模式'
72
+ },
73
+
74
+ getSchemaTpl('switchDefaultValue'),
75
+
76
+ {
77
+ type: 'input-text',
78
+ name: 'value',
79
+ label: '默认值',
80
+ visibleOn: 'typeof this.value !== "undefined"'
81
+ },
82
+
83
+ getSchemaTpl('fieldSet', {
84
+ title: '选项',
85
+ body: [
86
+ getSchemaTpl('options'),
87
+ getSchemaTpl('api', {
88
+ name: 'source',
89
+ label: '获取选项接口'
90
+ }),
91
+
92
+ {
93
+ children: (
94
+ <Button
95
+ size="sm"
96
+ level="danger"
97
+ className="m-b"
98
+ onClick={this.editDetail.bind(this, context.id)}
99
+ block
100
+ >
101
+ 配置选框详情
102
+ </Button>
103
+ )
104
+ },
105
+
106
+ {
107
+ label: 'labelTpl',
108
+ type: 'textarea',
109
+ name: 'labelTpl',
110
+ labelRemark: '已选定数据的展示样式',
111
+ description:
112
+ '支持使用 <code>\\${xxx}</code> 来获取变量,或者用 lodash.template 语法来写模板逻辑。<a target="_blank" href="/amis/zh-CN/docs/concepts/template">详情</a>'
113
+ },
114
+
115
+ {
116
+ type: 'button-group-select',
117
+ name: 'modalMode',
118
+ label: '选框类型',
119
+ value: 'dialog',
120
+ size: 'xs',
121
+ options: [
122
+ {
123
+ label: '弹框',
124
+ value: 'dialog'
125
+ },
126
+
127
+ {
128
+ label: '抽出式弹框',
129
+ value: 'drawer'
130
+ }
131
+ ]
132
+ },
133
+
134
+ getSchemaTpl('multiple'),
135
+ getSchemaTpl('joinValues'),
136
+ getSchemaTpl('delimiter'),
137
+ getSchemaTpl('extractValue'),
138
+ getSchemaTpl('autoFill')
139
+ ]
140
+ })
141
+ ];
142
+ };
143
+
144
+ buildEditorToolbar(
145
+ {id, info}: BaseEventContext,
146
+ toolbars: Array<BasicToolbarItem>
147
+ ) {
148
+ if (info.renderer.name === this.rendererName) {
149
+ toolbars.push({
150
+ icon: 'fa fa-expand',
151
+ order: 100,
152
+ tooltip: '配置选框详情',
153
+ onClick: this.editDetail.bind(this, id)
154
+ });
155
+ }
156
+ }
157
+
158
+ buildEditorContextMenu(
159
+ {id, schema, region, info}: ContextMenuEventContext,
160
+ menus: Array<ContextMenuItem>
161
+ ) {
162
+ if (info.renderer.name === this.rendererName) {
163
+ menus.push('|', {
164
+ label: '配置选框详情',
165
+ onSelect: this.editDetail.bind(this, id)
166
+ });
167
+ }
168
+ }
169
+
170
+ editDetail(id: string) {
171
+ const manager = this.manager;
172
+ const store = manager.store;
173
+ const node = store.getNodeById(id)!;
174
+ const value = store.getValueOf(id);
175
+
176
+ if (!node || !value) {
177
+ return;
178
+ }
179
+
180
+ const component = node.getComponent();
181
+
182
+ const schema = {
183
+ type: 'crud',
184
+ mode: 'list',
185
+ ...(value.pickerSchema || {
186
+ listItem: {
187
+ title: '${label}'
188
+ }
189
+ }),
190
+ api: value.source,
191
+ pickerMode: true,
192
+ multiple: value.multiple
193
+ };
194
+
195
+ this.manager.openSubEditor({
196
+ title: '配置选框详情',
197
+ value: schema,
198
+ data: {options: component.props.options},
199
+ onChange: newValue => {
200
+ newValue = {
201
+ ...value,
202
+ pickerSchema: {...newValue},
203
+ source: newValue.api
204
+ };
205
+
206
+ delete newValue.pickerSchema.api;
207
+ delete newValue.pickerSchema.type;
208
+ delete newValue.pickerSchema.pickerMode;
209
+ delete newValue.pickerSchema.multiple;
210
+
211
+ manager.panelChangeValue(newValue, diff(value, newValue));
212
+ }
213
+ });
214
+ }
215
+ }
216
+
217
+ registerEditorPlugin(PickerControlPlugin);
@@ -0,0 +1,130 @@
1
+ import {relativeValueRe} from 'amis';
2
+ import {availableLanguages} from 'amis/lib/renderers/Form/Editor';
3
+ import {
4
+ defaultValue,
5
+ getSchemaTpl,
6
+ valuePipeOut
7
+ } from '../../component/schemaTpl';
8
+ import {registerEditorPlugin} from '../../manager';
9
+ import {
10
+ BasePlugin,
11
+ BasicSubRenderInfo,
12
+ RendererEventContext,
13
+ SubRendererInfo
14
+ } from '../../plugin';
15
+ import flatten = require('lodash/flatten');
16
+
17
+ export class RadiosControlPlugin extends BasePlugin {
18
+ // 关联渲染器名字
19
+ rendererName = 'radios';
20
+ $schema = '/schemas/RadiosControlSchema.json';
21
+
22
+ order = -460;
23
+
24
+ // 组件名称
25
+ name = '单选框';
26
+ isBaseComponent = true;
27
+ icon = 'fa fa-dot-circle-o';
28
+ description = `通过<code>options</code>配置选项,可通过<code>source</code>拉取选项`;
29
+ docLink = '/amis/zh-CN/components/form/radios';
30
+ tags = ['表单项'];
31
+ scaffold = {
32
+ type: 'radios',
33
+ label: '单选框',
34
+ name: 'radios',
35
+ options: [
36
+ {
37
+ label: '选项A',
38
+ value: 'A'
39
+ },
40
+
41
+ {
42
+ label: '选项B',
43
+ value: 'B'
44
+ }
45
+ ]
46
+ };
47
+ previewSchema: any = {
48
+ type: 'form',
49
+ className: 'text-left',
50
+ mode: 'horizontal',
51
+ wrapWithPanel: false,
52
+ body: [
53
+ {
54
+ ...this.scaffold,
55
+ value: 'A'
56
+ }
57
+ ]
58
+ };
59
+
60
+ panelTitle = '单选框';
61
+ panelBody = [
62
+ getSchemaTpl('tabs', [
63
+ {
64
+ title: '常规',
65
+ body: [
66
+ getSchemaTpl('switchDefaultValue'),
67
+ {
68
+ type: 'radios',
69
+ name: 'value',
70
+ label: '默认值',
71
+ source: '${options}',
72
+ visibleOn: 'typeof this.value !== "undefined"',
73
+ multiple: true
74
+ },
75
+ {
76
+ label: '是否默认选择第一个',
77
+ name: 'selectFirst',
78
+ type: 'switch',
79
+ mode: 'inline',
80
+ className: 'w-full'
81
+ },
82
+ getSchemaTpl('fieldSet', {
83
+ title: '选项',
84
+ body: [
85
+ getSchemaTpl('options'),
86
+ getSchemaTpl('source'),
87
+
88
+ getSchemaTpl('joinValues', {
89
+ visibleOn: true
90
+ }),
91
+
92
+ getSchemaTpl('extractValue'),
93
+ getSchemaTpl('autoFill')
94
+ ]
95
+ })
96
+ ]
97
+ },
98
+ {
99
+ title: '外观',
100
+ body: [
101
+ {
102
+ label: '选项在一行显示',
103
+ name: 'inline',
104
+ type: 'switch',
105
+ visibleOn: 'data.mode != "inline"',
106
+ mode: 'inline',
107
+ className: 'w-full',
108
+ pipeIn: defaultValue(true)
109
+ },
110
+ {
111
+ label: '每行显示多少列',
112
+ name: 'columnsCount',
113
+ hiddenOn:
114
+ 'typeof data.inline === "undefined" || data.inline === true',
115
+ type: 'input-range',
116
+ min: 1,
117
+ max: 6,
118
+ pipeIn: defaultValue(1)
119
+ },
120
+ getSchemaTpl('className', {
121
+ label: '单个 Radio 的 CSS 类名',
122
+ name: 'itemClassName'
123
+ })
124
+ ]
125
+ }
126
+ ])
127
+ ];
128
+ }
129
+
130
+ registerEditorPlugin(RadiosControlPlugin);