Spaces:
Sleeping
Sleeping
File size: 11,189 Bytes
3ff344a ad2d527 3ff344a 79efa38 5ccea09 79efa38 d615ba9 3ff344a ad2d527 79efa38 ad2d527 d615ba9 ad2d527 5ccea09 ad2d527 79efa38 ad2d527 79efa38 3ff344a ad2d527 3ff344a 79efa38 3ff344a 79efa38 ad2d527 3ff344a 79efa38 3ff344a 79efa38 3ff344a 79efa38 3ff344a 79efa38 3ff344a 79efa38 d615ba9 ad2d527 d615ba9 ad2d527 d615ba9 79efa38 ad2d527 d615ba9 79efa38 d615ba9 79efa38 d615ba9 ad2d527 3ff344a ad2d527 d615ba9 ad2d527 79efa38 3ff344a ad2d527 d615ba9 5ccea09 d615ba9 5ccea09 d615ba9 5ccea09 d615ba9 5ccea09 ad2d527 d615ba9 ad2d527 3ff344a ad2d527 3ff344a 5ccea09 d615ba9 5ccea09 d615ba9 3ff344a d615ba9 79efa38 d615ba9 3ff344a |
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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 |
// Initialize Konva stage
const stage = new Konva.Stage({
container: 'container',
width: 1000,
height: 600
});
const layer = new Konva.Layer();
stage.add(layer);
let nodes = [];
let connections = [];
let parsedConnections = [];
let selectedPort = null;
let disconnectMode = false;
function submitCode() {
const fileInput = document.getElementById('codeFile');
const codeInput = document.getElementById('codeInput').value;
const formData = new FormData();
if (fileInput.files.length > 0) {
formData.append('file', fileInput.files[0]);
} else if (codeInput) {
formData.append('code', codeInput);
} else {
alert('Please upload a file or paste code.');
return;
}
fetch('/parse_code', {
method: 'POST',
body: formData
})
.then(response => response.json())
.then(data => {
if (data.error) {
alert(data.error);
return;
}
clearCanvas();
parsedConnections = data.connections;
createNodesFromParsedData(data.nodes, data.connections);
})
.catch(error => console.error('Error:', error));
}
function clearCanvas() {
nodes.forEach(node => node.destroy());
layer.find('Shape').forEach(shape => shape.destroy());
nodes = [];
connections = [];
parsedConnections = [];
layer.draw();
}
function createNodesFromParsedData(parsedNodes, parsedConnections) {
parsedNodes.forEach(nodeData => {
const node = createNode(
nodeData.x,
nodeData.y,
nodeData.label,
nodeData.type,
nodeData.inputs,
nodeData.outputs,
nodeData.id,
nodeData.value
);
nodes.push(node);
layer.add(node);
});
layer.draw();
saveNodes();
}
function createNode(x, y, label, type, inputs = [], outputs = [], id, value = null) {
const node = new Konva.Group({
x: x,
y: y,
draggable: true
});
// Node appearance based on type
const isNumberBox = type === 'number_box';
const color = isNumberBox ? '#ffcccb' : type === 'function' ? '#ffeb3b' : type.includes('variable') ? '#90caf9' : type === 'import' ? '#a5d6a7' : '#ccc';
const width = isNumberBox ? 80 : 100;
const height = isNumberBox ? 40 : 50;
const box = new Konva.Rect({
width: width,
height: height,
fill: color,
stroke: 'black',
strokeWidth: 2,
cornerRadius: 5
});
// Node label and value
const textContent = isNumberBox && value ? `${label} = ${value}` : label;
const text = new Konva.Text({
text: textContent,
fontSize: 12,
fontFamily: 'Arial',
fill: 'black',
width: width,
align: 'center',
y: isNumberBox ? 14 : 20
});
node.add(box);
node.add(text);
// Input/output ports
const inputPorts = inputs.map((input, i) => ({
id: `input-${id}-${i}`,
name: input,
circle: new Konva.Circle({
x: 0,
y: 10 + i * 20,
radius: 5,
fill: 'red'
})
}));
const outputPorts = outputs.map((output, i) => ({
id: `output-${id}-${i}`,
name: output,
circle: new Konva.Circle({
x: width,
y: 10 + i * 20,
radius: 5,
fill: 'green'
})
}));
inputPorts.forEach(port => {
node.add(port.circle);
port.circle.on('click', () => {
if (!selectedPort) {
selectedPort = { node, portId: port.id, type: 'input' };
disconnectMode = true;
} else if (selectedPort.type === 'output' && selectedPort.node !== node) {
createSplineConnection(
selectedPort.node,
selectedPort.portId,
node,
port.id
);
connections.push({
fromNodeId: selectedPort.node.data.id,
fromPortId: selectedPort.portId,
toNodeId: node.data.id,
toPortId: port.id
});
selectedPort = null;
disconnectMode = false;
saveNodes();
} else if (disconnectMode && selectedPort.type === 'input' && selectedPort.node === node) {
selectedPort = { node, portId: port.id, type: 'input' };
} else {
selectedPort = null;
disconnectMode = false;
}
});
});
outputPorts.forEach(port => {
node.add(port.circle);
port.circle.on('click', () => {
if (!selectedPort) {
selectedPort = { node, portId: port.id, type: 'output' };
disconnectMode = false;
} else if (disconnectMode && selectedPort.type === 'input') {
const connIndex = connections.findIndex(
c => c.toNodeId === selectedPort.node.data.id &&
c.toPortId === selectedPort.portId &&
c.fromNodeId === node.data.id &&
c.fromPortId === port.id
);
if (connIndex !== -1) {
const conn = connections[connIndex];
const spline = layer.find('Shape').find(s =>
s.data.fromNodeId === conn.fromNodeId &&
s.data.fromPortId === conn.fromPortId &&
s.data.toNodeId === conn.toNodeId &&
s.data.toPortId === conn.toPortId
);
if (spline) spline.destroy();
connections.splice(connIndex, 1);
layer.draw();
saveNodes();
}
selectedPort = null;
disconnectMode = false;
} else {
selectedPort = null;
disconnectMode = false;
}
});
});
node.data = {
id: id,
type: type,
label: label,
inputs: inputPorts,
outputs: outputPorts,
x: x,
y: y,
value: value
};
node.on('dragmove', () => {
node.data.x = node.x();
node.data.y = node.y();
updateConnections();
saveNodes();
});
return node;
}
function createSplineConnection(fromNode, fromPortId, toNode, toPortId) {
const fromPort = fromNode.data.outputs.find(p => p.id === fromPortId);
const toPort = toNode.data.inputs.find(p => p.id === toPortId);
if (!fromPort || !toPort) return;
const startX = fromNode.x() + fromPort.circle.x();
const startY = fromNode.y() + fromPort.circle.y();
const endX = toNode.x() + toPort.circle.x();
const endY = toNode.y() + toPort.circle.y();
const control1X = startX + (endX - startX) / 3;
const control1Y = startY;
const control2X = startX + 2 * (endX - startX) / 3;
const control2Y = endY;
const spline = new Konva.Shape({
sceneFunc: function(context, shape) {
context.beginPath();
context.moveTo(startX, startY);
context.bezierCurveTo(control1X, control1Y, control2X, control2Y, endX, endY);
context.fillStrokeShape(shape);
},
stroke: 'black',
strokeWidth: 2
});
spline.data = {
fromNodeId: fromNode.data.id,
fromPortId: fromPortId,
toNodeId: toNode.data.id,
toPortId: toPortId
};
layer.add(spline);
layer.draw();
}
function autoConnect() {
layer.find('Shape').forEach(shape => {
if (shape.data && shape.data.fromNodeId !== undefined) {
shape.destroy();
}
});
connections = [];
parsedConnections.forEach(conn => {
const fromNode = nodes.find(n => n.data.id === conn.from);
const toNode = nodes.find(n => n.data.id === conn.to);
if (fromNode && toNode) {
const fromPort = fromNode.data.outputs[0];
const toPort = toNode.data.inputs[0];
if (fromPort && toPort) {
createSplineConnection(fromNode, fromPort.id, toNode, toPort.id);
connections.push({
fromNodeId: fromNode.data.id,
fromPortId: fromPort.id,
toNodeId: toNode.data.id,
toPortId: toPort.id
});
}
}
});
layer.draw();
saveNodes();
}
function addNode() {
const node = createNode(
Math.random() * (stage.width() - 100),
Math.random() * (stage.height() - 100),
'Function',
'function',
['in1'],
['out1'],
nodes.length
);
nodes.push(node);
layer.add(node);
layer.draw();
saveNodes();
}
function updateConnections() {
layer.find('Shape').forEach(shape => {
if (shape.data && shape.data.fromNodeId !== undefined) {
const fromNode = nodes.find(n => n.data.id === shape.data.fromNodeId);
const toNode = nodes.find(n => n.data.id === shape.data.toNodeId);
if (fromNode && toNode) {
const fromPort = fromNode.data.outputs.find(p => p.id === shape.data.fromPortId);
const toPort = toNode.data.inputs.find(p => p.id === shape.data.toPortId);
if (fromPort && toPort) {
const startX = fromNode.x() + fromPort.circle.x();
const startY = fromNode.y() + fromPort.circle.y();
const endX = toNode.x() + toPort.circle.x();
const endY = toNode.y() + toPort.circle.y();
const control1X = startX + (endX - startX) / 3;
const control1Y = startY;
const control2X = startX + 2 * (endX - startX) / 3;
const control2Y = endY;
shape.sceneFunc(function(context, shape) {
context.beginPath();
context.moveTo(startX, startY);
context.bezierCurveTo(control1X, control1Y, control2X, control2Y, endX, endY);
context.fillStrokeShape(shape);
});
}
}
}
});
layer.draw();
}
function saveNodes() {
fetch('/save_nodes', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
nodes: nodes.map(n => ({
id: n.data.id,
type: n.data.type,
label: n.data.label,
x: n.data.x,
y: n.data.y,
inputs: n.data.inputs.map(p => p.name),
outputs: n.data.outputs.map(p => p.name),
value: n.data.value
})),
connections: connections
})
}).then(response => response.json())
.then(data => console.log('Saved:', data))
.catch(error => console.error('Error:', error));
}
layer.draw(); |