Vue 2 Integration
The jsPlumb Toolkit has several components to assist you in integrating with Vue 2. These are shipped in the package @jsplumbtoolkit/browser-ui-vue2
.
Vue 2 versions of our Flowchart Builder and Schema Builder starter apps are available in the starter apps repository on Github.
We'll refer to this demonstration occasionally in this document.
Imports
"dependencies": {
...
"@jsplumbtoolkit/browser-ui-vue2":"^6.0.0"
...
},
Setup
The Toolkit's Vue2 components are shipped with precompiled templates, meaning you need to import the Toolkit in your Vue bootstrap code. For instance, this is the bootstrap routine from the Flowchart demonstration:
Bootstrap
import Vue from 'vue'
import App from './App.vue'
import { JsPlumbToolkitVue2Plugin } from '@jsplumbtoolkit/browser-ui-vue2' // <---- import the Toolkit Vue 2 plugin
Vue.use(JsPlumbToolkitVue2Plugin); // <-- instruct Vue to load the Toolkit plugin
new Vue({ render: h => h(App) }).$mount('#app')
Components
The Toolkit offers 2 components and 3 mixins:
jsplumb-toolkit
This component provides an instance of the Toolkit and a surface widget to render the contents.
Example
<jsplumb-toolkit id="toolkit" surface-id="surfaceId" v-bind:render-params="anObjectReference"
v-bind:toolkit-params="anObjectReference" v-bind:view="anObjectReference">
</jsplumb-toolkit>
Attributes
All attributes are optional. Note that Vue prefers "kebab case" for attribute names, even if the actual property is camel case on the component (and of course Javascript does not like kebab case for property names).
id
Unique ID for the Toolkit instance. Can be used to retrieve a Toolkit instance from the jsPlumbToolkitVue2 module.surface-id
Unique ID for the Surface widget. Required if you wish to attach a Miniview or a Palette. Also useful if you wish to interact with a Surface, to perform operations such as zooming, centering on content, etc.render-params
Parameters to pass in to the constructor of the Surface widget. Note here we use thev-bind:
prefix to tell Vue that the object we are injecting is in the Vue instance's model.toolkit-params
Parameters to pass in to the constructor of the Toolkit instance. Note again the use ofv-bind:
in our example above.view
View parameters. Views are discussed here.
jsplumb-miniview
This is a component that provides a miniview that can be attached to some surface.
Example
<jsplumb-miniview surface-id="surfaceId"></jsplumb-miniview>
Attributes
surface-id
ID for the surface widget to which to attach the Miniview.
SurfaceDrop mixin
This mixin is a wrapper around the Drop Manager, which offers the ability to drop onto edges, nodes and the canvas itself.
Example
This is an example of a component that uses the SurfaceDrop mixin. We show, in the onCanvasDrop
method, an example of how this mixin can be used to replace the previous Palette mixin. Note, though, the onEdgeDrop
and onDrop
methods: these are, respectively, called when an element is dragged on an Edge or a Node/Group.
<template>
<div class="sidebar node-palette">
<div class="sidebar-item" :data-node-type="entry.type" title="Drag to add new" v-for="entry in data" :key="entry.type">
<i :class="entry.icon"></i>{{entry.label}}
</div>
</div>
</template>
<script>
import { SurfaceDrop } from '@jsplumbtoolkit/browser-ui-vue2';
export default {
mixins:[ SurfaceDrop ],
data:function() {
return {
data:[
{ icon:"icon-tablet", label:"Question", type:"question" },
{ icon:"icon-eye-open", label:"Action", type:"action" },
{ type:"output", icon:"icon-eye-open", label:"Output" }
]
};
}
}
</script>
Note that this component itself doesn't declare any props
, and you are free to provide any template you wish to
render the component's data
. The underlying DragDrop
mixin's props
are:
- surfaceId:string Required. The ID of the Surface to which to attach the Drop Manager.
- selector:string Required. A CSS3 selector instructing the Toolkit how to identify which elements in the component represent draggable node types.
- dataGenerator:(el:HTMLElement) => T Optional. A function that can return a data object representing an element which is being dragged. This function is called as soon as an element starts to be dragged.
- allowDropOnGroup:boolean Optional, defaults to true. If true, then elements can be dropped onto nodes/groups, and in the event that occurs, the
onDrop
method will be called. - allowDropOnCanvas:boolean Optional, defaults to true. When an element is dropped on the canvas whitespace, it is added to the dataset and rendered.
- allowDropOnEdge:boolean Optional, defaults to true. If true, then elements can be dropped onto edges, and in the event that an element is dropped on an edge, a new node/group is added and inserted between the source and target of the original edge, and the original edge is discarded..
- typeGenerator:(data:T) => string Optional. A function that can return the correct type for some data object representing an element being dragged. By default the Toolkit will use the
type
member of the data object. - groupIdentifier:(d: T, el: HTMLElement) => boolean Optional. By default, the toolkit looks for a
jtk-is-group
attribute on an element being dragged. If found, with a value of"true"
, then the Toolkit assumes a group is being dragged. You can supply your own function to make this decision.
BaseNodeComponent
This mixin should be included in any component you will use to render a node (see below for discussion of this). Several helper methods are exposed by this mixin:
- getNode() Gets the underlying Toolkit node that the component is rendering
- removeNode() Instructs the Toolkit to remove the node that the component is rendering. This will of course result in the destruction of the component.
- getToolkit() Gets the underlying Toolkit instance for the node the component is rendering.
- updateNode(data:any) Updates the underlying node that the component is rendering.
Nodes rendered with this mixin are fully reactive: calls to updateNode
will result in a repaint of the component
with no further effort involved on your part.
BaseGroupComponent
This mixin should be included in any component you will use to render a group (see below for discussion of this). Several helper methods are exposed by this mixin:
- getGroup() Gets the underlying Toolkit group that the component is rendering
- removeGroup(removeChildNodes?:boolean) Instructs the Toolkit to remove the group that the component is rendering, and possibly all of the child nodes of the group too. This will of course result in the destruction of the component.
- getToolkit() Gets the underlying Toolkit instance for the group the component is rendering.
- updateGroup(data:any) Updates the underlying group that the component is rendering.
Groups rendered with this mixin are fully reactive: calls to updateGroup
will result in a repaint of the component with no further effort involved on your part.
Rendering Nodes and Groups
To render nodes and groups you need to do 3 things:
- create a component
- import it into the code that's handling your Toolkit instance
- map it via the view.
Imagine you make this component inside MyNode.vue
:
<template>
<div>
<h1>{{obj.label}}</h1>
<button v-on:click="clicked()">CLICK ME</button>
</div>
</template>
<script>
import { BaseNodeComponent } from "@jsplumbtoolkit/browser-ui-vue2";
export default {
mixins:[ BaseNodeComponent ],
methods:{
clicked:function() {
alert(this.getNode().data.label);
}
}
}
</script>
And you make this component, to manage an instance of the Toolkit:
<template>
<jsplumb-toolkit
ref="toolkitComponent"
url="flowchart-1.json"
v-bind:render-params="renderParams"
v-bind:view="view"
id="toolkit"
surface-id="surface"
v-bind:toolkit-params="toolkitParams">
</jsplumb-toolkit>
</template>
<script>
import MyNode from './MyNode.vue';
export default {
name: 'jsp-toolkit',
props:["surfaceId"],
data:() => {
renderParams:{ ... },
view:{
nodes:{
default:{
component:MyNode
}
}
}
}
}
</script>
MyNode
is mapped to the component
used to render nodes of type "default" (which for the Toolkit means any node). The jsplumb-toolkit
declaration in the template is the one from the Flowchart Builder, which is a good place to look to get a feel for how a whole application can be built using the Toolkit.
Injecting values into nodes/groups
From version 5.13.7 onwards, you can provide a set of data values that you'd like to inject into a component via the inject
property of a node definition:
export default {
name: 'jsp-toolkit',
props:["surfaceId"],
data:() => {
renderParams:{ ... },
view:{
nodes:{
default:{
component:MyNode,
inject:{
injectedStaticValue:"My Static Value",
injectedDynamicValue:(node, toolkit) => `My Dynamic Value ${node.id}`
}
}
}
}
}
}
Each value you inject can be either a static value, or a function that takes as argument the current node (or group) and the underlying Toolkit instance, and which returns an appropriate value.
In the component itself you need to declare these in the data
section:
data:{
injectedStaticValue:String,
injectedDynamicValue:String
},
You can then access these values in your template:
<template>
<div class="injected-static">{{injectedStaticValue}}</div>
<div class="injected-dynamic">{{injectedDynamicValue}}</div>
</template>
Rendering Ports
The Vue 2 integration supports rendering ports. A good example for how to do this can be found in the code for the Schema Builder starter application.