forked from flowhub/the-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo-simple.html
201 lines (182 loc) · 6.69 KB
/
demo-simple.html
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html>
<head>
<title>Graph Editor Demo</title>
<meta charset="utf-8">
<!-- Libraries -->
<script src="../node_modules/react/dist/react.js"></script>
<script src="../node_modules/react-dom/dist/react-dom.js"></script>
<script src="../node_modules/klayjs-noflo/klay-noflo.js"></script>
<script src="../node_modules/hammerjs/hammer.min.js"></script>
<!-- Browserify Libraries -->
<script src="../dist/the-graph.js"></script>
<link rel="stylesheet" href="../themes/the-graph-dark.css">
<link rel="stylesheet" href="../themes/the-graph-light.css">
<!-- Fonts -->
<link rel="stylesheet" href="../node_modules/font-awesome/css/font-awesome.min.css">
<link href='http://fonts.googleapis.com/css?family=Source+Code+Pro:400' rel='stylesheet' type='text/css'>
<style>
@font-face {
/* we want the svg version */
font-family: 'FontAwesomeSVG';
src: url('../node_modules/font-awesome/fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg'),
url('../node_modules/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'),
url('../node_modules/font-awesome/fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'),
url('../node_modules/font-awesome/fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype');
font-weight: normal;
font-style: normal;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
<style>
html, body {
width: 100%;
height: 100%;
}
body {
background-color: hsl(189, 47%, 6%);
font-family: "SourceCodePro",Helvetica,Arial,sans-serif;
overflow: hidden;
}
#editor {
background-color: transparent;
position: absolute;
top: 0;
left: 0;
}
#testing {
position: absolute;
top: 0;
left: 0;
}
</style>
</head>
<body>
<div id="editor" class="the-graph-dark"></div>
<div id="testing">
<button id="random">random graph</button>
<button id="addnode">add node</button>
<button id="addedge">add edge</button>
<button id="get">get graph</button>
<button id="clear">clear</button>
</div>
<div id="loading" style="position:absolute; top:10px; left:10px; background-color:white; padding:10px; border-radius:5px;">
<img src="assets/loading.gif"/>
<div id="loading-message">loading custom elements...</div>
</div>
<script type="text/javascript">
"use strict";
var fbpGraph = window.TheGraph.fbpGraph;
// Remove loading message
document.body.removeChild( document.getElementById("loading") );
// The graph editor
var editor = document.getElementById('editor');
// Component library
var library = {
basic: {
name: 'basic',
description: 'basic demo component',
icon: 'eye',
inports: [
{'name': 'in0', 'type': 'all'},
{'name': 'in1', 'type': 'all'},
{'name': 'in2', 'type': 'all'}
],
outports: [
{'name': 'out', 'type': 'all'}
]
},
tall: {
name: 'tall',
description: 'tall demo component',
icon: 'cog',
inports: [
{'name': 'in0', 'type': 'all'},
{'name': 'in1', 'type': 'all'},
{'name': 'in2', 'type': 'all'},
{'name': 'in3', 'type': 'all'},
{'name': 'in4', 'type': 'all'},
{'name': 'in5', 'type': 'all'},
{'name': 'in6', 'type': 'all'},
{'name': 'in7', 'type': 'all'},
{'name': 'in8', 'type': 'all'},
{'name': 'in9', 'type': 'all'},
{'name': 'in10', 'type': 'all'},
{'name': 'in11', 'type': 'all'},
{'name': 'in12', 'type': 'all'}
],
outports: [
{'name': 'out0', 'type': 'all'}
]
}
};
// Load empty graph
var graph = new fbpGraph.Graph();
function renderEditor() {
var props = {
readonly: false,
height: window.innerHeight,
width: window.innerWidth,
graph: graph,
library: library,
};
//console.log('render', props);
var editor = document.getElementById('editor');
editor.width = props.width;
editor.height = props.height;
var element = React.createElement(TheGraph.App, props);
ReactDOM.render(element, editor);
}
graph.on('endTransaction', renderEditor); // graph changed
window.addEventListener("resize", renderEditor);
// Add node button
var addnode = function () {
var id = Math.round(Math.random()*100000).toString(36);
var component = Math.random() > 0.5 ? 'basic' : 'tall';
var metadata = {
label: component,
x: Math.round(Math.random()*800),
y: Math.round(Math.random()*600)
};
var newNode = graph.addNode(id, component, metadata);
return newNode;
};
document.getElementById("addnode").addEventListener("click", addnode);
// Add edge button
var addedge = function (outNodeID) {
var nodes = graph.nodes;
var len = nodes.length;
if ( len<1 ) { return; }
var node1 = outNodeID || nodes[Math.floor(Math.random()*len)].id;
var node2 = nodes[Math.floor(Math.random()*len)].id;
var port1 = 'out' + Math.floor(Math.random()*3);
var port2 = 'in' + Math.floor(Math.random()*12);
var meta = { route: Math.floor(Math.random()*10) };
var newEdge = graph.addEdge(node1, port1, node2, port2, meta);
return newEdge;
};
document.getElementById("addedge").addEventListener("click", addedge);
// Random graph button
document.getElementById("random").addEventListener("click", function () {
graph.startTransaction('randomgraph');
for (var i=0; i<20; i++) {
var node = addnode();
addedge(node.id);
addedge(node.id);
}
graph.endTransaction('randomgraph');
});
// Get graph button
document.getElementById("get").addEventListener("click", function () {
var graphJSON = JSON.stringify(graph.toJSON(), null, 2);
alert(graphJSON);
//you can use the var graphJSON to save the graph definition in a file/database
});
// Clear button
document.getElementById("clear").addEventListener("click", function () {
graph = new fbpGraph.Graph();
renderEditor();
});
</script>
</body>
</html>