[jointjs] 自定义shape

2022-01-27  本文已影响0人  没错就是我了

前面一篇写了使用jointjs实现自动布局和拖拽缩放,这篇记录一下自定义图形。

首先jointjs内置的图形有很多,文档已经列出来了:

1876625-20220127112339848-582353679.png

但是有时候这些图形满足不了我们的需求,就需要我们自己去绘制自己想要的图形。例如完成下面图的效果:

1876625-20220127113348046-639814665.png

拆解一下每个基本图案,实际上是 一个圆形图片 + 一个圆角矩形 + 文字。

1876625-20220127113820134-406644965.png
  1. 代码基本结构跟之前没有太大区别,原始节点数据新加了几个属性。
/** 原始数据:节点 */
nodes: [
    { id: 1, label: '阿巴', img: require('../../assets/img/pic-1.jpg') },
    { id: 2, label: '暴富', img: require('../../assets/img/pic-2.jpg') },
    { id: 3, label: '小熊', img: require('../../assets/img/pic-3.jpg') }
],
/** 原始数据:连线 */
links: [
    { from: 1, to: 2 },
    { from: 1, to: 3 }
]
  1. 在自己的某个目录创建一个js文件,在这个文件内写自定义图形的代码。我这里主要使用joint.shapes.basic.Generic.extend方法,这个方法返回一个创建好的图形的对象。
    文档内也有其他方法定义自定义图形的方法,例如:joint.dia.Element.define(),从头开始创建图元子类型,也可以继承某种标准类型,创建某标准类型的子类型,例如:joint.shapes.standard.Rectangle.define()。
    文档:https://resources.jointjs.com/tutorial/custom-elements

在接收joint.shapes.basic.Generic.extend这个方法的返回时,可以直接在joint.shapes里面创建一个新名称:

joint.shapes.basic.customShape = joint.shapes.basic.Generic.extend({});

也可以随便赋值给一个变量myShape,然后export出去;
在vue文件引入这个js后,在创建节点时,把图形函数名换成customShape就可以了,例如:
let node = new joint.shapes.basic.customShape({...});
或者
let node = new myShape({...});

  1. 最后完整的js代码:
import * as joint from 'jointjs';
let option = {
    type: 'basic.customShape',
    size: {
        width: 80,
        height: 114
    },
    attrs: {
        '.body': {
            width: 80,
            height: 114,
            fill: 'none'
        },
        '#image-box': {
            width: 80,
            height: 80,
            rx: '50%',
            ry: '50%',
        },
        '.avatar': {
            width: 80,
            height: 80,
        },
        '.name-bg': {
            width: 50,
            height: 24,
            rx: 12,
            ry: 12,
            fill: '#ffcdcd',
            refX: 15,
            refY: 90
        },
        '.name': {
            fill: '#000',
            ref: '.name-bg',
            textVerticalAnchor: 'middle',
            textAnchor: 'middle',
            refX: '50%',
            refY: '50%'
        }
    }
};
joint.shapes.basic.customShape = joint.shapes.basic.Generic.extend({})
let customShape = joint.shapes.basic.Generic.extend({
    markup: `<g class="rotatable">
                <g class="scalable">
                    <rect class="body" />
                </g>
                <g>
                    <rect id="image-box" />
                    <clipPath id="clip">
                        <use xlink:href="#image-box" />
                    </clipPath>
                    <image class="avatar" clip-path="url(#clip)" />
                </g>
                <g>
                    <rect class="name-bg" />
                    <text class="name"></text>
                </g>
            </g>`,
    defaults: joint.util.defaultsDeep(option, joint.shapes.basic.Generic.prototype.defaults),
    initialize: function() {
        this.on(
          'change:label',
          function() {
            this.updateRectangles();
          },
          this
        );
        this.updateRectangles();
        joint.shapes.basic.Generic.prototype.initialize.apply(this, arguments);
    },
    updateRectangles() {
      const attrs = this.get('attrs');
      const rect = { label: this.get('label'), image: this.get('image') };
      attrs['.name'].text = rect.label;
      attrs['.avatar']['xlink:href'] = rect.image;
    }
});

export default customShape;

对于配置中defaults: joint.util.defaultsDeep(option, joint.shapes.basic.Generic.prototype.defaults)的defaultsDeep方法

image.png image.png image.png
上一篇下一篇

猜你喜欢

热点阅读