@zhangqingcq/vgce
TypeScript icon, indicating that this package has built-in type declarations

0.1.29 • Public • Published

VGCE

Vector graphics configure editor. 矢量图组态编辑器。

Guide 使用说明

1. install 安装依赖

  npm i @zhangqingcq/vgce element-plus@2.8.6 ace-builds@1.14.0 lodash-es@^4.17.21 vue-echarts@6.5.1 animate.css@4.1.1

or

  pnpm add @zhangqingcq/vgce element-plus@2.8.6 ace-builds@1.14.0 lodash-es@^4.17.21 vue-echarts@6.5.1 animate.css@4.1.1

2. change main.ts or main.js 修改项目主文件

  //main.js or main.ts

  import '@zhangqingcq/vgce/dist/style.css'

3. use editor 使用编辑器

   <script setup lang="ts">
     import {SvgEditor} from '@zhangqingcq/vgce'

     function preview(d: any) {
       //save d and send it to SvgViewer's data
     }
   </script>
   <template>
     <SvgEditor @onPreview="preview"/>
   </template>

4. use viewer 使用查看器

   <script setup lang="ts">
     import {SvgViewer} from '@zhangqingcq/vgce'
   </script>
   <template>
     <SvgViewer :data="xxx"/>
   </template>

5. custom toolbar 自定义组件

  • copy src/config/ and change as you want (复制src/config/文件夹,然后更改里面的配置)

  • put svg files into src/asset/svgs , then file name need to be same with config.name (将svg文件放到src/asset/svgs ,文件名需要和配置文件里的name的值一致)

  • 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的值一致)

  • send the vue components to the editor and viewer with the props vueComp (在编辑器和查看器使用处把src/config/index.ts 导出的vueComp引入并以vueComp作为props传递给编辑器和查看器组件)

    // editor
    
    <script setup lang="ts">
      import {SvgEditor} from '@zhangqingcq/vgce'
      import {config,vueComp} from '@/config'
    </script>
    <template>
      <SvgEditor :customToolbar="config" :vueComp="vueComp"/>
    </template>
    
    //viewer
    
    <script setup lang="ts">
      import {SvgViewer} from '@zhangqingcq/vgce'
      import {vueComp} from '@/config'
    </script>
    <template>
      <SvgViewer :vueComp="vueComp" :data="xxx"/>
    </template>
    
  • PS: you have to install vite-plugin-svg-icons plugin to append your svg to html dom.(你需要在项目安装npm依赖vite-plugin-svg-icons,用以把svg文件添加到项目入口html文件中进行使用)

6. how to use vite-plugin-svg-icons 如何使用 vite-plugin-svg-icons

  • npm i vite-plugin-svg-icons -D or pnpm add vite-plugin-svg-icons -D (安装依赖)

  • change vite.config.ts (修改项目vite配置文件)

    // vite.config.ts
    
         import { fileURLToPath, URL } from 'node:url'
         import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
    
         export default defineConfig({
           plugins: [
             xxx,
             createSvgIconsPlugin({
               iconDirs: [fileURLToPath(new URL('./src/assets/svgs', import.meta.url))],
               symbolId: 'svg-[name]',
               svgoOptions: false,
               customDomId: '__svg__icons__dom__'//your id, do not use this id!(使用你自己定义的id,不能使用__svg__icons__dom__,这是内置svg文件使用的id)
             })
           ],
           xxx
         })
         ```
    
  • change main.ts (修改项目主文件)

    // main.ts
    
    import 'virtual:svg-icons-register'
    
  • PS: if there is error: Cannot find module ‘fast-glob’,then run npm i fast-glob -D or pnpm add fast-glob -D (如果报前面的错,就安装fast-globnpm 依赖)

7.custom background 自定义编辑器和查看器背景

  • 这是一个非常棒的功能,你可以通过editor和viewer的插槽自定义其背景,你可以在插槽中放入html元素,并给它加上丰富样式(拼接的各种颜色、渐变色,网格,小装饰等),也可以通过给元素设置图片背景或者直接放入图片来实现以图片为背景
 // editor

 <SvgEditor :data="xxx" @onPreview="previewHandle">
   <template #background>
     <div style="height: 100%; width: 100%; background-color: red"></div>
   </template>
 </SvgEditor>
 // viewer

 <SvgViewer :data="xxx">
   <template #background>
     <div style="height: 100%; width: 100%; background-color: red"></div>
   </template>
 </SvgViewer>

8.mqtt 通信

  • mqtt通信配置有两种方案:

    方案1.通过编辑器(editor)的mqtt属性传递配置,如:

      <SvgEditor :mqtt="{cover:true,url:'xxx',user:'xxx',pwd:'xxx',topics:'xxx'}">
      // cover:是否使用这里的配置覆盖通信面板设置(也就是后面将介绍的第二种方案)的配置,为ture则覆盖,一般这里进行配置了,通信面板就无需再配置,
                所以这里一般都要传true。当然,如果你只想将这里的配置作为备选方案,如果使用者在编辑器通信面板进行了配置,则使用通信面板的配置,这里传false。
    

    方案2.在编辑器右侧‘通信’菜单下配置好mqtt通信需要的url、username、password、topics,注意:关闭通信面板‘外部配置’选项方可进行独立配置且使配置生效。

  • 在使用查看器的地方监听查看器emit的onMessage事件,并处理事件返回的数据{ topics, message }
  • message可以用JSON.parse解析成对象(后端推给前端的MQTT消息内容需要是JSON格式)
  • 拿到消息后可以配合setNodeAttrByID方法更新界面
  • setNodeAttrByID的参数id可以在传给本组件的props.data(用户传进来的,自然知道值是多少)里done_json找到

    如何找到指定组件的两种方案:

    1. 用你的项目里前后端约定的svg组件唯一标识符替换掉编辑器生成的id(必须保证唯一),然后调用setNodeAttrByID改变组件属性。
    2. 如果不想改动id(避免因不能保证手动改过的id唯一性导致编辑器功能异常),可以在config里给想要改变的组件的配置文件的props里增加一个字段, 如deviceCode(svg-text的配置文件里有被注释的例子),然后在编辑组态时,给对应组件填上对应的deviceCode(这样deviceCode就和组件id实现 了映射关系),并保存,后台给前台推MQTT消息时带上指定的deviceCode,前台预览时,在收到MQTT消息后,凭借消息里的deviceCode在done_json 找到组件的id(可以用vue的computed计算一份deviceCode和id的映射关系存到一个对象里,这样在需要id时可直接在计算出的对象凭借deviceCode 直接取到),即可用setNodeAttrByID改变组件属性

9.event 事件处理

  • 编辑器内组件支持事件处理,首先在选中组件时,右侧“事件”菜单下,可以添加事件(1个或多个)
  • 添加事件后可以选择事件类型、行为、条件(条件非必填)
  • 事件类型即触发类型,现有“点击”和“值改变”,点击即组件被点击触发,值改变即组件向外部emit on-change事件(一般为自定义vue组件才具备这个能力)时触发
  • 事件行为即事件出发后要执行的动作,现有“改变属性”、“执行 JavaScript”、“emit 事件”
  • 改变属性即改变自身和其他组件(其他组件需指定id)属性,需要指定要改变的key和想设定的value,一次可改多个属性
  • 执行 JavaScript即运行输入的js代码
  • emit 事件即viewer向外emit on-event事件,并传递{event,target}数据,event即当前事件的详细数据,target即当前组件的详细数据
  • 条件即事件触发的额外条件,现有“关系运算”,即组件自身属性在满足给出的选定情况下,可以触发事件

10. example 查看示例

  • download VGCE (下载项目)

  • pnpm i or npm i (安装依赖)

  • pnpm dev or npm run dev (运行项目,使用示例参考src/views下两个页面)

注意:

  • 本库ui框架使用的是element-plus,所以你需要在你的项目安装 element-plus 依赖,依赖版本按上面给出的版本
  • 在你没有其他地方使用element-plus组件的情况下,可以不用完整引入element-plus
  • 如果有少量使用其组件,也可以使用按需引入或手动引入
  • 如果项目使用了其他UI框架,编辑器的element-plus组件样式可能会被其他框架污染,但由于编辑器使用的组件不多,且不会出现大面积污染,可自行写样式解决编辑器样式被污染的问题
  • 如果项目使用了其他UI框架,由于编辑器的使用不需要完全引入element-plus,所以不用担心element-plus污染项目中其他UI框架组件

Package Sidebar

Install

npm i @zhangqingcq/vgce

Weekly Downloads

282

Version

0.1.29

License

MIT

Unpacked Size

4.13 MB

Total Files

135

Last publish

Collaborators

  • zhangqingcq