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,70 @@
|
|
1
|
+
import {registerEditorPlugin} from '../manager';
|
2
|
+
import {BasePlugin} from '../plugin';
|
3
|
+
import {defaultValue, getSchemaTpl, valuePipeOut} from '../component/schemaTpl';
|
4
|
+
|
5
|
+
export class IFramePlugin extends BasePlugin {
|
6
|
+
// 关联渲染器名字
|
7
|
+
rendererName = 'iframe';
|
8
|
+
$schema = '/schemas/IFrameSchema.json';
|
9
|
+
|
10
|
+
// 组件名称
|
11
|
+
name = 'iFrame';
|
12
|
+
isBaseComponent = true;
|
13
|
+
description = '可以用来嵌入现有页面。';
|
14
|
+
tags = ['容器'];
|
15
|
+
icon = 'fa fa-window-maximize';
|
16
|
+
scaffold = {
|
17
|
+
type: 'iframe',
|
18
|
+
src: '//www.baidu.com'
|
19
|
+
};
|
20
|
+
previewSchema = {
|
21
|
+
type: 'tpl',
|
22
|
+
tpl: 'iFrame'
|
23
|
+
};
|
24
|
+
|
25
|
+
panelTitle = 'iFrame';
|
26
|
+
panelBody = [
|
27
|
+
getSchemaTpl('tabs', [
|
28
|
+
{
|
29
|
+
title: '常规',
|
30
|
+
body: [
|
31
|
+
{
|
32
|
+
name: 'src',
|
33
|
+
label: '页面地址',
|
34
|
+
type: 'input-text',
|
35
|
+
description: ''
|
36
|
+
}
|
37
|
+
]
|
38
|
+
},
|
39
|
+
{
|
40
|
+
title: '外观',
|
41
|
+
body: [
|
42
|
+
{
|
43
|
+
name: 'width',
|
44
|
+
label: 'iFrame 宽度',
|
45
|
+
type: 'input-text',
|
46
|
+
pipeIn: defaultValue('100%'),
|
47
|
+
pipeOut: valuePipeOut
|
48
|
+
},
|
49
|
+
{
|
50
|
+
name: 'height',
|
51
|
+
label: 'iFrame 高度',
|
52
|
+
type: 'input-text',
|
53
|
+
pipeOut: valuePipeOut
|
54
|
+
},
|
55
|
+
getSchemaTpl('className')
|
56
|
+
]
|
57
|
+
},
|
58
|
+
{
|
59
|
+
title: '显隐',
|
60
|
+
body: [getSchemaTpl('ref'), getSchemaTpl('visible')]
|
61
|
+
}
|
62
|
+
])
|
63
|
+
];
|
64
|
+
|
65
|
+
renderRenderer(props: any) {
|
66
|
+
return this.renderPlaceholder(`IFrame 页面(${props.src})`);
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
registerEditorPlugin(IFramePlugin);
|
@@ -0,0 +1,314 @@
|
|
1
|
+
import {registerEditorPlugin} from '../manager';
|
2
|
+
import {
|
3
|
+
ActiveEventContext,
|
4
|
+
BaseEventContext,
|
5
|
+
BasePlugin,
|
6
|
+
PluginEvent,
|
7
|
+
ResizeMoveEventContext
|
8
|
+
} from '../plugin';
|
9
|
+
import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
|
10
|
+
import {mockValue} from '../mocker';
|
11
|
+
|
12
|
+
export class ImagePlugin extends BasePlugin {
|
13
|
+
// 关联渲染器名字
|
14
|
+
rendererName = 'image';
|
15
|
+
$schema = '/schemas/ImageSchema.json';
|
16
|
+
|
17
|
+
// 组件名称
|
18
|
+
name = '图片展示';
|
19
|
+
isBaseComponent = true;
|
20
|
+
description =
|
21
|
+
'可以用来展示一张图片,支持静态设置图片地址,也可以配置 <code>name</code> 与变量关联。';
|
22
|
+
tags = ['展示'];
|
23
|
+
icon = 'fa fa-photo';
|
24
|
+
scaffold = {
|
25
|
+
type: 'image'
|
26
|
+
};
|
27
|
+
previewSchema = {
|
28
|
+
...this.scaffold,
|
29
|
+
thumbMode: 'cover',
|
30
|
+
value: mockValue({type: 'image'})
|
31
|
+
};
|
32
|
+
|
33
|
+
panelTitle = '图片';
|
34
|
+
panelBodyCreator = (context: BaseEventContext) => {
|
35
|
+
const isUnderField = /\/field\/\w+$/.test(context.path as string);
|
36
|
+
return [
|
37
|
+
getSchemaTpl('tabs', [
|
38
|
+
{
|
39
|
+
title: '常规',
|
40
|
+
body: [
|
41
|
+
{
|
42
|
+
name: 'imageMode',
|
43
|
+
label: '展示模式',
|
44
|
+
type: 'select',
|
45
|
+
pipeIn: defaultValue('thumb'),
|
46
|
+
options: [
|
47
|
+
{
|
48
|
+
label: '缩率图',
|
49
|
+
value: 'thumb'
|
50
|
+
},
|
51
|
+
{
|
52
|
+
label: '原图',
|
53
|
+
value: 'original'
|
54
|
+
}
|
55
|
+
]
|
56
|
+
},
|
57
|
+
{
|
58
|
+
name: 'title',
|
59
|
+
type: 'input-text',
|
60
|
+
label: '图片标题'
|
61
|
+
},
|
62
|
+
{
|
63
|
+
name: 'imageCaption',
|
64
|
+
type: 'input-text',
|
65
|
+
label: '图片描述'
|
66
|
+
},
|
67
|
+
|
68
|
+
{
|
69
|
+
name: 'width',
|
70
|
+
label: '宽度',
|
71
|
+
type: 'input-number'
|
72
|
+
},
|
73
|
+
{
|
74
|
+
name: 'height',
|
75
|
+
label: '高度',
|
76
|
+
type: 'input-number'
|
77
|
+
},
|
78
|
+
|
79
|
+
isUnderField
|
80
|
+
? null
|
81
|
+
: getSchemaTpl('imageUrl', {
|
82
|
+
name: 'src',
|
83
|
+
type: 'input-text',
|
84
|
+
label: '缩略图地址',
|
85
|
+
description: '如果已绑定字段名,可以不用设置,支持用变量。'
|
86
|
+
}),
|
87
|
+
{
|
88
|
+
type: 'input-text',
|
89
|
+
label: '打开外部链接',
|
90
|
+
name: 'href'
|
91
|
+
},
|
92
|
+
getSchemaTpl('imageUrl', {
|
93
|
+
name: 'defaultImage',
|
94
|
+
label: '无数据时显示的图片'
|
95
|
+
})
|
96
|
+
]
|
97
|
+
},
|
98
|
+
{
|
99
|
+
title: '外观',
|
100
|
+
body: [
|
101
|
+
{
|
102
|
+
type: 'switch',
|
103
|
+
name: 'enlargeAble',
|
104
|
+
label: '开启图片放大功能',
|
105
|
+
mode: 'inline',
|
106
|
+
className: 'w-full'
|
107
|
+
},
|
108
|
+
|
109
|
+
getSchemaTpl('imageUrl', {
|
110
|
+
name: 'originalSrc',
|
111
|
+
visibleOn: 'this.enlargeAble',
|
112
|
+
label: '原图地址',
|
113
|
+
description: '如果不配置将默认使用缩略图地址。'
|
114
|
+
}),
|
115
|
+
|
116
|
+
{
|
117
|
+
type: 'switch',
|
118
|
+
name: 'showDimensions',
|
119
|
+
label: '是否显示图片尺寸',
|
120
|
+
mode: 'inline',
|
121
|
+
className: 'w-full'
|
122
|
+
},
|
123
|
+
{
|
124
|
+
name: 'thumbMode',
|
125
|
+
type: 'button-group-select',
|
126
|
+
label: '缩略图展示模式',
|
127
|
+
size: 'sm',
|
128
|
+
pipeIn: defaultValue('contain'),
|
129
|
+
options: [
|
130
|
+
{
|
131
|
+
label: '宽度占满',
|
132
|
+
value: 'w-full'
|
133
|
+
},
|
134
|
+
|
135
|
+
{
|
136
|
+
label: '高度占满',
|
137
|
+
value: 'h-full'
|
138
|
+
},
|
139
|
+
|
140
|
+
{
|
141
|
+
label: '包含',
|
142
|
+
value: 'contain'
|
143
|
+
},
|
144
|
+
|
145
|
+
{
|
146
|
+
label: '铺满',
|
147
|
+
value: 'cover'
|
148
|
+
}
|
149
|
+
]
|
150
|
+
},
|
151
|
+
|
152
|
+
{
|
153
|
+
name: 'thumbRatio',
|
154
|
+
type: 'button-group-select',
|
155
|
+
label: '缩略图比率',
|
156
|
+
size: 'sm',
|
157
|
+
pipeIn: defaultValue('1:1'),
|
158
|
+
options: [
|
159
|
+
{
|
160
|
+
label: '1:1',
|
161
|
+
value: '1:1'
|
162
|
+
},
|
163
|
+
|
164
|
+
{
|
165
|
+
label: '4:3',
|
166
|
+
value: '4:3'
|
167
|
+
},
|
168
|
+
|
169
|
+
{
|
170
|
+
label: '16:9',
|
171
|
+
value: '16:9'
|
172
|
+
}
|
173
|
+
]
|
174
|
+
},
|
175
|
+
|
176
|
+
getSchemaTpl('className', {
|
177
|
+
autoComplete: false
|
178
|
+
}),
|
179
|
+
|
180
|
+
getSchemaTpl('className', {
|
181
|
+
name: 'imageClassName',
|
182
|
+
label: '图片 CSS 类名'
|
183
|
+
}),
|
184
|
+
|
185
|
+
getSchemaTpl('className', {
|
186
|
+
name: 'thumbClassName',
|
187
|
+
label: '缩略图 CSS 类名'
|
188
|
+
})
|
189
|
+
]
|
190
|
+
},
|
191
|
+
{
|
192
|
+
title: '显隐',
|
193
|
+
body: [
|
194
|
+
// getSchemaTpl('ref'),
|
195
|
+
getSchemaTpl('visible')
|
196
|
+
]
|
197
|
+
}
|
198
|
+
])
|
199
|
+
];
|
200
|
+
};
|
201
|
+
|
202
|
+
onActive(event: PluginEvent<ActiveEventContext>) {
|
203
|
+
const context = event.context;
|
204
|
+
|
205
|
+
if (context.info?.plugin !== this || !context.node) {
|
206
|
+
return;
|
207
|
+
}
|
208
|
+
|
209
|
+
const node = context.node!;
|
210
|
+
node.setHeightMutable(true);
|
211
|
+
node.setWidthMutable(true);
|
212
|
+
}
|
213
|
+
|
214
|
+
onWidthChangeStart(
|
215
|
+
event: PluginEvent<
|
216
|
+
ResizeMoveEventContext,
|
217
|
+
{
|
218
|
+
onMove(e: MouseEvent): void;
|
219
|
+
onEnd(e: MouseEvent): void;
|
220
|
+
}
|
221
|
+
>
|
222
|
+
) {
|
223
|
+
return this.onSizeChangeStart(event, 'horizontal');
|
224
|
+
}
|
225
|
+
|
226
|
+
onHeightChangeStart(
|
227
|
+
event: PluginEvent<
|
228
|
+
ResizeMoveEventContext,
|
229
|
+
{
|
230
|
+
onMove(e: MouseEvent): void;
|
231
|
+
onEnd(e: MouseEvent): void;
|
232
|
+
}
|
233
|
+
>
|
234
|
+
) {
|
235
|
+
return this.onSizeChangeStart(event, 'vertical');
|
236
|
+
}
|
237
|
+
|
238
|
+
onSizeChangeStart(
|
239
|
+
event: PluginEvent<
|
240
|
+
ResizeMoveEventContext,
|
241
|
+
{
|
242
|
+
onMove(e: MouseEvent): void;
|
243
|
+
onEnd(e: MouseEvent): void;
|
244
|
+
}
|
245
|
+
>,
|
246
|
+
direction: 'both' | 'vertical' | 'horizontal' = 'both'
|
247
|
+
) {
|
248
|
+
const context = event.context;
|
249
|
+
const node = context.node;
|
250
|
+
if (node.info?.plugin !== this) {
|
251
|
+
return;
|
252
|
+
}
|
253
|
+
|
254
|
+
const resizer = context.resizer;
|
255
|
+
const dom = context.dom;
|
256
|
+
const frameRect = dom.parentElement!.getBoundingClientRect();
|
257
|
+
const rect = dom.getBoundingClientRect();
|
258
|
+
const startX = context.nativeEvent.pageX;
|
259
|
+
const startY = context.nativeEvent.pageY;
|
260
|
+
|
261
|
+
event.setData({
|
262
|
+
onMove: (e: MouseEvent) => {
|
263
|
+
const dy = e.pageY - startY;
|
264
|
+
const dx = e.pageX - startX;
|
265
|
+
const height = Math.max(50, rect.height + dy);
|
266
|
+
const width = Math.max(100, Math.min(rect.width + dx, frameRect.width));
|
267
|
+
const state: any = {
|
268
|
+
width,
|
269
|
+
height
|
270
|
+
};
|
271
|
+
|
272
|
+
if (direction === 'both') {
|
273
|
+
resizer.setAttribute('data-value', `${width}px x ${height}px`);
|
274
|
+
} else if (direction === 'vertical') {
|
275
|
+
resizer.setAttribute('data-value', `${height}px`);
|
276
|
+
delete state.width;
|
277
|
+
} else {
|
278
|
+
resizer.setAttribute('data-value', `${width}px`);
|
279
|
+
delete state.height;
|
280
|
+
}
|
281
|
+
|
282
|
+
node.updateState(state);
|
283
|
+
|
284
|
+
requestAnimationFrame(() => {
|
285
|
+
node.calculateHighlightBox();
|
286
|
+
});
|
287
|
+
},
|
288
|
+
onEnd: (e: MouseEvent) => {
|
289
|
+
const dy = e.pageY - startY;
|
290
|
+
const dx = e.pageX - startX;
|
291
|
+
const height = Math.max(50, rect.height + dy);
|
292
|
+
const width = Math.max(100, Math.min(rect.width + dx, frameRect.width));
|
293
|
+
const state: any = {
|
294
|
+
width,
|
295
|
+
height
|
296
|
+
};
|
297
|
+
|
298
|
+
if (direction === 'vertical') {
|
299
|
+
delete state.width;
|
300
|
+
} else if (direction === 'horizontal') {
|
301
|
+
delete state.height;
|
302
|
+
}
|
303
|
+
|
304
|
+
resizer.removeAttribute('data-value');
|
305
|
+
node.updateSchema(state);
|
306
|
+
requestAnimationFrame(() => {
|
307
|
+
node.calculateHighlightBox();
|
308
|
+
});
|
309
|
+
}
|
310
|
+
});
|
311
|
+
}
|
312
|
+
}
|
313
|
+
|
314
|
+
registerEditorPlugin(ImagePlugin);
|
@@ -0,0 +1,231 @@
|
|
1
|
+
import {registerEditorPlugin} from '../manager';
|
2
|
+
import {BaseEventContext, BasePlugin} from '../plugin';
|
3
|
+
import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
|
4
|
+
import {mockValue} from '../mocker';
|
5
|
+
|
6
|
+
export class ImagesPlugin extends BasePlugin {
|
7
|
+
// 关联渲染器名字
|
8
|
+
rendererName = 'images';
|
9
|
+
$schema = '/schemas/ImagesSchema.json';
|
10
|
+
|
11
|
+
// 组件名称
|
12
|
+
name = '图片集';
|
13
|
+
isBaseComponent = true;
|
14
|
+
description = '展示多张图片';
|
15
|
+
tags = ['展示'];
|
16
|
+
icon = 'fa fa-clone';
|
17
|
+
scaffold = {
|
18
|
+
type: 'images'
|
19
|
+
};
|
20
|
+
previewSchema = {
|
21
|
+
...this.scaffold,
|
22
|
+
listClassName: 'nowrap',
|
23
|
+
thumbMode: 'cover',
|
24
|
+
value: [
|
25
|
+
{
|
26
|
+
title: '图片1',
|
27
|
+
image: mockValue({type: 'image'}),
|
28
|
+
src: mockValue({type: 'image'})
|
29
|
+
},
|
30
|
+
{
|
31
|
+
title: '图片2',
|
32
|
+
image: mockValue({type: 'image'}),
|
33
|
+
src: mockValue({type: 'image'})
|
34
|
+
}
|
35
|
+
]
|
36
|
+
};
|
37
|
+
|
38
|
+
panelTitle = '图片集';
|
39
|
+
panelBodyCreator = (context: BaseEventContext) => {
|
40
|
+
const isUnderField = /\/field\/\w+$/.test(context.path as string);
|
41
|
+
return [
|
42
|
+
getSchemaTpl('tabs', [
|
43
|
+
{
|
44
|
+
title: '常规',
|
45
|
+
body: (isUnderField
|
46
|
+
? []
|
47
|
+
: [
|
48
|
+
{
|
49
|
+
type: 'formula',
|
50
|
+
name: '__mode',
|
51
|
+
autoSet: false,
|
52
|
+
formula:
|
53
|
+
'!this.name && !this.source && Array.isArray(this.options) ? 2 : 1'
|
54
|
+
},
|
55
|
+
{
|
56
|
+
label: '数据源',
|
57
|
+
name: '__mode',
|
58
|
+
type: 'button-group-select',
|
59
|
+
size: 'xs',
|
60
|
+
mode: 'inline',
|
61
|
+
className: 'w-full',
|
62
|
+
options: [
|
63
|
+
{
|
64
|
+
label: '关联字段',
|
65
|
+
value: 1
|
66
|
+
},
|
67
|
+
{
|
68
|
+
label: '静态设置',
|
69
|
+
value: 2
|
70
|
+
}
|
71
|
+
],
|
72
|
+
onChange: (
|
73
|
+
value: any,
|
74
|
+
oldValue: any,
|
75
|
+
model: any,
|
76
|
+
form: any
|
77
|
+
) => {
|
78
|
+
if (value !== oldValue && value == 1) {
|
79
|
+
form.deleteValueByName('options');
|
80
|
+
}
|
81
|
+
}
|
82
|
+
},
|
83
|
+
{
|
84
|
+
name: 'source',
|
85
|
+
type: 'input-text',
|
86
|
+
label: '关联数据',
|
87
|
+
description:
|
88
|
+
'比如:\\${listVar},用来关联作用域中的已有数据。',
|
89
|
+
visibleOn: 'this.__mode == 1'
|
90
|
+
},
|
91
|
+
{
|
92
|
+
type: 'combo',
|
93
|
+
name: 'options',
|
94
|
+
visibleOn: 'this.__mode == 2',
|
95
|
+
minLength: 1,
|
96
|
+
label: '图片集数据',
|
97
|
+
multiple: true,
|
98
|
+
multiLine: true,
|
99
|
+
addable: true,
|
100
|
+
removable: true,
|
101
|
+
items: [
|
102
|
+
getSchemaTpl('imageUrl', {
|
103
|
+
name: 'image',
|
104
|
+
label: '缩略图'
|
105
|
+
}),
|
106
|
+
getSchemaTpl('imageUrl', {
|
107
|
+
name: 'src',
|
108
|
+
label: '原图'
|
109
|
+
}),
|
110
|
+
{
|
111
|
+
type: 'input-text',
|
112
|
+
label: '图片标题',
|
113
|
+
name: 'title'
|
114
|
+
},
|
115
|
+
{
|
116
|
+
type: 'textarea',
|
117
|
+
label: '图片描述',
|
118
|
+
name: 'caption'
|
119
|
+
}
|
120
|
+
]
|
121
|
+
}
|
122
|
+
]
|
123
|
+
).concat([
|
124
|
+
getSchemaTpl('imageUrl', {
|
125
|
+
name: 'defaultImage',
|
126
|
+
label: '无数据时显示的图片'
|
127
|
+
})
|
128
|
+
])
|
129
|
+
},
|
130
|
+
{
|
131
|
+
title: '外观',
|
132
|
+
body: [
|
133
|
+
{
|
134
|
+
type: 'switch',
|
135
|
+
name: 'enlargeAble',
|
136
|
+
label: '开启图片放大功能',
|
137
|
+
mode: 'inline',
|
138
|
+
className: 'w-full'
|
139
|
+
},
|
140
|
+
|
141
|
+
{
|
142
|
+
name: 'originalSrc',
|
143
|
+
visibleOn: 'this.enlargeAble',
|
144
|
+
type: 'input-text',
|
145
|
+
label: '原图地址',
|
146
|
+
description: '如果不配置将默认使用缩略图地址。'
|
147
|
+
},
|
148
|
+
|
149
|
+
{
|
150
|
+
type: 'switch',
|
151
|
+
name: 'showDimensions',
|
152
|
+
label: '是否显示图片尺寸',
|
153
|
+
mode: 'inline',
|
154
|
+
className: 'w-full'
|
155
|
+
},
|
156
|
+
{
|
157
|
+
name: 'thumbMode',
|
158
|
+
type: 'button-group-select',
|
159
|
+
label: '缩略图展示模式',
|
160
|
+
size: 'sm',
|
161
|
+
pipeIn: defaultValue('contain'),
|
162
|
+
options: [
|
163
|
+
{
|
164
|
+
label: '宽度占满',
|
165
|
+
value: 'w-full'
|
166
|
+
},
|
167
|
+
|
168
|
+
{
|
169
|
+
label: '高度占满',
|
170
|
+
value: 'h-full'
|
171
|
+
},
|
172
|
+
|
173
|
+
{
|
174
|
+
label: '包含',
|
175
|
+
value: 'contain'
|
176
|
+
},
|
177
|
+
|
178
|
+
{
|
179
|
+
label: '铺满',
|
180
|
+
value: 'cover'
|
181
|
+
}
|
182
|
+
]
|
183
|
+
},
|
184
|
+
|
185
|
+
{
|
186
|
+
name: 'thumbRatio',
|
187
|
+
type: 'button-group-select',
|
188
|
+
label: '缩略图比率',
|
189
|
+
size: 'sm',
|
190
|
+
pipeIn: defaultValue('1:1'),
|
191
|
+
options: [
|
192
|
+
{
|
193
|
+
label: '1:1',
|
194
|
+
value: '1:1'
|
195
|
+
},
|
196
|
+
|
197
|
+
{
|
198
|
+
label: '4:3',
|
199
|
+
value: '4:3'
|
200
|
+
},
|
201
|
+
|
202
|
+
{
|
203
|
+
label: '16:9',
|
204
|
+
value: '16:9'
|
205
|
+
}
|
206
|
+
]
|
207
|
+
},
|
208
|
+
|
209
|
+
getSchemaTpl('className', {
|
210
|
+
autoComplete: false
|
211
|
+
}),
|
212
|
+
|
213
|
+
getSchemaTpl('className', {
|
214
|
+
name: 'listClassName',
|
215
|
+
label: '图片列表 CSS 类名'
|
216
|
+
})
|
217
|
+
]
|
218
|
+
},
|
219
|
+
{
|
220
|
+
title: '显隐',
|
221
|
+
body: [
|
222
|
+
// getSchemaTpl('ref'),
|
223
|
+
getSchemaTpl('visible')
|
224
|
+
]
|
225
|
+
}
|
226
|
+
])
|
227
|
+
];
|
228
|
+
};
|
229
|
+
}
|
230
|
+
|
231
|
+
registerEditorPlugin(ImagesPlugin);
|
@@ -0,0 +1,69 @@
|
|
1
|
+
import {registerEditorPlugin} from '../manager';
|
2
|
+
import {BaseEventContext, BasePlugin} from '../plugin';
|
3
|
+
import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
|
4
|
+
import flatten = require('lodash/flatten');
|
5
|
+
export class JsonPlugin extends BasePlugin {
|
6
|
+
// 关联渲染器名字
|
7
|
+
rendererName = 'json';
|
8
|
+
$schema = '/schemas/JsonSchema.json';
|
9
|
+
|
10
|
+
// 组件名称
|
11
|
+
name = 'JSON展示';
|
12
|
+
isBaseComponent = true;
|
13
|
+
description = '用来展示 JSON 数据。';
|
14
|
+
docLink = '/amis/zh-CN/components/json';
|
15
|
+
tags = ['展示'];
|
16
|
+
icon = 'fa fa-code';
|
17
|
+
scaffold = {
|
18
|
+
type: 'json'
|
19
|
+
};
|
20
|
+
previewSchema = {
|
21
|
+
...this.scaffold,
|
22
|
+
name: 'json',
|
23
|
+
value: {
|
24
|
+
a: 1,
|
25
|
+
b: {
|
26
|
+
c: 2
|
27
|
+
}
|
28
|
+
}
|
29
|
+
};
|
30
|
+
|
31
|
+
panelTitle = 'JSON';
|
32
|
+
panelBodyCreator = (context: BaseEventContext) => {
|
33
|
+
const isUnderField = /\/field\/\w+$/.test(context.path as string);
|
34
|
+
return [
|
35
|
+
getSchemaTpl('tabs', [
|
36
|
+
{
|
37
|
+
title: '常规',
|
38
|
+
body: flatten([
|
39
|
+
isUnderField
|
40
|
+
? {
|
41
|
+
type: 'tpl',
|
42
|
+
inline: false,
|
43
|
+
className: 'text-info text-sm',
|
44
|
+
tpl: '<p>当前为字段内容节点配置,选择上层还有更多的配置。</p>'
|
45
|
+
}
|
46
|
+
: null,
|
47
|
+
|
48
|
+
{
|
49
|
+
name: 'levelExpand',
|
50
|
+
type: 'input-number',
|
51
|
+
label: '默认展开级别',
|
52
|
+
pipeIn: defaultValue(1)
|
53
|
+
}
|
54
|
+
])
|
55
|
+
},
|
56
|
+
{
|
57
|
+
title: '外观',
|
58
|
+
body: flatten([getSchemaTpl('className')])
|
59
|
+
},
|
60
|
+
{
|
61
|
+
title: '显隐',
|
62
|
+
body: flatten([getSchemaTpl('ref'), getSchemaTpl('visible')])
|
63
|
+
}
|
64
|
+
])
|
65
|
+
];
|
66
|
+
};
|
67
|
+
}
|
68
|
+
|
69
|
+
registerEditorPlugin(JsonPlugin);
|