@zhangqingcq/vgce 0.1.8 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +75 -22
- package/dist/style.css +1 -1
- package/dist/vgce.js +406 -299
- package/dist/vgce.umd.cjs +4 -4
- package/package.json +1 -1
- package/src/assets/svgs/text-box.svg +1 -0
- package/src/components/svg-editor/center-panel.vue +146 -147
- package/src/components/svg-editor/index.vue +5 -1
- package/src/components/svg-viewer.vue +68 -69
- package/src/config/files/text-box.vue +72 -0
- package/src/config/index.ts +5 -3
- package/src/config/svg/animation/index.ts +3 -2
- package/src/config/svg/animation/thermometer.ts +2 -1
- package/src/config/svg/custom/clock-a.ts +2 -1
- package/src/config/svg/custom/index.ts +6 -5
- package/src/config/svg/custom/light.ts +2 -1
- package/src/config/svg/custom/svg-text.ts +2 -1
- package/src/config/svg/custom/switch-r.ts +2 -1
- package/src/config/svg/index.ts +6 -10
- package/src/config/svg/stateful/alert-light.ts +2 -1
- package/src/config/svg/stateful/index.ts +3 -2
- package/src/config/svg/stateless/bot-2.ts +2 -1
- package/src/config/svg/stateless/bot-9.ts +2 -1
- package/src/config/svg/stateless/hamburger.ts +2 -1
- package/src/config/svg/stateless/hotpot.ts +2 -1
- package/src/config/svg/stateless/index.ts +6 -5
- package/src/config/vue/component/button.ts +2 -1
- package/src/config/vue/component/common-table.ts +2 -1
- package/src/config/vue/component/index.ts +9 -7
- package/src/config/vue/component/now-time.ts +2 -1
- package/src/config/vue/component/progress.ts +2 -1
- package/src/config/vue/component/tag.ts +2 -1
- package/src/config/vue/component/text-box.ts +66 -0
- package/src/config/vue/echarts/index.ts +3 -2
- package/src/config/vue/echarts/pie-charts.ts +2 -1
- package/src/config/vue/index.ts +4 -3
- package/src/views/EditorS.vue +21 -21
- package/src/views/Preview.vue +38 -38
package/README.md
CHANGED
@@ -2,29 +2,31 @@
|
|
2
2
|
|
3
3
|
Vector graphics configure editor. 矢量图组态编辑器。
|
4
4
|
|
5
|
-
## Guide
|
5
|
+
## Guide 使用说明
|
6
6
|
|
7
|
-
### 1. install
|
7
|
+
### 1. install 安装依赖
|
8
8
|
|
9
9
|
```
|
10
10
|
npm i @zhangqingcq/vgce element-plus@^2.3.8 ace-builds@^1.14.0 lodash-es^4.17.21 vue-echarts@^6.5.1 animate.css@^4.1.1
|
11
11
|
```
|
12
12
|
|
13
|
-
|
13
|
+
or
|
14
14
|
|
15
15
|
```
|
16
16
|
pnpm add @zhangqingcq/vgce element-plus@^2.3.8 ace-builds@^1.14.0 lodash-es^4.17.21 vue-echarts@^6.5.1 animate.css@^4.1.1
|
17
17
|
```
|
18
18
|
|
19
|
-
### 2. change main.ts or main.js
|
19
|
+
### 2. change main.ts or main.js 修改项目主文件
|
20
20
|
|
21
21
|
```
|
22
22
|
//main.js or main.ts
|
23
23
|
|
24
|
+
import 'element-plus/dist/index.css'
|
24
25
|
import '@zhangqingcq/vgce/dist/style.css'
|
25
26
|
```
|
26
27
|
|
27
|
-
### 3. use editor
|
28
|
+
### 3. use editor 使用编辑器
|
29
|
+
|
28
30
|
```
|
29
31
|
<script setup lang="ts">
|
30
32
|
import {SvgEditor} from '@zhangqingcq/vgce'
|
@@ -37,7 +39,9 @@ Vector graphics configure editor. 矢量图组态编辑器。
|
|
37
39
|
<SvgEditor @onPreview="preview"/>
|
38
40
|
</template>
|
39
41
|
```
|
40
|
-
|
42
|
+
|
43
|
+
### 4. use viewer 使用查看器
|
44
|
+
|
41
45
|
```
|
42
46
|
<script setup lang="ts">
|
43
47
|
import {SvgViewer} from '@zhangqingcq/vgce'
|
@@ -46,15 +50,20 @@ Vector graphics configure editor. 矢量图组态编辑器。
|
|
46
50
|
<SvgViewer :data="xxx"/>
|
47
51
|
</template>
|
48
52
|
```
|
49
|
-
### 5. custom toolbar
|
50
53
|
|
51
|
-
|
54
|
+
### 5. custom toolbar 自定义组件
|
55
|
+
|
56
|
+
- copy `src/config/` and change as you want (复制`src/config/`文件夹,然后更改里面的配置)
|
52
57
|
|
53
|
-
|
58
|
+
- put svg files into `src/asset/svgs` , then file name need to be same with config.name (将svg文件放到`src/asset/svgs`
|
59
|
+
,文件名需要和配置文件里的`name`的值一致)
|
54
60
|
|
55
|
-
|
61
|
+
- put custom vue components file into `src/config/files`, then import in `src/config/index.ts` and export with `vueComp`
|
62
|
+
(将自定义vue组件放到`src/config/files`,然后在`src/config/index.ts`引入并以`vueComp`
|
63
|
+
具名导出,组件在vueComp下的key应和配置文件里`tag`的值一致)
|
56
64
|
|
57
|
-
-
|
65
|
+
- send the vue components to the editor and viewer with the props vueComp (在编辑器和查看器使用处把`src/config/index.ts`
|
66
|
+
导出的vueComp引入并以`vueComp`作为props传递给编辑器和查看器组件)
|
58
67
|
|
59
68
|
```
|
60
69
|
// editor
|
@@ -79,11 +88,13 @@ Vector graphics configure editor. 矢量图组态编辑器。
|
|
79
88
|
<SvgViewer :vueComp="vueComp" :data="xxx"/>
|
80
89
|
</template>
|
81
90
|
```
|
91
|
+
- PS: you have to install `vite-plugin-svg-icons` plugin to append your svg to html
|
92
|
+
dom.(你需要在项目安装npm依赖`vite-plugin-svg-icons`,用以把svg文件添加到项目入口html文件中进行使用)
|
82
93
|
|
83
|
-
### 6. how to use `vite-plugin-svg-icons`
|
94
|
+
### 6. how to use `vite-plugin-svg-icons` 如何使用 vite-plugin-svg-icons
|
84
95
|
|
85
|
-
- `npm i vite-plugin-svg-icons -D` or `pnpm add vite-plugin-svg-icons -D`
|
86
|
-
- change `vite.config.ts`
|
96
|
+
- `npm i vite-plugin-svg-icons -D` or `pnpm add vite-plugin-svg-icons -D` (安装依赖)
|
97
|
+
- change `vite.config.ts` (修改项目vite配置文件)
|
87
98
|
|
88
99
|
````
|
89
100
|
// vite.config.ts
|
@@ -98,7 +109,7 @@ Vector graphics configure editor. 矢量图组态编辑器。
|
|
98
109
|
iconDirs: [fileURLToPath(new URL('./src/assets/svgs', import.meta.url))],
|
99
110
|
symbolId: 'svg-[name]',
|
100
111
|
svgoOptions: false,
|
101
|
-
customDomId: '__svg__icons__dom__'//your id, do not use this id
|
112
|
+
customDomId: '__svg__icons__dom__'//your id, do not use this id!(使用你自己定义的id,不能使用__svg__icons__dom__,这是内置svg文件使用的id)
|
102
113
|
})
|
103
114
|
],
|
104
115
|
xxx
|
@@ -106,7 +117,7 @@ Vector graphics configure editor. 矢量图组态编辑器。
|
|
106
117
|
```
|
107
118
|
````
|
108
119
|
|
109
|
-
- change `main.ts`
|
120
|
+
- change `main.ts` (修改项目主文件)
|
110
121
|
|
111
122
|
```
|
112
123
|
// main.ts
|
@@ -115,11 +126,53 @@ Vector graphics configure editor. 矢量图组态编辑器。
|
|
115
126
|
```
|
116
127
|
|
117
128
|
- PS: if there is error: `Cannot find module ‘fast-glob’`,then run `npm i fast-glob -D` or `pnpm add fast-glob -D`
|
129
|
+
(如果报前面的错,就安装`fast-glob`npm 依赖)
|
118
130
|
|
119
|
-
### 7.
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
- `pnpm i` or `npm i`
|
131
|
+
### 7.custom background 自定义编辑器和查看器背景
|
132
|
+
- 这是一个非常棒的功能,你可以通过editor和viewer的插槽自定义其背景,你可以在插槽中放入html元素,并给它加上丰富样式(拼接的各种颜色、渐变色,网格,小装饰等),也可以通过给元素设置图片背景或者直接放入图片来实现以图片为背景
|
133
|
+
```
|
134
|
+
// editor
|
124
135
|
|
125
|
-
|
136
|
+
<SvgEditor :data="xxx" @onPreview="previewHandle">
|
137
|
+
<template #background>
|
138
|
+
<div style="height: 100%; width: 100%; background-color: red"></div>
|
139
|
+
</template>
|
140
|
+
</SvgEditor>
|
141
|
+
```
|
142
|
+
```
|
143
|
+
// viewer
|
144
|
+
|
145
|
+
<svgViewer :data="xxx">
|
146
|
+
<template #background>
|
147
|
+
<div style="height: 100%; width: 100%; background-color: red"></div>
|
148
|
+
</template>
|
149
|
+
</svgViewer>
|
150
|
+
```
|
151
|
+
### 8.mqtt 通信
|
152
|
+
|
153
|
+
- 在编辑器右侧‘通信’菜单下配置好mqtt通信需要的url、username、password、topics
|
154
|
+
- 在使用查看器的地方监听查看器emit的`onMessage`事件,并处理事件返回的数据`{ topics, message }`
|
155
|
+
- message可以用JSON.parse解析成对象(后端推给前端的MQTT消息内容需要是JSON格式)
|
156
|
+
- 拿到消息后可以配合setNodeAttrByID方法更新界面
|
157
|
+
- setNodeAttrByID的参数id可以在传给本组件的props.data(用户传进来的,自然知道值是多少)里done_json找到
|
158
|
+
> 如何找到指定组件的两种方案:
|
159
|
+
> 1. 用你的项目里前后端约定的svg组件唯一标识符替换掉编辑器生成的id(必须保证唯一),然后调用setNodeAttrByID改变组件属性。
|
160
|
+
> 2. 如果不想改动id(避免因不能保证手动改过的id唯一性导致编辑器功能异常),可以在config里给想要改变的组件的配置文件的props里增加一个字段,
|
161
|
+
如deviceCode(svg-text的配置文件里有被注释的例子),然后在编辑组态时,给对应组件填上对应的deviceCode(这样deviceCode就和组件id实现
|
162
|
+
了映射关系),并保存,后台给前台推MQTT消息时带上指定的deviceCode,前台预览时,在收到MQTT消息后,凭借消息里的deviceCode在done_json
|
163
|
+
找到组件的id(可以用vue的computed计算一份deviceCode和id的映射关系存到一个对象里,这样在需要id时可直接在计算出的对象凭借deviceCode
|
164
|
+
直接取到),即可用setNodeAttrByID改变组件属性
|
165
|
+
|
166
|
+
### 9. example 查看示例
|
167
|
+
|
168
|
+
- download [VGCE](https://github.com/RickyHeaven/VGCE.git) (下载项目)
|
169
|
+
|
170
|
+
- `pnpm i` or `npm i` (安装依赖)
|
171
|
+
|
172
|
+
- `pnpm dev` or `npm run dev` (运行项目,使用示例参考`src/views`下两个页面)
|
173
|
+
|
174
|
+
### 注意:
|
175
|
+
|
176
|
+
- 本库ui框架使用的是`element-plus`,所以你需要在你的项目安装 element-plus 依赖
|
177
|
+
- 在你没有其他地方使用element-plus组件的情况下,可以不用完整安装element-plus,但需要引入其样式文件`import 'element-plus/dist/index.css'`,如果你不想全部引入该样式文件,可以按组件手动引入,如:`import 'element-plus/es/components/select/style/css'`,这样可以减小你生产包的体积,但你需要仔细排查该引入哪些组件样式
|
178
|
+
- 如果有少量使用其组件,也可以使用按需引入或手动引入,如果项目使用了其他UI框架,在不完整安装element-plus的情况下,是不会有冲突的
|