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.
- package/dist/component/Breadcrumb.d.ts +23 -2
- package/dist/component/ClassNameControl.d.ts +1 -1
- package/dist/component/Control/APIControl.d.ts +2 -2
- package/dist/component/Control/OptionControl.d.ts +3 -3
- package/dist/component/Control/PopoverEdit.d.ts +4 -4
- package/dist/component/Control/ValidationControl.d.ts +1 -1
- package/dist/component/Editor.d.ts +20 -1
- package/dist/component/IFramePreview.d.ts +2 -1
- package/dist/component/NodeWrapper.d.ts +1 -1
- package/dist/component/Panel/RenderersPanel.d.ts +1 -2
- package/dist/component/Preview.d.ts +3 -1
- package/dist/component/RegionWrapper.d.ts +4 -0
- package/dist/component/ScaffoldModal.d.ts +1 -1
- package/dist/component/VRenderer.d.ts +4 -0
- package/dist/component/base/InputComponentName.d.ts +1 -1
- package/dist/component/base/SearchCustomRendererPanel.d.ts +15 -0
- package/dist/component/base/SearchPanel.d.ts +83 -0
- package/dist/component/base/SearchRendererPanel.d.ts +2 -42
- package/dist/component/base/ShortcutKey.d.ts +23 -0
- package/dist/env.d.ts +1 -1
- package/dist/exports.min.js +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.min.js +1 -1
- package/dist/manager.d.ts +16 -4
- package/dist/plugin/Alert.d.ts +1 -1
- package/dist/plugin/Button.d.ts +1 -1
- package/dist/plugin/Card.d.ts +1 -0
- package/dist/plugin/Cards.d.ts +2 -1
- package/dist/plugin/Carousel.d.ts +1 -0
- package/dist/plugin/Chart.d.ts +1 -0
- package/dist/plugin/Collapse.d.ts +1 -0
- package/dist/plugin/Custom.d.ts +3 -0
- package/dist/plugin/CustomRegion.d.ts +40 -0
- package/dist/plugin/Dialog.d.ts +1 -1
- package/dist/plugin/Drawer.d.ts +1 -1
- package/dist/plugin/DropDownButton.d.ts +1 -1
- package/dist/plugin/Each.d.ts +1 -1
- package/dist/plugin/Flex.d.ts +1 -0
- package/dist/plugin/Form/Control.d.ts +1 -0
- package/dist/plugin/Form/Form.d.ts +19 -3
- package/dist/plugin/Form/Formula.d.ts +3 -3
- package/dist/plugin/Form/InputURL.d.ts +1 -0
- package/dist/plugin/Form/Switch.d.ts +2 -0
- package/dist/plugin/Grid.d.ts +1 -0
- package/dist/plugin/HBox.d.ts +1 -0
- package/dist/plugin/IFrame.d.ts +3 -3
- package/dist/plugin/Json.d.ts +1 -0
- package/dist/plugin/List.d.ts +2 -1
- package/dist/plugin/Mapping.d.ts +1 -0
- package/dist/plugin/Markdown.d.ts +1 -0
- package/dist/plugin/Nav.d.ts +1 -0
- package/dist/plugin/Page.d.ts +1 -1
- package/dist/plugin/Panel/Outline.d.ts +8 -0
- package/dist/plugin/Progress.d.ts +1 -0
- package/dist/plugin/QRCode.d.ts +1 -0
- package/dist/plugin/Reset.d.ts +0 -1
- package/dist/plugin/Service.d.ts +1 -0
- package/dist/plugin/Sparkline.d.ts +1 -0
- package/dist/plugin/Status.d.ts +1 -0
- package/dist/plugin/Steps.d.ts +1 -0
- package/dist/plugin/Submit.d.ts +0 -1
- package/dist/plugin/Table.d.ts +1 -1
- package/dist/plugin/TableView.d.ts +1 -0
- package/dist/plugin/Tasks.d.ts +1 -0
- package/dist/plugin/TooltipWrapper.d.ts +1 -0
- package/dist/plugin/Video.d.ts +1 -0
- package/dist/plugin/WebComponent.d.ts +1 -0
- package/dist/plugin/Wizard.d.ts +11 -2
- package/dist/plugin/Wrapper.d.ts +1 -0
- package/dist/plugin.d.ts +8 -7
- package/dist/store/editor.d.ts +58 -22
- package/dist/store/node.d.ts +6 -0
- package/dist/style.css +1 -1
- package/dist/util.d.ts +1 -1
- package/package.json +9 -3
- package/src/component/schemaTpl.tsx +2157 -0
- package/src/plugin/Alert.tsx +87 -0
- package/src/plugin/AnchorNav.tsx +233 -0
- package/src/plugin/Audio.tsx +154 -0
- package/src/plugin/Avatar.tsx +77 -0
- package/src/plugin/Breadcrumb.tsx +107 -0
- package/src/plugin/Button.tsx +281 -0
- package/src/plugin/ButtonGroup.tsx +85 -0
- package/src/plugin/ButtonToolbar.tsx +87 -0
- package/src/plugin/CRUD.tsx +1835 -0
- package/src/plugin/Card.tsx +290 -0
- package/src/plugin/Cards.tsx +318 -0
- package/src/plugin/Carousel.tsx +377 -0
- package/src/plugin/Chart.tsx +218 -0
- package/src/plugin/CodeView.tsx +60 -0
- package/src/plugin/Collapse.tsx +136 -0
- package/src/plugin/CollapseGroup.tsx +167 -0
- package/src/plugin/Container.tsx +40 -0
- package/src/plugin/Custom.tsx +128 -0
- package/src/plugin/CustomRegion.tsx +156 -0
- package/src/plugin/Date.tsx +74 -0
- package/src/plugin/Datetime.tsx +68 -0
- package/src/plugin/Dialog.tsx +176 -0
- package/src/plugin/Divider.tsx +36 -0
- package/src/plugin/Drawer.tsx +214 -0
- package/src/plugin/DropDownButton.tsx +235 -0
- package/src/plugin/Each.tsx +150 -0
- package/src/plugin/ErrorRenderer.tsx +15 -0
- package/src/plugin/Flex.tsx +151 -0
- package/src/plugin/Form/ButtonGroupSelect.tsx +75 -0
- package/src/plugin/Form/ButtonToolbar.tsx +110 -0
- package/src/plugin/Form/ChainedSelect.tsx +70 -0
- package/src/plugin/Form/Checkbox.tsx +87 -0
- package/src/plugin/Form/Checkboxes.tsx +167 -0
- package/src/plugin/Form/CodeEditor.tsx +81 -0
- package/src/plugin/Form/Combo.tsx +582 -0
- package/src/plugin/Form/ConditionBuilder.tsx +315 -0
- package/src/plugin/Form/Control.tsx +139 -0
- package/src/plugin/Form/DiffEditor.tsx +111 -0
- package/src/plugin/Form/FieldSet.tsx +163 -0
- package/src/plugin/Form/Form.tsx +687 -0
- package/src/plugin/Form/Formula.tsx +79 -0
- package/src/plugin/Form/Group.tsx +295 -0
- package/src/plugin/Form/Hidden.tsx +44 -0
- package/src/plugin/Form/InputArray.tsx +228 -0
- package/src/plugin/Form/InputCity.tsx +93 -0
- package/src/plugin/Form/InputColor.tsx +123 -0
- package/src/plugin/Form/InputDate.tsx +175 -0
- package/src/plugin/Form/InputDateRange.tsx +225 -0
- package/src/plugin/Form/InputDateTime.tsx +183 -0
- package/src/plugin/Form/InputDateTimeRange.tsx +221 -0
- package/src/plugin/Form/InputEmail.tsx +33 -0
- package/src/plugin/Form/InputExcel.tsx +85 -0
- package/src/plugin/Form/InputFile.tsx +221 -0
- package/src/plugin/Form/InputGroup.tsx +96 -0
- package/src/plugin/Form/InputImage.tsx +266 -0
- package/src/plugin/Form/InputKV.tsx +72 -0
- package/src/plugin/Form/InputMonth.tsx +35 -0
- package/src/plugin/Form/InputMonthRange.tsx +195 -0
- package/src/plugin/Form/InputNumber.tsx +89 -0
- package/src/plugin/Form/InputPassword.tsx +33 -0
- package/src/plugin/Form/InputQuarter.tsx +35 -0
- package/src/plugin/Form/InputQuarterRange.tsx +195 -0
- package/src/plugin/Form/InputRange.tsx +121 -0
- package/src/plugin/Form/InputRating.tsx +78 -0
- package/src/plugin/Form/InputRepeat.tsx +57 -0
- package/src/plugin/Form/InputRichText.tsx +186 -0
- package/src/plugin/Form/InputSubForm.tsx +189 -0
- package/src/plugin/Form/InputTable.tsx +434 -0
- package/src/plugin/Form/InputTag.tsx +70 -0
- package/src/plugin/Form/InputText.tsx +186 -0
- package/src/plugin/Form/InputTime.tsx +85 -0
- package/src/plugin/Form/InputTree.tsx +229 -0
- package/src/plugin/Form/InputURL.tsx +34 -0
- package/src/plugin/Form/InputYear.tsx +35 -0
- package/src/plugin/Form/Item.tsx +327 -0
- package/src/plugin/Form/ListSelect.tsx +73 -0
- package/src/plugin/Form/LocationPicker.tsx +62 -0
- package/src/plugin/Form/MatrixCheckboxes.tsx +136 -0
- package/src/plugin/Form/NestedSelect.tsx +211 -0
- package/src/plugin/Form/Picker.tsx +209 -0
- package/src/plugin/Form/Radios.tsx +119 -0
- package/src/plugin/Form/Select.tsx +233 -0
- package/src/plugin/Form/Static.tsx +322 -0
- package/src/plugin/Form/Switch.tsx +107 -0
- package/src/plugin/Form/TabsTransfer.tsx +259 -0
- package/src/plugin/Form/Textarea.tsx +83 -0
- package/src/plugin/Form/Transfer.tsx +368 -0
- package/src/plugin/Form/TreeSelect.tsx +263 -0
- package/src/plugin/Form/UUID.tsx +48 -0
- package/src/plugin/Grid.tsx +798 -0
- package/src/plugin/HBox.tsx +727 -0
- package/src/plugin/IFrame.tsx +70 -0
- package/src/plugin/Image.tsx +314 -0
- package/src/plugin/Images.tsx +231 -0
- package/src/plugin/Json.tsx +69 -0
- package/src/plugin/Link.tsx +93 -0
- package/src/plugin/List.tsx +278 -0
- package/src/plugin/ListItem.tsx +229 -0
- package/src/plugin/Log.tsx +52 -0
- package/src/plugin/Mapping.tsx +149 -0
- package/src/plugin/Markdown.tsx +47 -0
- package/src/plugin/Nav.tsx +184 -0
- package/src/plugin/Operation.tsx +95 -0
- package/src/plugin/Others/Action.tsx +426 -0
- package/src/plugin/Others/BasicToolbar.tsx +585 -0
- package/src/plugin/Others/DataDebug.tsx +134 -0
- package/src/plugin/Others/TableCell.tsx +480 -0
- package/src/plugin/Others/Unknown.tsx +37 -0
- package/src/plugin/Page.tsx +306 -0
- package/src/plugin/Panel/AvailableRenderers.tsx +41 -0
- package/src/plugin/Panel/Code.tsx +44 -0
- package/src/plugin/Panel/Name.tsx +26 -0
- package/src/plugin/Panel/Outline.tsx +40 -0
- package/src/plugin/Panel.tsx +243 -0
- package/src/plugin/Plain.tsx +84 -0
- package/src/plugin/Progress.tsx +125 -0
- package/src/plugin/Property.tsx +139 -0
- package/src/plugin/QRCode.tsx +96 -0
- package/src/plugin/Reset.tsx +23 -0
- package/src/plugin/Service.tsx +162 -0
- package/src/plugin/Sparkline.tsx +40 -0
- package/src/plugin/Status.tsx +76 -0
- package/src/plugin/Steps.tsx +128 -0
- package/src/plugin/Submit.tsx +23 -0
- package/src/plugin/Table.tsx +428 -0
- package/src/plugin/TableView.tsx +709 -0
- package/src/plugin/Tabs.tsx +362 -0
- package/src/plugin/Tasks.tsx +274 -0
- package/src/plugin/Time.tsx +68 -0
- package/src/plugin/TooltipWrapper.tsx +193 -0
- package/src/plugin/Tpl.tsx +158 -0
- package/src/plugin/Video.tsx +158 -0
- package/src/plugin/WebComponent.tsx +53 -0
- package/src/plugin/Wizard.tsx +740 -0
- package/src/plugin/Wrapper.tsx +107 -0
- package/src/plugin.ts +1050 -0
- package/dist/150a58f3318ca7541ed9.png +0 -0
- package/dist/471adb97c322b226e589.png +0 -0
- package/dist/4de5f42360bc5946c3c2.png +0 -0
- package/dist/4e9968bba3855f088fed.png +0 -0
- package/dist/7f09c38ebc687fea847a.png +0 -0
- package/dist/c94073576487510314ea.png +0 -0
@@ -0,0 +1,110 @@
|
|
1
|
+
import {registerEditorPlugin} from '../../manager';
|
2
|
+
import {BasePlugin, RegionConfig} from '../../plugin';
|
3
|
+
import {getSchemaTpl} from '../../component/schemaTpl';
|
4
|
+
|
5
|
+
export class ButtonToolbarControlPlugin extends BasePlugin {
|
6
|
+
// 关联渲染器名字
|
7
|
+
rendererName = 'button-toolbar';
|
8
|
+
$schema = '/schemas/ButtonToolbarControlSchema.json';
|
9
|
+
|
10
|
+
// 组件名称
|
11
|
+
name = '按钮工具栏';
|
12
|
+
isBaseComponent = true;
|
13
|
+
icon = 'fa fa-ellipsis-h';
|
14
|
+
description = '可以用来放置多个按钮或者按钮组,按钮之间会存在一定的间隔';
|
15
|
+
docLink = '/amis/zh-CN/components/form/button-toolbar';
|
16
|
+
tags = ['表单项', '按钮'];
|
17
|
+
scaffold = {
|
18
|
+
type: 'button-toolbar',
|
19
|
+
buttons: [
|
20
|
+
{
|
21
|
+
type: 'button',
|
22
|
+
label: '按钮1',
|
23
|
+
actionType: 'dialog',
|
24
|
+
dialog: {
|
25
|
+
title: '系统提示',
|
26
|
+
body: '对你点击了'
|
27
|
+
}
|
28
|
+
},
|
29
|
+
{
|
30
|
+
type: 'button',
|
31
|
+
label: '按钮2',
|
32
|
+
actionType: 'dialog',
|
33
|
+
dialog: {
|
34
|
+
title: '系统提示',
|
35
|
+
body: '对你点击了'
|
36
|
+
}
|
37
|
+
}
|
38
|
+
]
|
39
|
+
};
|
40
|
+
previewSchema: any = {
|
41
|
+
type: 'form',
|
42
|
+
wrapWithPanel: false,
|
43
|
+
mode: 'horizontal',
|
44
|
+
body: {
|
45
|
+
...this.scaffold,
|
46
|
+
label: '按钮工具栏'
|
47
|
+
}
|
48
|
+
};
|
49
|
+
|
50
|
+
// 容器配置
|
51
|
+
regions: Array<RegionConfig> = [
|
52
|
+
{
|
53
|
+
key: 'buttons',
|
54
|
+
label: '按钮集合',
|
55
|
+
preferTag: '按钮',
|
56
|
+
renderMethod: 'renderButtons'
|
57
|
+
}
|
58
|
+
];
|
59
|
+
|
60
|
+
panelTitle = '工具栏';
|
61
|
+
panelBody = [
|
62
|
+
getSchemaTpl('tabs', [
|
63
|
+
{
|
64
|
+
title: '常规',
|
65
|
+
body: [
|
66
|
+
getSchemaTpl('label'),
|
67
|
+
getSchemaTpl('description'),
|
68
|
+
|
69
|
+
getSchemaTpl('remark'),
|
70
|
+
getSchemaTpl('labelRemark')
|
71
|
+
]
|
72
|
+
},
|
73
|
+
|
74
|
+
{
|
75
|
+
title: '外观',
|
76
|
+
body: [
|
77
|
+
getSchemaTpl('formItemMode'),
|
78
|
+
getSchemaTpl('horizontalMode'),
|
79
|
+
getSchemaTpl('horizontal', {
|
80
|
+
label: '',
|
81
|
+
visibleOn:
|
82
|
+
'(data.$$formMode == "horizontal" || data.mode == "horizontal") && data.label !== false && data.horizontal'
|
83
|
+
}),
|
84
|
+
|
85
|
+
getSchemaTpl('className'),
|
86
|
+
getSchemaTpl('className', {
|
87
|
+
label: 'Label CSS 类名',
|
88
|
+
name: 'labelClassName'
|
89
|
+
}),
|
90
|
+
getSchemaTpl('className', {
|
91
|
+
label: 'Input CSS 类名',
|
92
|
+
name: 'inputClassName'
|
93
|
+
}),
|
94
|
+
getSchemaTpl('className', {
|
95
|
+
label: '描述 CSS 类名',
|
96
|
+
name: 'descriptionClassName',
|
97
|
+
visibleOn: 'data.description'
|
98
|
+
})
|
99
|
+
]
|
100
|
+
},
|
101
|
+
|
102
|
+
{
|
103
|
+
title: '显隐',
|
104
|
+
body: [getSchemaTpl('ref'), getSchemaTpl('visible')]
|
105
|
+
}
|
106
|
+
])
|
107
|
+
];
|
108
|
+
}
|
109
|
+
|
110
|
+
registerEditorPlugin(ButtonToolbarControlPlugin);
|
@@ -0,0 +1,70 @@
|
|
1
|
+
import {registerEditorPlugin} from '../../manager';
|
2
|
+
import {
|
3
|
+
BasePlugin,
|
4
|
+
BasicSubRenderInfo,
|
5
|
+
RendererEventContext,
|
6
|
+
SubRendererInfo
|
7
|
+
} from '../../plugin';
|
8
|
+
import {getSchemaTpl} from '../../component/schemaTpl';
|
9
|
+
|
10
|
+
export class ChainedSelectControlPlugin extends BasePlugin {
|
11
|
+
// 关联渲染器名字
|
12
|
+
rendererName = 'chained-select';
|
13
|
+
$schema = '/schemas/ChainedSelectControlSchema.json';
|
14
|
+
|
15
|
+
// 组件名称
|
16
|
+
name = '级联下拉框';
|
17
|
+
isBaseComponent = true;
|
18
|
+
icon = 'fa fa-th-list';
|
19
|
+
description =
|
20
|
+
'通过<code>source</code>拉取选项,只要有返回结果,就可以无限级别增加';
|
21
|
+
docLink = '/amis/zh-CN/components/form/chain-select';
|
22
|
+
tags = ['表单项'];
|
23
|
+
scaffold = {
|
24
|
+
type: 'chained-select',
|
25
|
+
label: '级联选择',
|
26
|
+
name: 'chained-select'
|
27
|
+
};
|
28
|
+
previewSchema: any = {
|
29
|
+
type: 'form',
|
30
|
+
className: 'text-left',
|
31
|
+
wrapWithPanel: false,
|
32
|
+
mode: 'horizontal',
|
33
|
+
body: {
|
34
|
+
...this.scaffold
|
35
|
+
}
|
36
|
+
};
|
37
|
+
|
38
|
+
panelTitle = '级联选择';
|
39
|
+
panelBody = [
|
40
|
+
getSchemaTpl('switchDefaultValue'),
|
41
|
+
|
42
|
+
{
|
43
|
+
type: 'input-text',
|
44
|
+
name: 'value',
|
45
|
+
label: '默认值',
|
46
|
+
visibleOn: 'typeof this.value !== "undefined"',
|
47
|
+
description: '请填入选项 Options 中 value 值'
|
48
|
+
},
|
49
|
+
|
50
|
+
getSchemaTpl('api', {
|
51
|
+
name: 'source',
|
52
|
+
label: '获取选项接口',
|
53
|
+
description: `<div>可用变量说明</div><ul>
|
54
|
+
<li><code>value</code>当前值</li>
|
55
|
+
<li><code>level</code>拉取级别,从 <code>1</code>开始。</li>
|
56
|
+
<li><code>parentId</code>上一层选中的 <code>value</code> 值</li>
|
57
|
+
<li><code>parent</code>上一层选中选项,包含 <code>label</code> 和 <code>value</code> 的值。</li>
|
58
|
+
</ul>`
|
59
|
+
}),
|
60
|
+
getSchemaTpl('joinValues', {
|
61
|
+
visibleOn: true
|
62
|
+
}),
|
63
|
+
getSchemaTpl('delimiter', {
|
64
|
+
visibleOn: 'data.joinValues'
|
65
|
+
}),
|
66
|
+
getSchemaTpl('extractValue')
|
67
|
+
];
|
68
|
+
}
|
69
|
+
|
70
|
+
registerEditorPlugin(ChainedSelectControlPlugin);
|
@@ -0,0 +1,87 @@
|
|
1
|
+
import {
|
2
|
+
defaultValue,
|
3
|
+
getSchemaTpl,
|
4
|
+
valuePipeOut
|
5
|
+
} from '../../component/schemaTpl';
|
6
|
+
import {registerEditorPlugin} from '../../manager';
|
7
|
+
import {
|
8
|
+
BasePlugin,
|
9
|
+
BasicSubRenderInfo,
|
10
|
+
RendererEventContext,
|
11
|
+
SubRendererInfo
|
12
|
+
} from '../../plugin';
|
13
|
+
|
14
|
+
export class CheckboxControlPlugin extends BasePlugin {
|
15
|
+
// 关联渲染器名字
|
16
|
+
rendererName = 'checkbox';
|
17
|
+
$schema = '/schemas/CheckboxControlSchema.json';
|
18
|
+
|
19
|
+
// 组件名称
|
20
|
+
name = '勾选框';
|
21
|
+
isBaseComponent = true;
|
22
|
+
icon = 'fa fa-check-square-o';
|
23
|
+
description = '勾选框';
|
24
|
+
docLink = '/amis/zh-CN/components/form/checkbox';
|
25
|
+
tags = ['表单项'];
|
26
|
+
scaffold = {
|
27
|
+
type: 'checkbox',
|
28
|
+
option: '勾选框',
|
29
|
+
name: 'checkbox'
|
30
|
+
};
|
31
|
+
previewSchema: any = {
|
32
|
+
type: 'form',
|
33
|
+
className: 'text-left',
|
34
|
+
wrapWithPanel: false,
|
35
|
+
mode: 'horizontal',
|
36
|
+
body: [
|
37
|
+
{
|
38
|
+
value: true,
|
39
|
+
...this.scaffold,
|
40
|
+
label: '勾选表单'
|
41
|
+
}
|
42
|
+
]
|
43
|
+
};
|
44
|
+
|
45
|
+
panelTitle = '勾选框';
|
46
|
+
panelBody = [
|
47
|
+
{
|
48
|
+
name: 'option',
|
49
|
+
type: 'input-text',
|
50
|
+
label: '选项说明'
|
51
|
+
},
|
52
|
+
|
53
|
+
getSchemaTpl('switchDefaultValue', {
|
54
|
+
name: 'value',
|
55
|
+
pipeOut: (value: any, origin: any, data: any) =>
|
56
|
+
value ? data.trueValue ?? true : undefined
|
57
|
+
}),
|
58
|
+
{
|
59
|
+
type: 'switch',
|
60
|
+
name: 'value',
|
61
|
+
label: '默认勾选',
|
62
|
+
mode: 'inline',
|
63
|
+
className: 'w-full',
|
64
|
+
visibleOn: 'typeof this.value !== "undefined"',
|
65
|
+
pipeOut: (value: any, origin: any, data: any) =>
|
66
|
+
value ? data.trueValue ?? true : data.falseValue ?? false
|
67
|
+
},
|
68
|
+
|
69
|
+
{
|
70
|
+
type: 'input-text',
|
71
|
+
label: '勾选后的值',
|
72
|
+
name: 'trueValue',
|
73
|
+
pipeIn: defaultValue(true),
|
74
|
+
pipeOut: valuePipeOut
|
75
|
+
},
|
76
|
+
|
77
|
+
{
|
78
|
+
type: 'input-text',
|
79
|
+
label: '未勾选的值',
|
80
|
+
name: 'falseValue',
|
81
|
+
pipeIn: defaultValue(false),
|
82
|
+
pipeOut: valuePipeOut
|
83
|
+
}
|
84
|
+
];
|
85
|
+
}
|
86
|
+
|
87
|
+
registerEditorPlugin(CheckboxControlPlugin);
|
@@ -0,0 +1,167 @@
|
|
1
|
+
import {
|
2
|
+
defaultValue,
|
3
|
+
getSchemaTpl,
|
4
|
+
valuePipeOut
|
5
|
+
} from '../../component/schemaTpl';
|
6
|
+
import {registerEditorPlugin} from '../../manager';
|
7
|
+
import {
|
8
|
+
BasePlugin,
|
9
|
+
BasicSubRenderInfo,
|
10
|
+
RendererEventContext,
|
11
|
+
SubRendererInfo
|
12
|
+
} from '../../plugin';
|
13
|
+
|
14
|
+
export class CheckboxesControlPlugin extends BasePlugin {
|
15
|
+
// 关联渲染器名字
|
16
|
+
rendererName = 'checkboxes';
|
17
|
+
$schema = '/schemas/CheckboxesControlSchema.json';
|
18
|
+
|
19
|
+
order = -470;
|
20
|
+
|
21
|
+
// 组件名称
|
22
|
+
name = '复选框';
|
23
|
+
isBaseComponent = true;
|
24
|
+
icon = 'fa fa-check-square';
|
25
|
+
description =
|
26
|
+
'通过<code>options</code>配置多个勾选框,也可以通过<code>source</code>拉取选项';
|
27
|
+
docLink = '/amis/zh-CN/components/form/checkboxes';
|
28
|
+
tags = ['表单项'];
|
29
|
+
scaffold = {
|
30
|
+
type: 'checkboxes',
|
31
|
+
label: '复选框',
|
32
|
+
name: 'checkboxes',
|
33
|
+
options: [
|
34
|
+
{
|
35
|
+
label: '选项A',
|
36
|
+
value: 'A'
|
37
|
+
},
|
38
|
+
|
39
|
+
{
|
40
|
+
label: '选项B',
|
41
|
+
value: 'B'
|
42
|
+
}
|
43
|
+
]
|
44
|
+
};
|
45
|
+
previewSchema: any = {
|
46
|
+
type: 'form',
|
47
|
+
className: 'text-left',
|
48
|
+
mode: 'horizontal',
|
49
|
+
wrapWithPanel: false,
|
50
|
+
body: [
|
51
|
+
{
|
52
|
+
value: 'A',
|
53
|
+
...this.scaffold
|
54
|
+
}
|
55
|
+
]
|
56
|
+
};
|
57
|
+
|
58
|
+
panelTitle = '复选框';
|
59
|
+
panelBody = [
|
60
|
+
getSchemaTpl('tabs', [
|
61
|
+
{
|
62
|
+
title: '常规',
|
63
|
+
body: [
|
64
|
+
getSchemaTpl('switchDefaultValue', {
|
65
|
+
visibleOn: '!this.defaultCheckAll'
|
66
|
+
}),
|
67
|
+
|
68
|
+
{
|
69
|
+
type: 'checkboxes',
|
70
|
+
name: 'value',
|
71
|
+
label: '默认值',
|
72
|
+
source: '${options}',
|
73
|
+
visibleOn: 'typeof this.value !== "undefined"',
|
74
|
+
multiple: true
|
75
|
+
},
|
76
|
+
getSchemaTpl('fieldSet', {
|
77
|
+
title: '选项',
|
78
|
+
body: [
|
79
|
+
getSchemaTpl('options'),
|
80
|
+
getSchemaTpl('source'),
|
81
|
+
{
|
82
|
+
name: 'checkAll',
|
83
|
+
label: '是否开启全选功能',
|
84
|
+
type: 'switch',
|
85
|
+
mode: 'inline',
|
86
|
+
className: 'w-full'
|
87
|
+
},
|
88
|
+
|
89
|
+
{
|
90
|
+
name: 'defaultCheckAll',
|
91
|
+
label: '是否默认全选',
|
92
|
+
type: 'switch',
|
93
|
+
mode: 'inline',
|
94
|
+
className: 'w-full',
|
95
|
+
description: '勾选后,默认值的配置将无效。',
|
96
|
+
onChange: (
|
97
|
+
value: boolean,
|
98
|
+
oldValue: boolean,
|
99
|
+
model: any,
|
100
|
+
form: any
|
101
|
+
) => value && form.setValueByName('value', undefined)
|
102
|
+
},
|
103
|
+
|
104
|
+
getSchemaTpl('joinValues', {
|
105
|
+
visibleOn: true
|
106
|
+
}),
|
107
|
+
getSchemaTpl('delimiter', {
|
108
|
+
hiddenOn: 'data.joinValues === false'
|
109
|
+
}),
|
110
|
+
getSchemaTpl('extractValue'),
|
111
|
+
getSchemaTpl('autoFill'),
|
112
|
+
|
113
|
+
getSchemaTpl('creatable'),
|
114
|
+
getSchemaTpl('createBtnLabel'),
|
115
|
+
getSchemaTpl('api', {
|
116
|
+
label: '新增选项接口',
|
117
|
+
name: 'addApi'
|
118
|
+
}),
|
119
|
+
|
120
|
+
getSchemaTpl('editable'),
|
121
|
+
getSchemaTpl('api', {
|
122
|
+
label: '编辑选项接口',
|
123
|
+
name: 'editApi'
|
124
|
+
}),
|
125
|
+
|
126
|
+
getSchemaTpl('removable'),
|
127
|
+
getSchemaTpl('api', {
|
128
|
+
label: '删除选项接口',
|
129
|
+
name: 'deleteApi'
|
130
|
+
})
|
131
|
+
]
|
132
|
+
})
|
133
|
+
]
|
134
|
+
},
|
135
|
+
{
|
136
|
+
title: '外观',
|
137
|
+
body: [
|
138
|
+
{
|
139
|
+
label: '选项在一行显示',
|
140
|
+
name: 'inline',
|
141
|
+
type: 'switch',
|
142
|
+
visibleOn: 'data.mode != "inline"',
|
143
|
+
mode: 'inline',
|
144
|
+
className: 'w-full',
|
145
|
+
pipeIn: defaultValue(true)
|
146
|
+
},
|
147
|
+
{
|
148
|
+
label: '每行显示多少列',
|
149
|
+
name: 'columnsCount',
|
150
|
+
hiddenOn:
|
151
|
+
'typeof data.inline === "undefined" || data.inline === true',
|
152
|
+
type: 'input-range',
|
153
|
+
min: 1,
|
154
|
+
max: 6,
|
155
|
+
pipeIn: defaultValue(1)
|
156
|
+
},
|
157
|
+
getSchemaTpl('className', {
|
158
|
+
label: '单个 Checkbox 的 CSS 类名',
|
159
|
+
name: 'itemClassName'
|
160
|
+
})
|
161
|
+
]
|
162
|
+
}
|
163
|
+
])
|
164
|
+
];
|
165
|
+
}
|
166
|
+
|
167
|
+
registerEditorPlugin(CheckboxesControlPlugin);
|
@@ -0,0 +1,81 @@
|
|
1
|
+
import {availableLanguages} from 'amis/lib/renderers/Form/Editor';
|
2
|
+
import {defaultValue} from '../../component/schemaTpl';
|
3
|
+
import {registerEditorPlugin} from '../../manager';
|
4
|
+
import {BasePlugin} from '../../plugin';
|
5
|
+
|
6
|
+
export class CodeEditorControlPlugin extends BasePlugin {
|
7
|
+
// 关联渲染器名字
|
8
|
+
rendererName = 'editor';
|
9
|
+
$schema = '/schemas/EditorControlSchema.json';
|
10
|
+
|
11
|
+
// 组件名称
|
12
|
+
name = '代码编辑器';
|
13
|
+
isBaseComponent = true;
|
14
|
+
icon = 'fa fa-code';
|
15
|
+
description = `代码编辑器,采用 monaco-editor 支持:${availableLanguages
|
16
|
+
.slice(0, 10)
|
17
|
+
.join(',')}等等`;
|
18
|
+
docLink = '/amis/zh-CN/components/form/editor';
|
19
|
+
tags = ['表单项'];
|
20
|
+
scaffold = {
|
21
|
+
type: 'editor',
|
22
|
+
label: '代码编辑器',
|
23
|
+
name: 'editor'
|
24
|
+
};
|
25
|
+
previewSchema: any = {
|
26
|
+
type: 'form',
|
27
|
+
className: 'text-left',
|
28
|
+
mode: 'horizontal',
|
29
|
+
wrapWithPanel: false,
|
30
|
+
body: [
|
31
|
+
{
|
32
|
+
...this.scaffold,
|
33
|
+
value: 'console.log("Hello world.");'
|
34
|
+
}
|
35
|
+
]
|
36
|
+
};
|
37
|
+
|
38
|
+
panelTitle = 'Editor';
|
39
|
+
panelBody = [
|
40
|
+
{
|
41
|
+
label: '语言',
|
42
|
+
name: 'language',
|
43
|
+
type: 'select',
|
44
|
+
value: 'javascript',
|
45
|
+
searchable: true,
|
46
|
+
options: availableLanguages.concat()
|
47
|
+
},
|
48
|
+
|
49
|
+
{
|
50
|
+
name: 'size',
|
51
|
+
type: 'button-group-select',
|
52
|
+
size: 'xs',
|
53
|
+
pipeIn: defaultValue(''),
|
54
|
+
label: '控件大小',
|
55
|
+
options: [
|
56
|
+
{
|
57
|
+
label: '默认',
|
58
|
+
value: ''
|
59
|
+
},
|
60
|
+
{
|
61
|
+
label: '中',
|
62
|
+
value: 'md'
|
63
|
+
},
|
64
|
+
{
|
65
|
+
label: '大',
|
66
|
+
value: 'lg'
|
67
|
+
},
|
68
|
+
{
|
69
|
+
label: '加大',
|
70
|
+
value: 'xl'
|
71
|
+
},
|
72
|
+
{
|
73
|
+
label: '加加大',
|
74
|
+
value: 'xxl'
|
75
|
+
}
|
76
|
+
]
|
77
|
+
}
|
78
|
+
];
|
79
|
+
}
|
80
|
+
|
81
|
+
registerEditorPlugin(CodeEditorControlPlugin);
|