@zhangqingcq/vgce 0.1.9 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -7,13 +7,13 @@ Vector graphics configure editor. 矢量图组态编辑器。
7
7
  ### 1. install 安装依赖
8
8
 
9
9
  ```
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
10
+ npm i @zhangqingcq/vgce element-plus@2.8.0 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
- or
13
+ or
14
14
 
15
15
  ```
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
16
+ pnpm add @zhangqingcq/vgce element-plus@2.8.0 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
19
  ### 2. change main.ts or main.js 修改项目主文件
@@ -21,10 +21,12 @@ Vector graphics configure editor. 矢量图组态编辑器。
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
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
  ```
42
+
40
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
  ```
53
+
49
54
  ### 5. custom toolbar 自定义组件
50
55
 
51
56
  - copy `src/config/` and change as you want (复制`src/config/`文件夹,然后更改里面的配置)
52
57
 
53
- - put svg files into `src/asset/svgs` , then file name need to be same with config.name (将svg文件放到`src/asset/svgs`,文件名需要和配置文件里的`name`的值一致)
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
- - put custom vue components file into `src/config/files`, then import in `src/config/index.ts` and export with `vueComp` (将自定义vue组件放到`src/config/files`,然后在`src/config/index.ts`引入并以`vueComp`具名导出,组件在vueComp下的key应和配置文件里`tag`的值一致)
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
- - send the vue components to the editor and viewer with the props vueComp (在编辑器和查看器使用处把`src/config/index.ts`导出的vueComp引入并以`vueComp`作为props传递给编辑器和查看器组件)
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,7 +88,8 @@ Vector graphics configure editor. 矢量图组态编辑器。
79
88
  <SvgViewer :vueComp="vueComp" :data="xxx"/>
80
89
  </template>
81
90
  ```
82
- - PS: you have to install `vite-plugin-svg-icons` plugin to append your svg to html dom.(你需要在项目安装npm依赖`vite-plugin-svg-icons`,用以把svg文件添加到项目入口html文件中进行使用)
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文件中进行使用)
83
93
 
84
94
  ### 6. how to use `vite-plugin-svg-icons` 如何使用 vite-plugin-svg-icons
85
95
 
@@ -115,26 +125,54 @@ Vector graphics configure editor. 矢量图组态编辑器。
115
125
  import 'virtual:svg-icons-register'
116
126
  ```
117
127
 
118
- - PS: if there is error: `Cannot find module ‘fast-glob’`,then run `npm i fast-glob -D` or `pnpm add fast-glob -D` (如果报前面的错,就安装`fast-glob`npm 依赖)
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 依赖)
130
+
131
+ ### 7.custom background 自定义编辑器和查看器背景
132
+ - 这是一个非常棒的功能,你可以通过editor和viewer的插槽自定义其背景,你可以在插槽中放入html元素,并给它加上丰富样式(拼接的各种颜色、渐变色,网格,小装饰等),也可以通过给元素设置图片背景或者直接放入图片来实现以图片为背景
133
+ ```
134
+ // editor
135
+
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 通信
119
152
 
120
- ### 7.mqtt 通信
121
153
  - 在编辑器右侧‘通信’菜单下配置好mqtt通信需要的url、username、password、topics
122
154
  - 在使用查看器的地方监听查看器emit的`onMessage`事件,并处理事件返回的数据`{ topics, message }`
123
155
  - message可以用JSON.parse解析成对象(后端推给前端的MQTT消息内容需要是JSON格式)
124
156
  - 拿到消息后可以配合setNodeAttrByID方法更新界面
125
157
  - setNodeAttrByID的参数id可以在传给本组件的props.data(用户传进来的,自然知道值是多少)里done_json找到
126
- >如何找到指定组件的两种方案:
158
+ > 如何找到指定组件的两种方案:
127
159
  > 1. 用你的项目里前后端约定的svg组件唯一标识符替换掉编辑器生成的id(必须保证唯一),然后调用setNodeAttrByID改变组件属性。
128
160
  > 2. 如果不想改动id(避免因不能保证手动改过的id唯一性导致编辑器功能异常),可以在config里给想要改变的组件的配置文件的props里增加一个字段,
129
- 如deviceCode(svg-text的配置文件里有被注释的例子),然后在编辑组态时,给对应组件填上对应的deviceCode(这样deviceCode就和组件id实现
130
- 了映射关系),并保存,后台给前台推MQTT消息时带上指定的deviceCode,前台预览时,在收到MQTT消息后,凭借消息里的deviceCode在done_json
131
- 找到组件的id(可以用vue的computed计算一份deviceCode和id的映射关系存到一个对象里,这样在需要id时可直接在计算出的对象凭借deviceCode
132
- 直接取到),即可用setNodeAttrByID改变组件属性
161
+ 如deviceCode(svg-text的配置文件里有被注释的例子),然后在编辑组态时,给对应组件填上对应的deviceCode(这样deviceCode就和组件id实现
162
+ 了映射关系),并保存,后台给前台推MQTT消息时带上指定的deviceCode,前台预览时,在收到MQTT消息后,凭借消息里的deviceCode在done_json
163
+ 找到组件的id(可以用vue的computed计算一份deviceCode和id的映射关系存到一个对象里,这样在需要id时可直接在计算出的对象凭借deviceCode
164
+ 直接取到),即可用setNodeAttrByID改变组件属性
133
165
 
134
- ### 8. example 查看示例
166
+ ### 9. example 查看示例
135
167
 
136
168
  - download [VGCE](https://github.com/RickyHeaven/VGCE.git) (下载项目)
137
169
 
138
170
  - `pnpm i` or `npm i` (安装依赖)
139
171
 
140
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的情况下,是不会有冲突的