|
|
|
let sigmaInstance; |
|
let graph; |
|
let filter; |
|
let config = {}; |
|
let greyColor = '#ccc'; |
|
let selectedNode = null; |
|
let colorAttributes = []; |
|
let colors = [ |
|
'#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', |
|
'#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf' |
|
]; |
|
let nodeTypes = { |
|
'paper': { color: '#2ca02c', size: 3 }, |
|
'author': { color: '#9467bd', size: 5 }, |
|
'organization': { color: '#1f77b4', size: 4 }, |
|
'unknown': { color: '#ff7f0e', size: 3 } |
|
}; |
|
|
|
|
|
$(document).ready(function() { |
|
console.log("Document ready, initializing Daily Paper Atlas"); |
|
|
|
|
|
$('#attributepane').css('display', 'none'); |
|
|
|
|
|
$.getJSON('config.json', function(data) { |
|
console.log("Configuration loaded:", data); |
|
config = data; |
|
document.title = config.text.title || 'Daily Paper Atlas'; |
|
$('#title').text(config.text.title || 'Daily Paper Atlas'); |
|
$('#titletext').text(config.text.intro || ''); |
|
loadGraph(); |
|
}).fail(function(jqXHR, textStatus, errorThrown) { |
|
console.error("Failed to load config:", textStatus, errorThrown); |
|
}); |
|
|
|
|
|
$('#search-input').keyup(function(e) { |
|
let searchTerm = $(this).val(); |
|
if (searchTerm.length > 2) { |
|
searchNodes(searchTerm); |
|
} else { |
|
$('.results').empty(); |
|
} |
|
}); |
|
|
|
$('#search-button').click(function() { |
|
let searchTerm = $('#search-input').val(); |
|
if (searchTerm.length > 2) { |
|
searchNodes(searchTerm); |
|
} |
|
}); |
|
|
|
|
|
$('#zoom .z[rel="in"]').click(function() { |
|
if (sigmaInstance) { |
|
let a = sigmaInstance._core; |
|
sigmaInstance.zoomTo(a.domElements.nodes.width / 2, a.domElements.nodes.height / 2, a.mousecaptor.ratio * 1.5); |
|
} |
|
}); |
|
|
|
$('#zoom .z[rel="out"]').click(function() { |
|
if (sigmaInstance) { |
|
let a = sigmaInstance._core; |
|
sigmaInstance.zoomTo(a.domElements.nodes.width / 2, a.domElements.nodes.height / 2, a.mousecaptor.ratio * 0.5); |
|
} |
|
}); |
|
|
|
$('#zoom .z[rel="center"]').click(function() { |
|
if (sigmaInstance) { |
|
sigmaInstance.position(0, 0, 1).draw(); |
|
} |
|
}); |
|
|
|
|
|
$('.returntext').click(function() { |
|
nodeNormal(); |
|
}); |
|
|
|
|
|
$('#filter-select').change(function() { |
|
let filterValue = $(this).val(); |
|
filterByNodeType(filterValue); |
|
}); |
|
|
|
|
|
setTimeout(function() { |
|
updateLegend(); |
|
}, 500); |
|
}); |
|
|
|
|
|
function loadGraph() { |
|
console.log("Loading graph data from:", config.data); |
|
|
|
|
|
if (config.data && config.data.endsWith('.gz')) { |
|
console.log("Compressed data detected, loading via fetch and pako"); |
|
|
|
fetch(config.data) |
|
.then(response => response.arrayBuffer()) |
|
.then(arrayBuffer => { |
|
try { |
|
|
|
const uint8Array = new Uint8Array(arrayBuffer); |
|
const decompressed = pako.inflate(uint8Array, { to: 'string' }); |
|
|
|
|
|
const data = JSON.parse(decompressed); |
|
console.log("Graph data decompressed and parsed successfully"); |
|
initializeGraph(data); |
|
} catch (error) { |
|
console.error("Error decompressing data:", error); |
|
} |
|
}) |
|
.catch(error => { |
|
console.error("Error fetching compressed data:", error); |
|
}); |
|
} else { |
|
|
|
$.getJSON(config.data, function(data) { |
|
console.log("Graph data loaded successfully"); |
|
initializeGraph(data); |
|
}).fail(function(jqXHR, textStatus, errorThrown) { |
|
console.error("Failed to load graph data:", textStatus, errorThrown); |
|
alert('Failed to load graph data. Please check the console for more details.'); |
|
}); |
|
} |
|
} |
|
|
|
|
|
function initializeGraph(data) { |
|
graph = data; |
|
console.log("Initializing graph with nodes:", graph.nodes.length, "edges:", graph.edges.length); |
|
|
|
try { |
|
|
|
sigmaInstance = sigma.init(document.getElementById('sigma-canvas')); |
|
|
|
console.log("Sigma instance created:", sigmaInstance); |
|
|
|
if (!sigmaInstance) { |
|
console.error("Failed to create sigma instance"); |
|
return; |
|
} |
|
|
|
|
|
sigmaInstance.mouseProperties({ |
|
maxRatio: 32, |
|
minRatio: 0.5, |
|
mouseEnabled: true, |
|
mouseInertia: 0.8 |
|
}); |
|
|
|
console.log("Sigma mouse properties configured"); |
|
|
|
|
|
console.log("Adding nodes to sigma instance..."); |
|
for (let i = 0; i < graph.nodes.length; i++) { |
|
let node = graph.nodes[i]; |
|
let nodeColor = node.color || (node.type && config.nodeTypes && config.nodeTypes[node.type] ? |
|
config.nodeTypes[node.type].color : nodeTypes[node.type]?.color || '#666'); |
|
|
|
sigmaInstance.addNode(node.id, { |
|
label: node.label || node.id, |
|
x: node.x || Math.random() * 100, |
|
y: node.y || Math.random() * 100, |
|
size: node.size || 1, |
|
color: nodeColor, |
|
type: node.type |
|
}); |
|
} |
|
|
|
|
|
console.log("Adding edges to sigma instance..."); |
|
for (let i = 0; i < graph.edges.length; i++) { |
|
let edge = graph.edges[i]; |
|
sigmaInstance.addEdge(edge.id, edge.source, edge.target, { |
|
size: edge.size || 1, |
|
color: edge.color || '#ccc' |
|
}); |
|
} |
|
|
|
|
|
sigmaInstance.drawingProperties({ |
|
labelThreshold: config.sigma?.drawingProperties?.labelThreshold || 8, |
|
defaultLabelColor: config.sigma?.drawingProperties?.defaultLabelColor || '#000', |
|
defaultLabelSize: config.sigma?.drawingProperties?.defaultLabelSize || 14, |
|
defaultEdgeType: config.sigma?.drawingProperties?.defaultEdgeType || 'curve', |
|
defaultHoverLabelBGColor: config.sigma?.drawingProperties?.defaultHoverLabelBGColor || '#002147', |
|
defaultLabelHoverColor: config.sigma?.drawingProperties?.defaultLabelHoverColor || '#fff', |
|
borderSize: 2, |
|
nodeBorderColor: '#fff', |
|
defaultNodeBorderColor: '#fff', |
|
defaultNodeHoverColor: '#fff', |
|
edgeColor: 'target', |
|
defaultEdgeColor: '#ccc' |
|
}); |
|
|
|
|
|
sigmaInstance.graphProperties({ |
|
minNodeSize: config.sigma?.graphProperties?.minNodeSize || 1, |
|
maxNodeSize: config.sigma?.graphProperties?.maxNodeSize || 8, |
|
minEdgeSize: config.sigma?.graphProperties?.minEdgeSize || 0.5, |
|
maxEdgeSize: config.sigma?.graphProperties?.maxEdgeSize || 2 |
|
}); |
|
|
|
|
|
sigmaInstance.draw(); |
|
|
|
console.log("Graph data loaded into sigma instance"); |
|
|
|
|
|
initFilters(); |
|
|
|
|
|
updateLegend(); |
|
|
|
|
|
bindEvents(); |
|
|
|
console.log("Graph initialization complete"); |
|
|
|
} catch (e) { |
|
console.error("Error in initializeGraph:", e, e.stack); |
|
} |
|
} |
|
|
|
|
|
function applyNodeStyles() { |
|
if (!sigmaInstance) return; |
|
try { |
|
sigmaInstance.iterNodes(function(node) { |
|
if (node.type && config.nodeTypes && config.nodeTypes[node.type]) { |
|
node.color = config.nodeTypes[node.type].color; |
|
node.size = config.nodeTypes[node.type].size; |
|
} else if (node.type && nodeTypes[node.type]) { |
|
node.color = nodeTypes[node.type].color; |
|
node.size = nodeTypes[node.type].size; |
|
} |
|
}); |
|
sigmaInstance.refresh(); |
|
} catch (e) { |
|
console.error("Error applying node styles:", e); |
|
} |
|
} |
|
|
|
|
|
function initFilters() { |
|
try { |
|
if (sigma.plugins && sigma.plugins.filter) { |
|
filter = new sigma.plugins.filter(sigmaInstance); |
|
console.log("Filter plugin initialized"); |
|
} else { |
|
console.warn("Sigma filter plugin not available"); |
|
} |
|
} catch (e) { |
|
console.error("Error initializing filter plugin:", e); |
|
} |
|
} |
|
|
|
|
|
function filterByNodeType(filterValue) { |
|
if (!filter) return; |
|
try { |
|
filter.undo('node-type'); |
|
|
|
if (filterValue === 'papers') { |
|
filter.nodesBy(function(n) { |
|
return n.type === 'paper'; |
|
}, 'node-type'); |
|
} else if (filterValue === 'authors') { |
|
filter.nodesBy(function(n) { |
|
return n.type === 'author'; |
|
}, 'node-type'); |
|
} |
|
|
|
filter.apply(); |
|
sigmaInstance.refresh(); |
|
} catch (e) { |
|
console.error("Error filtering nodes:", e); |
|
} |
|
} |
|
|
|
|
|
function bindEvents() { |
|
if (!sigmaInstance) { |
|
console.error("Sigma instance not found when binding events"); |
|
return; |
|
} |
|
|
|
console.log("Binding events to sigma instance"); |
|
|
|
|
|
sigmaInstance.bind('upnodes', function(event) { |
|
console.log("Node clicked:", event); |
|
if (event.content && event.content.length > 0) { |
|
var nodeId = event.content[0]; |
|
nodeActive(nodeId); |
|
} |
|
}); |
|
|
|
|
|
document.getElementById('sigma-canvas').addEventListener('click', function(evt) { |
|
|
|
if (!sigmaInstance.isMouseDown && !sigmaInstance.detail) { |
|
nodeNormal(); |
|
} |
|
}); |
|
} |
|
|
|
|
|
function nodeActive(nodeId) { |
|
console.log("nodeActive called with id:", nodeId); |
|
|
|
if (!sigmaInstance) { |
|
console.error("Sigma instance not ready for nodeActive"); |
|
return; |
|
} |
|
|
|
if (sigmaInstance.detail && selectedNode && selectedNode.id === nodeId) { |
|
|
|
return; |
|
} |
|
|
|
|
|
nodeNormal(); |
|
|
|
|
|
var selected = null; |
|
sigmaInstance.iterNodes(function(n) { |
|
if (n.id == nodeId) { |
|
selected = n; |
|
} |
|
}); |
|
|
|
if (!selected) { |
|
console.error("Node not found:", nodeId); |
|
return; |
|
} |
|
|
|
|
|
sigmaInstance.detail = true; |
|
|
|
|
|
selectedNode = selected; |
|
|
|
|
|
var neighbors = {}; |
|
sigmaInstance.iterEdges(function(e) { |
|
if (e.source == nodeId || e.target == nodeId) { |
|
neighbors[e.source == nodeId ? e.target : e.source] = true; |
|
} |
|
}); |
|
|
|
|
|
|
|
sigmaInstance.iterNodes(function(n) { |
|
n.attr = n.attr || {}; |
|
n.attr.originalColor = n.color; |
|
|
|
if (n.id === nodeId) { |
|
|
|
n.attr.originalSize = n.size; |
|
const sizeFactor = config.highlighting?.selectedNodeSizeFactor ?? 1.5; |
|
n.size = n.size * sizeFactor; |
|
} else if (!neighbors[n.id]) { |
|
|
|
|
|
n.attr.dimmed = true; |
|
|
|
var rgb = getRGBColor(n.color); |
|
const opacity = config.highlighting?.nodeOpacity ?? 0.2; |
|
n.color = 'rgba(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ',' + opacity + ')'; |
|
} |
|
}); |
|
|
|
|
|
let debugCounts = { connected: 0, notConnected: 0 }; |
|
let edgeCount = 0; |
|
|
|
console.log("Starting edge processing for node:", nodeId); |
|
|
|
sigmaInstance.iterEdges(function(e) { |
|
edgeCount++; |
|
e.attr = e.attr || {}; |
|
|
|
|
|
if (typeof e.attr.originalColor === 'undefined') { |
|
e.attr.originalColor = e.color; |
|
console.log("Storing original color for edge:", e.id, "Color:", e.color); |
|
} |
|
|
|
|
|
if (typeof e.attr.originalSize === 'undefined') { |
|
e.attr.originalSize = e.size || 1; |
|
} |
|
|
|
|
|
let sourceId, targetId; |
|
|
|
|
|
if (typeof e.source === 'object' && e.source !== null) { |
|
sourceId = e.source.id; |
|
} else { |
|
sourceId = String(e.source); |
|
} |
|
|
|
|
|
if (typeof e.target === 'object' && e.target !== null) { |
|
targetId = e.target.id; |
|
} else { |
|
targetId = String(e.target); |
|
} |
|
|
|
|
|
const selectedNodeId = String(nodeId); |
|
|
|
|
|
const isConnected = (sourceId === selectedNodeId || targetId === selectedNodeId); |
|
|
|
|
|
if (isConnected) { |
|
debugCounts.connected++; |
|
} else { |
|
debugCounts.notConnected++; |
|
} |
|
|
|
|
|
if (isConnected) { |
|
|
|
const highlightColor = config.highlighting?.highlightedEdgeColor ?? '#000000'; |
|
const sizeFactor = config.highlighting?.highlightedEdgeSizeFactor ?? 2; |
|
e.color = highlightColor; |
|
e.size = (e.attr.originalSize) * sizeFactor; |
|
console.log("Edge highlighted:", e.id, "Source:", sourceId, "Target:", targetId, "Color set to:", e.color); |
|
} else { |
|
|
|
|
|
e.color = '#ededed'; |
|
e.size = e.attr.originalSize * 0.5; |
|
} |
|
}); |
|
|
|
console.log("Edge processing complete. Total edges:", edgeCount, "Connected:", debugCounts.connected, "Not connected:", debugCounts.notConnected); |
|
|
|
|
|
sigmaInstance.draw(2, 2, 2, 2); |
|
|
|
|
|
setTimeout(function() { |
|
console.log("Verifying edge colors after redraw:"); |
|
let colorCount = { black: 0, transparent: 0, other: 0 }; |
|
|
|
sigmaInstance.iterEdges(function(e) { |
|
if (e.color === '#000000') { |
|
colorCount.black++; |
|
} else if (e.color.includes('rgba')) { |
|
colorCount.transparent++; |
|
} else { |
|
colorCount.other++; |
|
} |
|
}); |
|
|
|
console.log("Edge color counts:", colorCount); |
|
}, 100); |
|
|
|
|
|
try { |
|
$('#attributepane') |
|
.show() |
|
.css({ |
|
'display': 'block', |
|
'visibility': 'visible', |
|
'opacity': '1' |
|
}); |
|
|
|
|
|
$('.nodeattributes .name').text(selected.label || selected.id); |
|
|
|
|
|
$('.nodeattributes .nodetype').text(selected.type ? 'Type: ' + selected.type : ''); |
|
|
|
|
|
let dataHTML = ''; |
|
if (typeof selected.degree !== 'undefined') { |
|
dataHTML = '<div><strong>Degree:</strong> ' + selected.degree + '</div>'; |
|
} |
|
|
|
if (dataHTML === '') dataHTML = '<div>No additional attributes</div>'; |
|
$('.nodeattributes .data').html(dataHTML); |
|
|
|
|
|
var connectionList = []; |
|
for (var id in neighbors) { |
|
var neighborNode = null; |
|
sigmaInstance.iterNodes(function(n) { |
|
if (n.id == id) neighborNode = n; |
|
}); |
|
|
|
if (neighborNode) { |
|
connectionList.push('<li><a href="#" data-node-id="' + id + '">' + (neighborNode.label || id) + '</a></li>'); |
|
} |
|
} |
|
|
|
$('.nodeattributes .link ul') |
|
.html(connectionList.length ? connectionList.join('') : '<li>No connections</li>') |
|
.css('display', 'block'); |
|
|
|
|
|
$('.nodeattributes .link ul li a').click(function(e) { |
|
e.preventDefault(); |
|
var nextNodeId = $(this).data('node-id'); |
|
nodeActive(nextNodeId); |
|
}); |
|
|
|
} catch (e) { |
|
console.error("Error updating attribute pane:", e); |
|
} |
|
} |
|
|
|
|
|
function nodeNormal() { |
|
console.log("nodeNormal called"); |
|
|
|
if (!sigmaInstance || !sigmaInstance.detail) { |
|
|
|
return; |
|
} |
|
|
|
sigmaInstance.detail = false; |
|
|
|
|
|
sigmaInstance.iterNodes(function(n) { |
|
n.attr = n.attr || {}; |
|
|
|
|
|
if (n.attr.originalColor) { |
|
n.color = n.attr.originalColor; |
|
delete n.attr.originalColor; |
|
} |
|
|
|
|
|
if (n.attr.originalSize) { |
|
n.size = n.attr.originalSize; |
|
delete n.attr.originalSize; |
|
} |
|
|
|
|
|
delete n.attr.dimmed; |
|
}); |
|
|
|
|
|
sigmaInstance.iterEdges(function(e) { |
|
e.attr = e.attr || {}; |
|
|
|
if (typeof e.attr.originalColor !== 'undefined') { |
|
e.color = e.attr.originalColor; |
|
delete e.attr.originalColor; |
|
} |
|
|
|
if (typeof e.attr.originalSize !== 'undefined') { |
|
e.size = e.attr.originalSize; |
|
delete e.attr.originalSize; |
|
} |
|
}); |
|
|
|
|
|
selectedNode = null; |
|
|
|
|
|
$('#attributepane').css({ |
|
'display': 'none', |
|
'visibility': 'hidden' |
|
}); |
|
|
|
|
|
sigmaInstance.draw(2, 2, 2, 2); |
|
} |
|
|
|
|
|
function getRGBColor(color) { |
|
|
|
if (color.charAt(0) === '#') { |
|
var r = parseInt(color.substr(1, 2), 16); |
|
var g = parseInt(color.substr(3, 2), 16); |
|
var b = parseInt(color.substr(5, 2), 16); |
|
return { r: r, g: g, b: b }; |
|
} |
|
|
|
else if (color.startsWith('rgb')) { |
|
var parts = color.match(/^rgba?\((\d+),\s*(\d+),\s*(\d+)(?:,\s*(\d+(?:\.\d+)?))?\)$/); |
|
if (parts) { |
|
return { |
|
r: parseInt(parts[1], 10), |
|
g: parseInt(parts[2], 10), |
|
b: parseInt(parts[3], 10) |
|
}; |
|
} |
|
} |
|
|
|
|
|
return { r: 100, g: 100, b: 100 }; |
|
} |
|
|
|
|
|
function searchNodes(term) { |
|
if (!sigmaInstance) return; |
|
|
|
let results = []; |
|
let lowerTerm = term.toLowerCase(); |
|
|
|
sigmaInstance.iterNodes(function(n) { |
|
if ((n.label && n.label.toLowerCase().indexOf(lowerTerm) >= 0) || |
|
(n.id && n.id.toLowerCase().indexOf(lowerTerm) >= 0)) { |
|
results.push(n); |
|
} |
|
}); |
|
|
|
|
|
results = results.slice(0, 10); |
|
|
|
|
|
let resultsHTML = ''; |
|
if (results.length > 0) { |
|
results.forEach(function(n) { |
|
resultsHTML += '<a href="#" data-node-id="' + n.id + '">' + (n.label || n.id) + '</a>'; |
|
}); |
|
} else { |
|
resultsHTML = '<div>No results found</div>'; |
|
} |
|
|
|
$('.results').html(resultsHTML); |
|
|
|
|
|
$('.results a').click(function(e) { |
|
e.preventDefault(); |
|
let nodeId = $(this).data('node-id'); |
|
nodeActive(nodeId); |
|
}); |
|
} |
|
|
|
|
|
function updateLegend() { |
|
console.log("Updating legend with node types"); |
|
|
|
|
|
let typesToShow = config.nodeTypes || nodeTypes; |
|
|
|
|
|
let legendHTML = ''; |
|
|
|
|
|
for (let type in typesToShow) { |
|
if (typesToShow.hasOwnProperty(type)) { |
|
let typeConfig = typesToShow[type]; |
|
let color = typeConfig.color || '#ccc'; |
|
|
|
legendHTML += `<div class="legend-item"> |
|
<div class="legend-color" style="background-color: ${color};"></div> |
|
<div class="legend-label">${type}</div> |
|
</div>`; |
|
} |
|
} |
|
|
|
|
|
legendHTML += `<div class="legend-item"> |
|
<div class="legend-line"></div> |
|
<div class="legend-label">Connections</div> |
|
</div>`; |
|
|
|
|
|
$('#colorLegend').html(legendHTML); |
|
} |