File size: 2,140 Bytes
0c3992e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph(graph) {
    const container = document.getElementById(`${graph.dataset}-network`);

    const options = {
        "configure": {
            "enabled": false
        },
        "edges": {
            "color": {
                "inherit": true
            },
            "smooth": {
                "enabled": true,
                "type": "dynamic"
            }
        },
        "interaction": {
            "dragNodes": true,
            "zoomSpeed": 0.7,
            "hideEdgesOnDrag": false,
            "hideNodesOnDrag": false
        },
        "physics": {
            "enabled": true,
            "stabilization": {
                "enabled": true,
                "fit": true,
                "iterations": 1000,
                "onlyDynamicEdges": false,
                "updateInterval": 50
            }
        }
    };

    // parsing and collecting nodes and edges from the python
    const nodes = new vis.DataSet(graph.nodes);
    const edges = new vis.DataSet(graph.edges);

    // adding nodes and edges to the graph
    const data = { nodes: nodes, edges: edges };

    // Create and render the network
    const network = new vis.Network(container, data, options);

    // Add event listener for node selection
    network.on("selectNode", e => {
        const selectedNodeID = e.nodes[0];
        const entityID = graph.nodes[selectedNodeID].node_id;

        // Update graph input
        const graphInput = document.querySelector(`#${graph.dataset}-entity-id-input > label > input`);
        graphInput.value = entityID;
        graphInput.dispatchEvent(new Event('input', { bubbles: true, cancelable: true }));

        // Update text input
        const textInput = document.querySelector(`#${graph.dataset}-entity-id-text-input > label > input`);
        textInput.value = entityID;
        textInput.dispatchEvent(new Event('input', { bubbles: true, cancelable: true }));

        // But just fetch text
        document.querySelector(`#${graph.dataset}-fetch-text-btn`).click();
    });

    return network;
}