-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.vue
173 lines (145 loc) · 4.32 KB
/
App.vue
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<template>
<div id="app">
<header class="bg-white shadow">
<div class="mx-auto py-2 px-4 sm:px-6 lg:px-8">
<h1 class="text-xl font-bold text-gray-900">
Vue.js ReactFlow Demo
</h1>
</div>
</header>
<main>
<div class="mx-auto py-2 sm:px-6 lg:px-8">
<!-- Replace with your content -->
<p>This is a demo of running a React component in Vue.js. Drag nodes to the workspace below. To delete a node/edge press Delete.
The element lists gets updated in real-time</p>
<div class="px-4 py-6 sm:px-0">
<button class="m-2 testNode selectable" @dragstart="(event)=> onDragStart(event, 'testNode')" draggable>Test Node</button>
<button class="m-2 conditionNode selectable" @dragstart="(event)=> onDragStart(event, 'conditionNode')" draggable>Condition Node</button>
<div class="flex">
<div class="w-3/5">
<react-flow style="height:400px; width:100%;" class="border-2 border-dashed border-gray-200 rounded-lg h-96" :bus="bus" :state="graph"
@nodeDblClick="handleNodeDblClick" @edgeDblClick="handleNodeDblClick" @stateChange="onStateChange" ref="mygraph" />
</div>
<div class="w-3/5">
<div class="border-2 border-dashed border-gray-200 rounded-lg whitespace-pre text-tiny font-mono bg-gray-100 ">
{{graph}}
</div>
</div>
</div>
</div>
<!-- /End replace -->
</div>
</main>
<p>
</p>
</div>
</template>
<script>
import { ReactInVue } from 'vuera'
import Graph from './components/graph.jsx'
import EventBus from './eventbus.js'
export default {
name: 'App',
components: {
'react-flow': ReactInVue(Graph),
},
methods:{
handleNodeDblClick(event){
window.alert(JSON.stringify(event, null, 4));
},
onStateChange(elements){
this.graph = {
elements : elements
};
//this.logs += "\n"+JSON.stringify(elements);
},
toggleAnimation(){
this.toggle = !this.toggle;
EventBus.$emit('updateElement', { id: 'e1-2', source: '1', target: '2', animated: this.toggle })
},
onDragStart(event, nodeType){
event.dataTransfer.setData('application/reactflow', nodeType);
event.dataTransfer.effectAllowed = 'move';
console.log("Drag", event)
},
addNode(){
this.graph.elements.push( {
id: Math.ceil(Math.random()*1000)+'',
type: 'output', // output node
data: { label: 'Random Node' },
position: { x: 150+ Math.ceil(Math.random()*100), y: 150 },
});
EventBus.$emit('setElements', { elements: this.graph.elements} );
}
},
mounted(){
this.bus.$on('dblClick', this.handleDblClick);
},
data: () =>{
return {
bus: EventBus,
logs: "empty",
toggle : false,
graph : {
elements: [{
id: 'start',
type: 'input', // input node
style: { background: '#70de70', borderRadius: 50, padding: 10 },
sourcePosition: 'right',
data: { label: 'start' },
position: { x: 50, y: 250 },
},
{
id: 'finish',
type: 'output', // output node
data: { label: 'End' },
style: { background: '#ffa4a4', borderRadius: 50, padding: 10 },
targetPosition: 'left',
position: { x: 550, y: 250 },
},
// animated edge
]
}
}
}
}
</script>
<style>
.btn, p {
font-size: 14px;
}
.conditionNode {
border: 1px solid #777;
font-size: 14px;
background: #eee;
border-radius: 50px;
padding: 10px;
}
.testNode{
border: 1px solid #777;
font-size: 14px;
background: #3b82f6;
border-radius: 5px;
color:white;
padding: 10px 20px;
}
.dragNode{
margin-bottom: 10px;
font-size: 14px;
flex-direction: column;
display: flex;
height: 100%;
}
.conditionNode .react-flow__handle-connecting {
background: red;
-webkit-box-shadow: 1px 1px 4px 0px #ef4444;
-moz-box-shadow: 1px 1px 4px 0px #ef4444;
box-shadow: 1px 1px 4px 0px #ef4444;
}
.testNode .react-flow__handle-connecting {
background: blue;
-webkit-box-shadow: 1px 1px 4px 0px aqua;
-moz-box-shadow: 1px 1px 4px 0px aqua;
box-shadow: 1px 1px 4px 0px aqua;
}
</style>