-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
261 lines (217 loc) · 6.69 KB
/
index.js
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
import {DataSet, Network} from 'vis/index-network'
import 'vis/dist/vis-network.min.css'
import {formatNodes, getObjByProp} from './mUtils'
import graphData from "./physics.json"
import {nodes as exampleNodes, edges as exampleEdges} from "./exampleData"
const DATA = graphData.data;
console.log(DATA.nodes);
let myNodes = formatNodes(DATA.nodes);
var updatedJSON = {"test": 80};
// @markus
var id = '5afd1f6666f40f710d14c85e'
var urlLoad = 'http://174.138.2.82/loadEditor';
var urlUpdate = 'http://174.138.2.82/updateEditor';
fetch(urlLoad, {
method: 'GET',
headers: new Headers({
'id': id
})
}).then(function(response) {
console.log(response);
return response.json();
})
.then(function(myJson) {
console.log(myJson);
})
//dirty hack to have textPadding
myNodes.forEach(m => {
m.label = " " + m.label + " "
})
const links = DATA.links;
const hasInOut = function(nodeId, links) {
return (links.filter(e => e.from === nodeId).length > 0 && links.filter(e=> e.to === nodeId).length > 0)
}
window.myNodes = myNodes;
const setChildren = function(node, links, nodes) {
node.to = [];
//logic: if my father is the node then you're the node's child
links.forEach(l => {
if (l.from === node.id) {
//get Ids first
node.to.push(l.to)
}
});
//get node from nodeId
node.to = node.to.map(n => {
const x = nodes.filter(e => e.id === n)[0];
return x;
})
};
//set .to from all nodes
myNodes.forEach(m => setChildren(m, links, myNodes));
//count longest branches recursively
const calcHeight = function(node, length, values = []) {
//if node is a Leaf
if (!node.to.length) {
return length;
}
else {
//get number of children
const l = length+1;
node.to.forEach(n => values.push(calcHeight(n, l)));
// values = values.filter(v => !isNaN(v))
console.log("val ", values)
return Math.max(...values)
}
};
myNodes.forEach(n => n.height = calcHeight(n, 0));
const mainNodes = myNodes.filter(n => hasInOut(n.id, links))
//give them styling
mainNodes.map(n => n.group = "main");
const mainIDs = mainNodes.map(n => n.id);
//make dynamic with VisJS add /remove functions
const mainN = window.mainN = new DataSet(mainNodes)
const edges = new DataSet(links)
console.log("mainnodes " , mainNodes);
// create a network
const container = document.getElementById('container');
const data = {
nodes: mainN,
edges: edges
};
const options = {
interaction: {
navigationButtons: true
},
autoResize: true,
nodes: {
shape: 'dot',
size: 30,
// color: "white",
font: {
size: 14,
color: '#ffe8e8',
background: "#444444"
},
color: {
highlight: {
background: "#ff8647",
border: "#ff4f48"
}
},
borderWidth: 6
},
edges: {
width: 2,
arrows: {
to: true
}
},
groups: {
"minor" :{
shape: "diamond",
size: 15,
color: {
border: "#9092ff",
background: "#ffcef9"
},
},
"main": {
shape: "diamond",
color: {
background: "#7ba8ff",
border: "#595959"
},
fixed: {
x: true, y: true
}
}
},
physics: {
"barnesHut": {
"centralGravity": 0.2,
"springConstant": 0.12
},
"minVelocity": 0.75
}
};
let network = window.network = new Network(container, data, options);
//place the start node on the left
const netNodes = window.netNodes = network.nodesHandler.body.nodes; //htmlcollection --> array
window.mainNodes = mainNodes;
const treeHeight = Math.max(...myNodes.map(n => n.height))
const lowestHeight = Math.min(...myNodes.map(n=> n.height))
const canvasWidth = 400; //as per visjs apparently
const canvasHeight = 300; //as per visjs apparently
const nodesPerHeight2D = [[]];
for (let i = 0; i <= treeHeight; i++) {
nodesPerHeight2D.push(mainNodes.filter(n => n.height === i))
};
console.log('HEIEIEI ', nodesPerHeight2D )
const xStep = canvasWidth/(treeHeight-lowestHeight);
// mainNodes.forEach(n => network.moveNode(n.id, 200 - (canvasWidth/treeHeight) * n.height, 0)); //space out heighest --> most left
nodesPerHeight2D.forEach(ar => ar.forEach((n, i) => {
const x = 200 - xStep * n.height * 2.5;
console.log("x :", x);
network.moveNode(n.id, x, 150 - (canvasHeight/(ar.length+1) * i * 2)) //-140 + canvasHeight/((ar.length+1) * i+1)
}));
network.redraw();
const metaText = document.getElementById("metadata")
let zoomInCount =0;
let zoomOutCount =0;
const minorNodes = myNodes.filter(m => !mainIDs.includes(m.id) );
minorNodes.map(m => m.group = "minor");
let minorCopy = minorNodes.slice();
let minorsInside = [];
console.log("minor ", minorNodes);
//notes dependent on height
network.on('zoom', function(event){
if (event.direction === "+" && network.getScale() > 1.2) {
zoomInCount++;
if (zoomInCount % 5 === 0 && minorNodes.length > 1) {
const minor = minorCopy.pop();
if (typeof minor === "object") {
minorsInside.push(minor);
mainN.add(minor)
}
}
}
else if (event.direction === "-" && network.getScale() < 1.35){
zoomOutCount++;
if (zoomOutCount % 3 === 0) {
//remove node and put in memory for adding it later
const minor = minorsInside.pop();
if (typeof minor === "object") {
minorCopy.push(minor)
mainN.remove(minor.id)
}
}
}
})
network.on('click', function(event){
const id = event.nodes[0];
if (!id) {return}
//go from the clickedNode to the actual node in Data
const node = getObjByProp(DATA.nodes, "uuid", id)[0]
console.log('node ', node)
metaText.childNodes.forEach(c => {
metaText.innerHTML = ""
})
//get the contents the node is pointing to
if (node.metadata) {
if (node.metadata.contents) {
const contents = node.metadata.contents
if (contents.length < 1) {
contents[0] = "no content"
}
console.log(contents)
//display contents on the right of the graph
const titles = contents.map(c => c.title)
titles.forEach(t => {
const button = document.createElement('button');
button.classList.add("buttonX");
button.textContent = t;
metaText.appendChild(button)})
}
}
});