1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/**
* Copyright (c) 2017 ZTE Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and the Apache License 2.0 which both accompany this distribution,
* and are available at http://www.eclipse.org/legal/epl-v10.html
* and http://www.apache.org/licenses/LICENSE-2.0
*
* Contributors:
* ZTE - initial API and implementation and/or initial documentation
*/
import { Injectable } from '@angular/core';
import * as jsp from 'jsplumb';
import { WorkflowService } from "./workflow.service";
/**
* JsPlumbService
* provides all of the operations about jsplumb plugin.
*/
@Injectable()
export class JsPlumbService {
public jsplumbInstance;
constructor(private workflowService: WorkflowService) {
this.initJsPlumbInstance();
}
public initJsPlumbInstance() {
this.jsplumbInstance = jsp.jsPlumb.getInstance({
Container: 'canvas'
});
this.jsplumbInstance.importDefaults({
Anchor: ['Top', 'RightMiddle', 'LeftMiddle', 'Bottom'],
Connector: [
'Flowchart',
{ cornerRadius: 0, stub: 0, gap: 3 },
],
ConnectionOverlays: [
[
'Arrow',
{ direction: 1, foldback: 1, location: 1, width: 10, length: 10 },
],
['Label', { label: '', id: 'label', cssClass: 'aLabel' }],
],
Endpoint: 'Blank',
PaintStyle: {
strokeWidth: 4,
stroke: 'black',
},
HoverPaintStyle: {
strokeWidth: 4,
stroke: 'blue',
},
});
// add connection to model data while a new connection is build
this.jsplumbInstance.bind('connection', info => {
info.connection.bind('click', connection => {
this.jsplumbInstance.select({ connections: [connection] }).delete();
});
});
}
public initNode(selectorString: string) {
const selector = this.jsplumbInstance.getSelector(selectorString);
this.jsplumbInstance.draggable(selector, {
// stop(event) {
// node.position.left = event.pos[0];
// node.position.top = event.pos[1];
// },
});
this.jsplumbInstance.makeTarget(selector, {
detachable: false,
isTarget: true,
maxConnections: -1,
});
this.jsplumbInstance.makeSource(selector, {
filter: '.anchor, .anchor *',
detachable: false,
isSource: true,
maxConnections: -1,
});
}
public remove(nodeId: string) {
this.jsplumbInstance.remove(nodeId);
}
public buttonDraggable() {
const selector = this.jsplumbInstance.getSelector('.toolbar .item');
this.jsplumbInstance.draggable(selector,
{
scope: 'btn',
clone: true,
});
}
public buttonDroppable() {
console.log('buttonDroppable');
const selector = this.jsplumbInstance.getSelector('.canvas');
this.jsplumbInstance.droppable(selector, {
scope: 'btn',
drop: event => {
const el = this.jsplumbInstance.getSelector(event.drag.el);
const type = el.attributes.nodeType.value;
const left = event.e.clientX - event.drop.position[0];
const top = event.e.clientY - event.drop.position[1];
this.workflowService.addNode(type, type, top, left);
},
});
}
}
|