feat(website): init

This commit is contained in:
moklick
2020-10-05 10:14:49 +02:00
parent f54b93b319
commit 277e032770
140 changed files with 30517 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
export function getElements(xElements = 10, yElements = 10) {
const initialElements = [];
let nodeId = 1;
let recentNodeId = null;
for (let y = 0; y < yElements; y++) {
for (let x = 0; x < xElements; x++) {
const position = { x: x * 100, y: y * 50 };
const data = { label: `Node ${nodeId}` };
const node = {
id: `stress-${nodeId.toString()}`,
style: { width: 50, fontSize: 11 },
data,
position,
};
initialElements.push(node);
if (recentNodeId && nodeId <= xElements * yElements) {
initialElements.push({
id: `${x}-${y}`,
source: `stress-${recentNodeId.toString()}`,
target: `stress-${nodeId.toString()}`,
});
}
recentNodeId = nodeId;
nodeId++;
}
}
return initialElements;
}