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,193 @@
1
+ import {registerEditorPlugin} from '../manager';
2
+ import {BasePlugin, RegionConfig, BaseEventContext} from '../plugin';
3
+ import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
4
+
5
+ export class TooltipWrapperPlugin extends BasePlugin {
6
+ rendererName = 'tooltip-wrapper';
7
+ $schema = '/schemas/TooltipWrapperSchema.json';
8
+
9
+ isBaseComponent = true;
10
+ name = '文字提示容器';
11
+ description =
12
+ '类似容器,可以将多个渲染器放置在一起,当用户鼠标悬停或者点击容器时,显示文字提示浮层';
13
+ docLink = '/amis/zh-CN/components/tooltip';
14
+ tags = ['容器'];
15
+ icon = 'fa fa-comment-alt';
16
+
17
+ scaffold = {
18
+ type: 'tooltip-wrapper',
19
+ tooltip: '提示文字',
20
+ body: [
21
+ {
22
+ type: 'tpl',
23
+ tpl: '内容'
24
+ }
25
+ ]
26
+ };
27
+
28
+ previewSchema = {
29
+ ...this.scaffold,
30
+ className: 'p-1 mr-3 border-2 border-solid border-indigo-400'
31
+ };
32
+
33
+ regions: Array<RegionConfig> = [
34
+ {
35
+ key: 'body',
36
+ label: '内容区'
37
+ }
38
+ ];
39
+
40
+ panelTitle = this.name;
41
+ panelBodyCreator = (context: BaseEventContext) => {
42
+ return [
43
+ getSchemaTpl('tabs', [
44
+ {
45
+ title: '属性',
46
+ body: [
47
+ {
48
+ type: 'input-text',
49
+ name: 'title',
50
+ label: '提示标题'
51
+ },
52
+ {
53
+ type: 'textarea',
54
+ name: 'tooltip',
55
+ label: '提示内容'
56
+ },
57
+ {
58
+ name: 'wrapperComponent',
59
+ label: '容器标签',
60
+ type: 'input-text',
61
+ options: [
62
+ 'article',
63
+ 'aside',
64
+ 'code',
65
+ 'div',
66
+ 'footer',
67
+ 'header',
68
+ 'p',
69
+ 'section'
70
+ ],
71
+ validations: {
72
+ isAlphanumeric: true,
73
+ matchRegexp: '/^(?!.*script).*$/' // 禁用一下script标签
74
+ },
75
+ validationErrors: {
76
+ isAlpha: 'HTML标签不合法,请重新输入',
77
+ matchRegexp: 'HTML标签不合法,请重新输入'
78
+ },
79
+ validateOnChange: false
80
+ },
81
+ {
82
+ name: 'trigger',
83
+ type: 'select',
84
+ label: '触发方式',
85
+ multiple: true,
86
+ value: ['hover'],
87
+ pipeIn: (value: any) =>
88
+ Array.isArray(value) ? value.join(',') : [],
89
+ pipeOut: (value: any) =>
90
+ value && value.length ? value.split(',') : undefined,
91
+ options: [
92
+ {
93
+ label: '鼠标悬停',
94
+ value: 'hover'
95
+ },
96
+
97
+ {
98
+ label: '点击',
99
+ value: 'click'
100
+ }
101
+ ]
102
+ },
103
+ {
104
+ type: 'button-group-select',
105
+ name: 'placement',
106
+ label: '提示位置',
107
+ options: [
108
+ {
109
+ label: '上',
110
+ value: 'top',
111
+ icon: 'fa fa-arrow-up'
112
+ },
113
+ {
114
+ label: '下',
115
+ value: 'bottom',
116
+ icon: 'fa fa-arrow-down'
117
+ },
118
+ {
119
+ label: '左',
120
+ value: 'left',
121
+ icon: 'fa fa-arrow-left'
122
+ },
123
+ {
124
+ label: '右',
125
+ value: 'right',
126
+ icon: 'fa fa-arrow-right'
127
+ }
128
+ ],
129
+ pipeIn: defaultValue('top')
130
+ },
131
+ {
132
+ type: 'button-group-select',
133
+ name: 'tooltipTheme',
134
+ label: '主题色',
135
+ options: [
136
+ {
137
+ label: '亮色',
138
+ value: 'light',
139
+ icon: 'fa fa-sun'
140
+ },
141
+ {
142
+ label: '暗色',
143
+ value: 'dark',
144
+ icon: 'fas fa-moon'
145
+ }
146
+ ],
147
+ pipeIn: defaultValue('light')
148
+ },
149
+ {
150
+ name: 'inline',
151
+ label: '容器内联',
152
+ type: 'switch',
153
+ mode: 'row',
154
+ inputClassName: 'inline-flex justify-between flex-row-reverse'
155
+ },
156
+ {
157
+ name: 'rootClose',
158
+ visibleOn: '~this.trigger.indexOf("click")',
159
+ label: '点击容器外部关闭提示',
160
+ type: 'switch',
161
+ mode: 'row',
162
+ inputClassName: 'inline-flex justify-between flex-row-reverse'
163
+ },
164
+ {
165
+ label: '延迟关闭时间',
166
+ type: 'input-number',
167
+ min: 0,
168
+ step: 100,
169
+ name: 'delay',
170
+ suffix: 'ms',
171
+ pipeIn: defaultValue(0)
172
+ }
173
+ ]
174
+ },
175
+ {
176
+ title: '外观',
177
+ body: [
178
+ getSchemaTpl('className', {
179
+ label: '内容区CSS类名'
180
+ }),
181
+ getSchemaTpl('className', {
182
+ label: '浮层CSS类名',
183
+ name: 'tooltipClassName'
184
+ }),
185
+ getSchemaTpl('style')
186
+ ]
187
+ }
188
+ ])
189
+ ];
190
+ };
191
+ }
192
+
193
+ registerEditorPlugin(TooltipWrapperPlugin);
@@ -0,0 +1,158 @@
1
+ import {registerEditorPlugin} from '../manager';
2
+ import {
3
+ BaseEventContext,
4
+ BasePlugin} from '../plugin';
5
+ import {defaultValue, getSchemaTpl, setSchemaTpl} from '../component/schemaTpl';
6
+
7
+ setSchemaTpl('tpl:content', {
8
+ label: '内容',
9
+ // type: 'textarea',
10
+ type: 'input-rich-text',
11
+ buttons: [
12
+ 'paragraphFormat',
13
+ 'quote',
14
+ 'color',
15
+ '|',
16
+ 'bold',
17
+ 'italic',
18
+ 'underline',
19
+ 'strikeThrough',
20
+ '|',
21
+ 'formatOL',
22
+ 'formatUL',
23
+ 'align',
24
+ '|',
25
+ 'insertLink',
26
+ 'insertImage',
27
+ 'insertTable',
28
+ '|',
29
+ 'undo',
30
+ 'redo',
31
+ 'fullscreen'
32
+ ],
33
+ minRows: 5,
34
+ language: 'html',
35
+ // visibleOn: 'data.__mode !="input-rich-text"',
36
+ pipeIn: (value: any, data: any) => value || (data && data.html),
37
+ name: 'tpl',
38
+ description:
39
+ '支持使用 <code>\\${xxx}</code> 来获取变量,或者用 lodash.template 语法来写模板逻辑。<a target="_blank" href="/amis/zh-CN/docs/concepts/template">详情</a>'
40
+ });
41
+
42
+ setSchemaTpl('tpl:wrapperComponent', {
43
+ name: 'wrapperComponent',
44
+ type: 'select',
45
+ pipeIn: defaultValue('div'),
46
+ label: '格式',
47
+ options: [
48
+ {
49
+ label: '普通文字',
50
+ value: 'div'
51
+ },
52
+ {
53
+ label: '段落',
54
+ value: 'p'
55
+ },
56
+ {
57
+ label: '一级标题',
58
+ value: 'h1'
59
+ },
60
+ {
61
+ label: '二级标题',
62
+ value: 'h2'
63
+ },
64
+ {
65
+ label: '三级标题',
66
+ value: 'h3'
67
+ },
68
+ {
69
+ label: '四级标题',
70
+ value: 'h4'
71
+ },
72
+ {
73
+ label: '五级标题',
74
+ value: 'h5'
75
+ },
76
+ {
77
+ label: '六级标题',
78
+ value: 'h6'
79
+ }
80
+ ]
81
+ });
82
+
83
+ setSchemaTpl('tpl:inline', {
84
+ label: '内联模式',
85
+ type: 'switch',
86
+ name: 'inline',
87
+ mode: 'inline',
88
+ className: 'w-full',
89
+ pipeIn: defaultValue(true),
90
+ labelRemark: {
91
+ trigger: 'click',
92
+ className: 'm-l-xs',
93
+ rootClose: true,
94
+ content:
95
+ '内联模式采用 <code>span</code> 标签、非内联将采用 <code>div</code> 标签作为容器。',
96
+ placement: 'left'
97
+ }
98
+ });
99
+
100
+ export class TplPlugin extends BasePlugin {
101
+ // 关联渲染器名字
102
+ rendererName = 'tpl';
103
+ $schema = '/schemas/TplSchema.json';
104
+
105
+ // 组件名称
106
+ name = '文字';
107
+ isBaseComponent = true;
108
+ icon = 'fa fa-file-o';
109
+ description = '用来展示文字或者段落,支持模板语法可用来关联动态数据。';
110
+ docLink = '/amis/zh-CN/components/tpl';
111
+ tags = ['展示'];
112
+ previewSchema = {
113
+ type: 'tpl',
114
+ tpl: '这是模板内容当前时间<%- new Date() %>'
115
+ };
116
+ scaffold: any = {
117
+ type: 'tpl',
118
+ tpl: '请编辑内容',
119
+ inline: false
120
+ };
121
+
122
+ panelTitle = '文字';
123
+ panelBodyCreator = (context: BaseEventContext) => {
124
+ // 在表格/CRUD/模型列表的一列里边
125
+ const isInTable: boolean = /\/cell\/field\/tpl$/.test(context.path);
126
+
127
+ return [
128
+ getSchemaTpl('tabs', [
129
+ {
130
+ title: '常规',
131
+ body: [
132
+ getSchemaTpl('tpl:content'),
133
+ !isInTable ? getSchemaTpl('tpl:wrapperComponent') : null
134
+ ]
135
+ },
136
+ {
137
+ title: '外观',
138
+ body: [
139
+ getSchemaTpl('tpl:inline'),
140
+ getSchemaTpl('className'),
141
+ getSchemaTpl('style')
142
+ ]
143
+ },
144
+ {
145
+ title: '显隐',
146
+ body: [getSchemaTpl('ref'), getSchemaTpl('visible')]
147
+ }
148
+ ])
149
+ ];
150
+ };
151
+
152
+ popOverBody = [
153
+ getSchemaTpl('tpl:content'),
154
+ getSchemaTpl('tpl:wrapperComponent')
155
+ ];
156
+ }
157
+
158
+ registerEditorPlugin(TplPlugin);
@@ -0,0 +1,158 @@
1
+ import {registerEditorPlugin} from '../manager';
2
+ import {BasePlugin} from '../plugin';
3
+ import {getSchemaTpl} from '../component/schemaTpl';
4
+ import {JSONPipeOut} from '../util';
5
+ import {mockValue} from '../mocker';
6
+
7
+ export class VideoPlugin extends BasePlugin {
8
+ // 关联渲染器名字
9
+ rendererName = 'video';
10
+ $schema = '/schemas/VideoSchema.json';
11
+
12
+ // 组件名称
13
+ name = '视频';
14
+ isBaseComponent = true;
15
+ description = '视频控件,可以用来播放各种视频文件,包括 flv 和 hls 格式。';
16
+ docLink = '/amis/zh-CN/components/video';
17
+ tags = ['功能'];
18
+ icon = 'fa fa-video-camera';
19
+ scaffold = {
20
+ type: 'video',
21
+ autoPlay: false,
22
+ src: 'https://media.w3.org/2010/05/sintel/trailer_hd.mp4',
23
+ poster: mockValue({type: 'image'})
24
+ };
25
+ previewSchema = {
26
+ ...this.scaffold
27
+ };
28
+
29
+ panelTitle = '视频';
30
+ panelBody = [
31
+ getSchemaTpl('tabs', [
32
+ {
33
+ title: '常规',
34
+ body: [
35
+ {
36
+ name: 'src',
37
+ type: 'input-text',
38
+ label: '视频地址',
39
+ description:
40
+ '可以写静态值,也可以用变量取比如:<code>\\${videoSrc}</code>'
41
+ },
42
+
43
+ {
44
+ name: 'poster',
45
+ type: 'input-text',
46
+ label: '视频封面图片地址',
47
+ description:
48
+ '可以写静态值,也可以用变量取比如:<code>\\${videoPoster}</code>'
49
+ },
50
+
51
+ {
52
+ name: 'autoPlay',
53
+ type: 'switch',
54
+ mode: 'inline',
55
+ className: 'block',
56
+ label: '自动播放'
57
+ },
58
+
59
+ {
60
+ name: 'muted',
61
+ type: 'switch',
62
+ mode: 'inline',
63
+ className: 'block',
64
+ label: '静音'
65
+ },
66
+
67
+ {
68
+ name: 'isLive',
69
+ type: 'switch',
70
+ mode: 'inline',
71
+ className: 'block',
72
+ label: '直播流',
73
+ description: '如果是直播流,请勾选,否则有可能不能正常播放。'
74
+ }
75
+ ]
76
+ },
77
+ {
78
+ title: '外观',
79
+ body: [
80
+ {
81
+ name: 'aspectRatio',
82
+ label: '视频比例',
83
+ type: 'button-group-select',
84
+ size: 'sm',
85
+ mode: 'inline',
86
+ className: 'block',
87
+ value: 'auto',
88
+ options: [
89
+ {
90
+ label: '自动',
91
+ value: 'auto'
92
+ },
93
+
94
+ {
95
+ label: '4:3',
96
+ value: '4:3'
97
+ },
98
+
99
+ {
100
+ label: '16:9',
101
+ value: '16:9'
102
+ }
103
+ ]
104
+ },
105
+
106
+ {
107
+ name: 'splitPoster',
108
+ type: 'switch',
109
+ mode: 'inline',
110
+ className: 'block',
111
+ label: '分开显示封面'
112
+ },
113
+ getSchemaTpl('className')
114
+ ]
115
+ },
116
+ {
117
+ title: '显隐',
118
+ body: [getSchemaTpl('visible')]
119
+ },
120
+ {
121
+ title: '其他',
122
+ body: [
123
+ getSchemaTpl('ref'),
124
+ {
125
+ type: 'input-text',
126
+ name: 'rates',
127
+ label: '视频速率',
128
+ multiple: true,
129
+ joinValues: false,
130
+ extractValue: true,
131
+ options: [0.5, 1, 1.25, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5].map(
132
+ item => ({
133
+ label: item,
134
+ value: item
135
+ })
136
+ )
137
+ },
138
+
139
+ {
140
+ name: 'frames',
141
+ type: 'input-text',
142
+ label: '视频帧信息',
143
+ description:
144
+ '比如填写:<code>\\${videoFrames}</code>会在当前作用域中查找 videoFrames 变量,如果是对象,将生成视频截图列表,点击后可跳转到对应的帧。'
145
+ }
146
+ ]
147
+ }
148
+ ])
149
+ ];
150
+
151
+ filterProps(props: any) {
152
+ props.frames = JSONPipeOut(props.frames);
153
+
154
+ return props;
155
+ }
156
+ }
157
+
158
+ registerEditorPlugin(VideoPlugin);
@@ -0,0 +1,53 @@
1
+ import {registerEditorPlugin} from '../manager';
2
+ import {BasePlugin} from '../plugin';
3
+ import '@webcomponents/webcomponentsjs/custom-elements-es5-adapter';
4
+
5
+ // 需要一个示例,不然默认的没有高度都无法选中
6
+ class WebComponentDemo extends HTMLElement {
7
+ connectedCallback() {
8
+ const shadow = this.attachShadow({mode: 'open'});
9
+ shadow.textContent = 'web-component-demo';
10
+ }
11
+ }
12
+ try {
13
+ customElements.define('web-component-demo', WebComponentDemo);
14
+ } catch (error: any) {
15
+ console.log('[amis-editor]', error);
16
+ }
17
+
18
+ export class WebComponentPlugin extends BasePlugin {
19
+ // 关联渲染器名字
20
+ rendererName = 'web-component';
21
+ $schema = '/schemas/WebComponentSchema.json';
22
+
23
+ // 组件名称
24
+ name = 'Web Component';
25
+ isBaseComponent = true;
26
+ description = '用于渲染 Web Component 组件';
27
+ docLink = '/amis/zh-CN/components/web-component';
28
+ tags = ['容器'];
29
+ icon = 'fa fa-square-o';
30
+ scaffold = {
31
+ type: 'web-component',
32
+ tag: 'web-component-demo'
33
+ };
34
+ previewSchema = {
35
+ ...this.scaffold
36
+ };
37
+
38
+ panelTitle = '包裹';
39
+ panelBody = [
40
+ {
41
+ type: 'input-text',
42
+ label: '标签',
43
+ name: 'tag'
44
+ },
45
+ {
46
+ type: 'input-kv',
47
+ label: '属性',
48
+ name: 'props'
49
+ }
50
+ ];
51
+ }
52
+
53
+ registerEditorPlugin(WebComponentPlugin);