2024-02-05 11:26:14 +00:00
|
|
|
document$.subscribe(function () {
|
|
|
|
|
|
|
|
const NODE_RADIUS = 8;
|
2024-02-28 12:10:51 +00:00
|
|
|
// const NODE_COLOR = "#69b3a2";
|
2024-02-05 11:26:14 +00:00
|
|
|
const Parent_Node_COLOR = "#ff0000";
|
|
|
|
|
2024-02-08 10:43:17 +00:00
|
|
|
|
2024-02-29 15:30:18 +00:00
|
|
|
function applyTableFilter(tf) {
|
|
|
|
var valuesToSelect = ['1', '2', '3'];
|
|
|
|
tf.setFilterValue(4, valuesToSelect);
|
|
|
|
tf.filter();
|
|
|
|
};
|
|
|
|
|
2024-02-08 10:43:17 +00:00
|
|
|
function parseFilteredTable(tf, allData) {
|
2024-02-05 11:26:14 +00:00
|
|
|
var data = [];
|
|
|
|
tf.getFilteredData().forEach((row, i) => {
|
2024-02-08 10:43:17 +00:00
|
|
|
sourcePath = allData[row[0] - 2].sourcePath;
|
|
|
|
targetPath = allData[row[0] - 2].targetPath;
|
|
|
|
data.push({
|
|
|
|
source: row[1][0],
|
|
|
|
sourcePath: sourcePath,
|
2024-02-27 14:08:28 +00:00
|
|
|
sourceGalaxy: row[1][1],
|
|
|
|
target: row[1][2],
|
2024-02-08 10:43:17 +00:00
|
|
|
targetPath: targetPath,
|
2024-02-27 14:08:28 +00:00
|
|
|
targetGalaxy: row[1][3],
|
|
|
|
level: row[1][4]
|
2024-02-08 10:43:17 +00:00
|
|
|
});
|
|
|
|
});
|
2024-02-05 11:26:14 +00:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
function parseTable(table) {
|
|
|
|
var data = [];
|
|
|
|
table.querySelectorAll("tr").forEach((row, i) => {
|
|
|
|
if (i > 1) {
|
|
|
|
var cells = row.querySelectorAll("td");
|
2024-02-08 10:43:17 +00:00
|
|
|
var sourceAnchor = cells[0].querySelector("a");
|
|
|
|
var sourcePath = sourceAnchor ? sourceAnchor.getAttribute("href") : null;
|
2024-02-27 14:08:28 +00:00
|
|
|
var targetAnchor = cells[2].querySelector("a");
|
2024-02-08 10:43:17 +00:00
|
|
|
var targetPath = targetAnchor ? targetAnchor.getAttribute("href") : null;
|
|
|
|
data.push({
|
|
|
|
source: cells[0].textContent,
|
2024-02-27 14:08:28 +00:00
|
|
|
sourceGalaxy: cells[1].textContent,
|
|
|
|
target: cells[2].textContent,
|
|
|
|
targetGalaxy: cells[3].textContent,
|
2024-02-08 10:43:17 +00:00
|
|
|
sourcePath: sourcePath,
|
|
|
|
targetPath: targetPath,
|
2024-02-27 14:08:28 +00:00
|
|
|
level: cells[4].textContent
|
2024-02-08 10:43:17 +00:00
|
|
|
});
|
2024-02-05 11:26:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
function processNewData(newData) {
|
2024-02-08 10:43:17 +00:00
|
|
|
var nodePaths = {};
|
|
|
|
newData.forEach(d => {
|
|
|
|
nodePaths[d.source] = d.sourcePath || null;
|
|
|
|
nodePaths[d.target] = d.targetPath || null;
|
|
|
|
});
|
2024-02-05 11:26:14 +00:00
|
|
|
var newNodes = Array.from(new Set(newData.flatMap(d => [d.source, d.target])))
|
2024-02-08 10:43:17 +00:00
|
|
|
.map(id => ({
|
|
|
|
id,
|
2024-02-28 12:10:51 +00:00
|
|
|
path: nodePaths[id],
|
|
|
|
galaxy: newData.find(d => d.source === id) ? newData.find(d => d.source === id).sourceGalaxy : newData.find(d => d.target === id).targetGalaxy
|
2024-02-08 10:43:17 +00:00
|
|
|
}));
|
2024-02-05 11:26:14 +00:00
|
|
|
|
|
|
|
var newLinks = newData.map(d => ({ source: d.source, target: d.target }));
|
|
|
|
return { newNodes, newLinks };
|
|
|
|
}
|
|
|
|
|
2024-02-08 10:43:17 +00:00
|
|
|
function filterTableAndGraph(tf, simulation, data) {
|
|
|
|
var filteredData = parseFilteredTable(tf, data);
|
2024-02-07 10:29:15 +00:00
|
|
|
var { newNodes, newLinks } = processNewData(filteredData);
|
|
|
|
|
|
|
|
simulation.update({ newNodes: newNodes, newLinks: newLinks });
|
|
|
|
}
|
|
|
|
|
2024-02-05 11:26:14 +00:00
|
|
|
function createForceDirectedGraph(data, elementId) {
|
2024-02-08 10:43:17 +00:00
|
|
|
var nodePaths = {};
|
|
|
|
data.forEach(d => {
|
|
|
|
nodePaths[d.source] = d.sourcePath || null;
|
|
|
|
nodePaths[d.target] = d.targetPath || null;
|
|
|
|
});
|
|
|
|
|
2024-02-28 12:10:51 +00:00
|
|
|
// Extract unique galaxy names from data
|
|
|
|
const galaxies = Array.from(new Set(data.flatMap(d => [d.sourceGalaxy, d.targetGalaxy])));
|
|
|
|
|
2024-02-29 08:19:48 +00:00
|
|
|
const colorScheme = [
|
|
|
|
'#E63946', // Red
|
|
|
|
'#F1FAEE', // Off White
|
|
|
|
'#A8DADC', // Light Blue
|
|
|
|
'#457B9D', // Medium Blue
|
|
|
|
'#1D3557', // Dark Blue
|
|
|
|
'#F4A261', // Sandy Brown
|
|
|
|
'#2A9D8F', // Teal
|
|
|
|
'#E9C46A', // Saffron
|
|
|
|
'#F77F00', // Orange
|
|
|
|
'#D62828', // Dark Red
|
|
|
|
'#023E8A', // Royal Blue
|
|
|
|
'#0077B6', // Light Sea Blue
|
|
|
|
'#0096C7', // Sky Blue
|
|
|
|
'#00B4D8', // Bright Sky Blue
|
|
|
|
'#48CAE4', // Light Blue
|
|
|
|
'#90E0EF', // Powder Blue
|
|
|
|
'#ADE8F4', // Pale Cerulean
|
|
|
|
'#CAF0F8', // Blithe Blue
|
|
|
|
'#FFBA08', // Selective Yellow
|
|
|
|
'#FFD60A' // Naples Yellow
|
|
|
|
];
|
|
|
|
const colorScale = d3.scaleOrdinal(colorScheme)
|
|
|
|
.domain(galaxies);
|
2024-02-28 12:10:51 +00:00
|
|
|
|
2024-02-05 11:26:14 +00:00
|
|
|
var nodes = Array.from(new Set(data.flatMap(d => [d.source, d.target])))
|
2024-02-08 10:43:17 +00:00
|
|
|
.map(id => ({
|
|
|
|
id,
|
2024-02-28 12:10:51 +00:00
|
|
|
path: nodePaths[id],
|
|
|
|
galaxy: data.find(d => d.source === id) ? data.find(d => d.source === id).sourceGalaxy : data.find(d => d.target === id).targetGalaxy
|
2024-02-08 10:43:17 +00:00
|
|
|
}));
|
2024-02-05 11:26:14 +00:00
|
|
|
|
2024-03-05 09:23:19 +00:00
|
|
|
let header = document.querySelector('h1').textContent;
|
2024-03-05 11:40:17 +00:00
|
|
|
// const parentUUID = header.replace(/\s+/g, '-').charAt(0).toLowerCase() + header.replace(/\s+/g, '-').slice(1);
|
|
|
|
// console.log("Parent UUID: " + parentUUID);
|
|
|
|
const Parent_Node = nodes.find(node => node.id.includes(header));
|
2024-02-27 14:40:34 +00:00
|
|
|
|
2024-02-05 11:26:14 +00:00
|
|
|
var links = data.map(d => ({ source: d.source, target: d.target }));
|
|
|
|
|
|
|
|
var tooltip = d3.select("body").append("div")
|
|
|
|
.attr("class", "tooltip") // Add relevant classes for styling
|
|
|
|
.style("opacity", 0);
|
|
|
|
|
|
|
|
// Set up the dimensions of the graph
|
2024-02-08 10:43:17 +00:00
|
|
|
var width = 800, height = 1000;
|
2024-02-05 11:26:14 +00:00
|
|
|
|
|
|
|
var svg = d3.select(elementId).append("svg")
|
|
|
|
.attr("width", width)
|
|
|
|
.attr("height", height);
|
|
|
|
|
|
|
|
// Create a force simulation
|
2024-02-08 10:43:17 +00:00
|
|
|
linkDistance = Math.sqrt((width * height) / nodes.length);
|
|
|
|
|
2024-02-05 11:26:14 +00:00
|
|
|
var simulation = d3.forceSimulation(nodes)
|
2024-02-08 10:43:17 +00:00
|
|
|
.force("link", d3.forceLink(links).id(d => d.id).distance(linkDistance))
|
2024-03-05 11:40:17 +00:00
|
|
|
.force("charge", d3.forceManyBody().strength(-70))
|
2024-02-05 11:26:14 +00:00
|
|
|
.force("center", d3.forceCenter(width / 2, height / 2))
|
2024-02-29 08:19:48 +00:00
|
|
|
.alphaDecay(0.05); // A lower value, adjust as needed
|
2024-02-05 11:26:14 +00:00
|
|
|
|
|
|
|
// Create links
|
|
|
|
var link = svg.append("g")
|
|
|
|
.attr("stroke", "#999")
|
|
|
|
.attr("stroke-opacity", 0.6)
|
|
|
|
.selectAll("line")
|
|
|
|
.data(links)
|
|
|
|
.enter().append("line")
|
2024-02-29 10:41:59 +00:00
|
|
|
.attr("stroke-width", 1);
|
2024-02-05 11:26:14 +00:00
|
|
|
|
|
|
|
// Create nodes
|
|
|
|
var node = svg.append("g")
|
|
|
|
.attr("stroke", "#fff")
|
|
|
|
.attr("stroke-width", 1.5)
|
|
|
|
.selectAll("circle")
|
|
|
|
.data(nodes)
|
|
|
|
.enter().append("circle")
|
|
|
|
.attr("r", function (d, i) {
|
2024-02-27 14:40:34 +00:00
|
|
|
return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS;
|
2024-02-05 11:26:14 +00:00
|
|
|
})
|
|
|
|
.attr("fill", function (d, i) {
|
2024-02-28 12:10:51 +00:00
|
|
|
return d.id === Parent_Node.id ? Parent_Node_COLOR : colorScale(d.galaxy);
|
|
|
|
})
|
2024-02-28 12:54:38 +00:00
|
|
|
.attr("class", d => "node galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-'));
|
2024-02-05 11:26:14 +00:00
|
|
|
|
|
|
|
// Apply tooltip on nodes
|
|
|
|
node.on("mouseover", function (event, d) {
|
|
|
|
tooltip.transition()
|
|
|
|
.duration(200)
|
|
|
|
.style("opacity", .9);
|
|
|
|
tooltip.html(d.id)
|
|
|
|
.style("left", (event.pageX) + "px")
|
|
|
|
.style("top", (event.pageY - 28) + "px");
|
2024-02-29 10:41:59 +00:00
|
|
|
node.style("opacity", 0.1);
|
|
|
|
link.style("opacity", 0.1);
|
|
|
|
d3.select(this)
|
|
|
|
.attr("r", parseFloat(d3.select(this).attr("r")) + 5)
|
|
|
|
.style("opacity", 1);
|
2024-02-29 08:19:48 +00:00
|
|
|
svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-'))
|
|
|
|
.style("font-weight", "bold")
|
|
|
|
.style("font-size", "14px");
|
2024-02-29 10:41:59 +00:00
|
|
|
link.filter(l => l.source.id === d.id || l.target.id === d.id)
|
|
|
|
.attr("stroke-width", 3)
|
|
|
|
.style("opacity", 1);
|
|
|
|
node.filter(n => n.id === d.id || links.some(l => (l.source.id === d.id && l.target.id === n.id) || (l.target.id === d.id && l.source.id === n.id)))
|
|
|
|
.style("opacity", 1);
|
2024-02-05 11:26:14 +00:00
|
|
|
})
|
|
|
|
.on("mousemove", function (event) {
|
|
|
|
tooltip.style("left", (event.pageX) + "px")
|
|
|
|
.style("top", (event.pageY - 28) + "px");
|
|
|
|
})
|
2024-02-29 08:19:48 +00:00
|
|
|
.on("mouseout", function (event, d) {
|
2024-02-05 11:26:14 +00:00
|
|
|
tooltip.transition()
|
|
|
|
.duration(500)
|
|
|
|
.style("opacity", 0);
|
2024-02-29 10:41:59 +00:00
|
|
|
node.style("opacity", 1);
|
|
|
|
link.style("opacity", 1);
|
2024-02-28 13:05:28 +00:00
|
|
|
d3.select(this).attr("r", function (d, i) {
|
|
|
|
return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS;
|
|
|
|
});
|
2024-02-29 08:19:48 +00:00
|
|
|
svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-'))
|
|
|
|
.style("font-weight", "normal")
|
|
|
|
.style("font-size", "12px");
|
2024-02-29 10:41:59 +00:00
|
|
|
link.filter(l => l.source.id === d.id || l.target.id === d.id)
|
|
|
|
.attr("stroke-width", 1);
|
|
|
|
node.filter(n => n.id === d.id || links.some(l => (l.source.id === d.id && l.target.id === n.id) || (l.target.id === d.id && l.source.id === n.id)))
|
2024-02-05 11:26:14 +00:00
|
|
|
});
|
|
|
|
|
2024-02-29 10:41:59 +00:00
|
|
|
|
2024-02-08 10:43:17 +00:00
|
|
|
// Apply links on nodes
|
|
|
|
node.on("dblclick", function (event, d) {
|
|
|
|
location.href = d.path;
|
|
|
|
});
|
|
|
|
|
2024-02-05 11:26:14 +00:00
|
|
|
// Define drag behavior
|
|
|
|
var drag = d3.drag()
|
|
|
|
.on("start", dragstarted)
|
|
|
|
.on("drag", dragged)
|
|
|
|
.on("end", dragended);
|
|
|
|
|
|
|
|
// Apply drag behavior to nodes
|
|
|
|
node.call(drag);
|
|
|
|
|
|
|
|
function dragstarted(event, d) {
|
|
|
|
if (!event.active) simulation.alphaTarget(0.3).restart();
|
|
|
|
d.fx = d.x;
|
|
|
|
d.fy = d.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
function dragged(event, d) {
|
|
|
|
d.fx = event.x;
|
|
|
|
d.fy = event.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
function dragended(event, d) {
|
|
|
|
// Do not reset the fixed positions
|
|
|
|
if (!event.active) simulation.alphaTarget(0);
|
|
|
|
}
|
|
|
|
|
2024-02-28 12:10:51 +00:00
|
|
|
// Prepare legend data
|
|
|
|
const legendData = galaxies.map(galaxy => ({
|
|
|
|
name: galaxy,
|
|
|
|
color: colorScale(galaxy)
|
|
|
|
}));
|
|
|
|
|
|
|
|
const maxCharLength = 10; // Maximum number of characters to display in legend
|
|
|
|
// Create legend
|
|
|
|
const legend = svg.append("g")
|
|
|
|
.attr("class", "legend")
|
|
|
|
.attr("transform", "translate(" + (width - 100) + ",20)"); // Adjust position as needed
|
|
|
|
|
|
|
|
// Add legend title
|
|
|
|
legend.append("text")
|
|
|
|
.attr("x", 0)
|
|
|
|
.attr("y", -10)
|
|
|
|
.style("font-size", "13px")
|
|
|
|
.style("text-anchor", "start")
|
|
|
|
.style("fill", "grey")
|
|
|
|
.text("Galaxy Colors");
|
|
|
|
|
|
|
|
// Add colored rectangles and text labels for each galaxy
|
|
|
|
const legendItem = legend.selectAll(".legend-item")
|
|
|
|
.data(legendData)
|
|
|
|
.enter().append("g")
|
|
|
|
.attr("class", "legend-item")
|
|
|
|
.attr("transform", (d, i) => `translate(0, ${i * 20})`);
|
|
|
|
|
2024-02-29 10:41:59 +00:00
|
|
|
legendItem.append("rect")
|
2024-02-28 12:10:51 +00:00
|
|
|
.attr("width", 12)
|
|
|
|
.attr("height", 12)
|
|
|
|
.style("fill", d => d.color)
|
|
|
|
.on("mouseover", function (event, d) {
|
2024-02-29 10:41:59 +00:00
|
|
|
node.style("opacity", 0.1);
|
|
|
|
link.style("opacity", 0.1);
|
2024-02-28 12:54:38 +00:00
|
|
|
svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-'))
|
2024-02-28 13:05:28 +00:00
|
|
|
.each(function () {
|
|
|
|
var currentRadius = d3.select(this).attr("r");
|
2024-02-29 10:41:59 +00:00
|
|
|
d3.select(this).style("opacity", 1);
|
2024-02-28 13:05:28 +00:00
|
|
|
});
|
2024-02-28 12:10:51 +00:00
|
|
|
tooltip.transition()
|
|
|
|
.duration(200)
|
|
|
|
.style("opacity", .9);
|
|
|
|
tooltip.html(d.name)
|
|
|
|
.style("left", (event.pageX) + "px")
|
|
|
|
.style("top", (event.pageY - 28) + "px");
|
|
|
|
})
|
|
|
|
.on("mouseout", function (event, d) {
|
2024-02-29 10:41:59 +00:00
|
|
|
node.style("opacity", 1);
|
|
|
|
link.style("opacity", 1);
|
2024-02-28 12:10:51 +00:00
|
|
|
tooltip.transition()
|
|
|
|
.duration(500)
|
|
|
|
.style("opacity", 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
legendItem.append("text")
|
|
|
|
.attr("x", 24)
|
|
|
|
.attr("y", 9)
|
|
|
|
.attr("dy", "0.35em")
|
|
|
|
.style("text-anchor", "start")
|
|
|
|
.style("fill", "grey")
|
|
|
|
.style("font-size", "12px")
|
2024-02-29 08:19:48 +00:00
|
|
|
.attr("class", d => "legend-text galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-'))
|
2024-02-28 12:10:51 +00:00
|
|
|
.text(d => d.name.length > maxCharLength ? d.name.substring(0, maxCharLength) + "..." : d.name)
|
|
|
|
.on("mouseover", function (event, d) {
|
2024-02-29 10:41:59 +00:00
|
|
|
node.style("opacity", 0.1);
|
|
|
|
link.style("opacity", 0.1);
|
2024-02-28 12:54:38 +00:00
|
|
|
svg.selectAll(".galaxy-" + d.name.replace(/\s+/g, '-').replace(/[\s.]/g, '-'))
|
|
|
|
.each(function () {
|
2024-02-29 10:41:59 +00:00
|
|
|
d3.select(this).style("opacity", 1);
|
2024-02-28 12:54:38 +00:00
|
|
|
});
|
2024-02-28 12:10:51 +00:00
|
|
|
tooltip.transition()
|
|
|
|
.duration(200)
|
|
|
|
.style("opacity", .9);
|
|
|
|
tooltip.html(d.name)
|
|
|
|
.style("left", (event.pageX) + "px")
|
|
|
|
.style("top", (event.pageY - 28) + "px");
|
|
|
|
})
|
|
|
|
.on("mouseout", function (event, d) {
|
2024-02-29 10:41:59 +00:00
|
|
|
node.style("opacity", 1);
|
|
|
|
link.style("opacity", 1);
|
2024-02-28 12:10:51 +00:00
|
|
|
tooltip.transition()
|
|
|
|
.duration(500)
|
|
|
|
.style("opacity", 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2024-02-05 11:26:14 +00:00
|
|
|
// Update positions on each simulation 'tick'
|
|
|
|
simulation.on("tick", () => {
|
|
|
|
nodes.forEach(d => {
|
|
|
|
d.x = Math.max(NODE_RADIUS, Math.min(width - NODE_RADIUS, d.x));
|
|
|
|
d.y = Math.max(NODE_RADIUS, Math.min(height - NODE_RADIUS, d.y));
|
|
|
|
});
|
|
|
|
link
|
|
|
|
.attr("x1", d => d.source.x)
|
|
|
|
.attr("y1", d => d.source.y)
|
|
|
|
.attr("x2", d => d.target.x)
|
|
|
|
.attr("y2", d => d.target.y);
|
|
|
|
|
|
|
|
node
|
|
|
|
.attr("cx", d => d.x)
|
|
|
|
.attr("cy", d => d.y);
|
|
|
|
});
|
|
|
|
|
|
|
|
return Object.assign(svg.node(), {
|
|
|
|
update({ newNodes, newLinks }) {
|
|
|
|
const oldNodesMap = new Map(node.data().map(d => [d.id, d]));
|
|
|
|
nodes = newNodes.map(d => Object.assign(oldNodesMap.get(d.id) || {}, d));
|
|
|
|
|
|
|
|
// Update nodes with new data
|
|
|
|
node = node.data(nodes, d => d.id)
|
|
|
|
.join(
|
|
|
|
enter => enter.append("circle")
|
2024-02-06 12:56:08 +00:00
|
|
|
.attr("r", function (d, i) {
|
2024-02-27 14:40:34 +00:00
|
|
|
return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS;
|
2024-02-06 12:56:08 +00:00
|
|
|
})
|
|
|
|
.attr("fill", function (d, i) {
|
2024-02-28 12:10:51 +00:00
|
|
|
return d.id === Parent_Node.id ? Parent_Node_COLOR : colorScale(d.galaxy);
|
|
|
|
})
|
2024-02-28 12:54:38 +00:00
|
|
|
.attr("class", d => "node galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-')),
|
2024-02-05 11:26:14 +00:00
|
|
|
update => update,
|
|
|
|
exit => exit.remove()
|
|
|
|
);
|
|
|
|
|
|
|
|
node.call(drag);
|
|
|
|
|
2024-02-06 12:56:08 +00:00
|
|
|
// Apply tooltip on nodes
|
|
|
|
node.on("mouseover", function (event, d) {
|
|
|
|
tooltip.transition()
|
|
|
|
.duration(200)
|
|
|
|
.style("opacity", .9);
|
|
|
|
tooltip.html(d.id)
|
|
|
|
.style("left", (event.pageX) + "px")
|
|
|
|
.style("top", (event.pageY - 28) + "px");
|
2024-02-29 10:41:59 +00:00
|
|
|
node.style("opacity", 0.1);
|
|
|
|
link.style("opacity", 0.1);
|
|
|
|
d3.select(this)
|
|
|
|
.attr("r", parseFloat(d3.select(this).attr("r")) + 5)
|
|
|
|
.style("opacity", 1);
|
2024-02-29 08:19:48 +00:00
|
|
|
svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-'))
|
|
|
|
.style("font-weight", "bold")
|
|
|
|
.style("font-size", "14px");
|
2024-02-29 10:41:59 +00:00
|
|
|
link.filter(l => l.source.id === d.id || l.target.id === d.id)
|
|
|
|
.attr("stroke-width", 3)
|
|
|
|
.style("opacity", 1);
|
|
|
|
node.filter(n => n.id === d.id || links.some(l => (l.source.id === d.id && l.target.id === n.id) || (l.target.id === d.id && l.source.id === n.id)))
|
|
|
|
.style("opacity", 1);
|
2024-02-06 12:56:08 +00:00
|
|
|
})
|
|
|
|
.on("mousemove", function (event) {
|
|
|
|
tooltip.style("left", (event.pageX) + "px")
|
|
|
|
.style("top", (event.pageY - 28) + "px");
|
|
|
|
})
|
2024-02-29 08:19:48 +00:00
|
|
|
.on("mouseout", function (event, d) {
|
2024-02-06 12:56:08 +00:00
|
|
|
tooltip.transition()
|
|
|
|
.duration(500)
|
|
|
|
.style("opacity", 0);
|
2024-02-29 10:41:59 +00:00
|
|
|
node.style("opacity", 1);
|
|
|
|
link.style("opacity", 1);
|
2024-02-28 13:05:28 +00:00
|
|
|
d3.select(this).attr("r", function (d, i) {
|
|
|
|
return d.id === Parent_Node.id ? NODE_RADIUS + 5 : NODE_RADIUS;
|
|
|
|
});
|
2024-02-29 08:19:48 +00:00
|
|
|
svg.selectAll(".legend-text.galaxy-" + d.galaxy.replace(/\s+/g, '-').replace(/[\s.]/g, '-'))
|
|
|
|
.style("font-weight", "normal")
|
|
|
|
.style("font-size", "12px");
|
2024-02-29 10:41:59 +00:00
|
|
|
link.filter(l => l.source.id === d.id || l.target.id === d.id)
|
|
|
|
.attr("stroke-width", 1);
|
|
|
|
node.filter(n => n.id === d.id || links.some(l => (l.source.id === d.id && l.target.id === n.id) || (l.target.id === d.id && l.source.id === n.id)))
|
2024-02-06 12:56:08 +00:00
|
|
|
});
|
|
|
|
|
2024-02-08 10:43:17 +00:00
|
|
|
// Apply links on nodes
|
|
|
|
node.on("dblclick", function (event, d) {
|
|
|
|
console.log("Node: " + d.id);
|
|
|
|
console.log(d);
|
|
|
|
console.log("Source Path: " + d.sourcePath);
|
|
|
|
location.href = d.path;
|
|
|
|
});
|
|
|
|
|
2024-02-05 11:26:14 +00:00
|
|
|
// Process new links
|
|
|
|
const oldLinksMap = new Map(link.data().map(d => [`${d.source.id},${d.target.id}`, d]));
|
|
|
|
links = newLinks.map(d => Object.assign(oldLinksMap.get(`${d.source.id},${d.target.id}`) || {}, d));
|
|
|
|
|
|
|
|
// Update links with new data
|
|
|
|
link = link.data(links, d => `${d.source.id},${d.target.id}`)
|
|
|
|
.join(
|
|
|
|
enter => enter.append("line")
|
|
|
|
.attr("stroke-width", d => Math.sqrt(d.value)),
|
|
|
|
update => update,
|
|
|
|
exit => exit.remove()
|
|
|
|
);
|
|
|
|
|
|
|
|
// Restart the simulation with new data
|
|
|
|
simulation.nodes(nodes);
|
|
|
|
simulation.force("link").links(links);
|
2024-02-29 15:30:18 +00:00
|
|
|
linkDistance = Math.sqrt((width * height) / nodes.length);
|
|
|
|
simulation.force("link").distance(linkDistance);
|
2024-02-05 11:26:14 +00:00
|
|
|
simulation.alpha(1).restart();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find all tables that have a th with the class .graph and generate Force-Directed Graphs
|
|
|
|
document.querySelectorAll("table").forEach((table, index) => {
|
|
|
|
var graphHeader = table.querySelector("th.graph");
|
|
|
|
if (graphHeader) {
|
|
|
|
var tf = new TableFilter(table, {
|
2024-02-06 15:55:05 +00:00
|
|
|
base_path: "../../../../01_attachements/modules/tablefilter/",
|
2024-02-05 11:26:14 +00:00
|
|
|
highlight_keywords: true,
|
2024-02-27 14:08:28 +00:00
|
|
|
col_1: "checklist",
|
|
|
|
col_3: "checklist",
|
|
|
|
col_4: "checklist",
|
|
|
|
col_widths: ["180px", "180px", "180px", "180px", "100px"],
|
|
|
|
col_types: ["string", "string", "string", "string", "number"],
|
2024-02-05 11:26:14 +00:00
|
|
|
grid_layout: false,
|
|
|
|
responsive: false,
|
2024-02-27 14:08:28 +00:00
|
|
|
watermark: ["Filter table ...", "Filter table ...", "Filter table ...", "Filter table ..."],
|
2024-02-05 11:26:14 +00:00
|
|
|
auto_filter: {
|
|
|
|
delay: 100 //milliseconds
|
|
|
|
},
|
|
|
|
filters_row_index: 1,
|
|
|
|
state: false,
|
|
|
|
rows_counter: true,
|
|
|
|
status_bar: true,
|
|
|
|
themes: [{
|
|
|
|
name: "transparent",
|
|
|
|
}],
|
|
|
|
btn_reset: {
|
|
|
|
tooltip: "Reset",
|
|
|
|
toolbar_position: "right",
|
|
|
|
},
|
|
|
|
toolbar: true,
|
|
|
|
extensions: [{
|
|
|
|
name: "sort",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'filtersVisibility',
|
|
|
|
description: 'Sichtbarkeit der Filter',
|
|
|
|
toolbar_position: 'right',
|
|
|
|
}],
|
|
|
|
});
|
|
|
|
|
|
|
|
tf.init();
|
2024-02-29 15:30:18 +00:00
|
|
|
var allData = parseTable(table);
|
|
|
|
if (allData.length > 1000) {
|
|
|
|
applyTableFilter(tf);
|
|
|
|
data = parseFilteredTable(tf, allData);
|
|
|
|
} else {
|
|
|
|
data = allData;
|
|
|
|
}
|
2024-02-05 11:26:14 +00:00
|
|
|
var graphId = "graph" + index;
|
|
|
|
var div = document.createElement("div");
|
|
|
|
div.id = graphId;
|
|
|
|
table.parentNode.insertBefore(div, table);
|
|
|
|
var simulation = createForceDirectedGraph(data, "#" + graphId);
|
|
|
|
|
|
|
|
// Listen for table filtering events
|
2024-02-07 10:29:15 +00:00
|
|
|
tf.emitter.on(['after-filtering'], function () {
|
2024-02-29 15:30:18 +00:00
|
|
|
filterTableAndGraph(tf, simulation, allData);
|
2024-02-07 10:29:15 +00:00
|
|
|
});
|
2024-02-05 11:26:14 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|