Skip to content

Commit

Permalink
add graph depth config
Browse files Browse the repository at this point in the history
  • Loading branch information
jackyzha0 committed Dec 27, 2021
1 parent 165d338 commit 3959234
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 6 deletions.
1 change: 1 addition & 0 deletions data/graphConfig.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
enableLegend: false
enableDrag: true
enableZoom: true
depth: -1 # set to -1 to show full graph
paths:
- /moc: "#4388cc"
Empty file added layouts/_default/section.html
Empty file.
33 changes: 27 additions & 6 deletions layouts/partials/graph.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,35 @@ <h3>Interactive Graph</h3>
const content = {{$.Site.Data.contentIndex}}
const curPage = {{ strings.TrimRight "/" .Page.RelPermalink }}
const pathColors = {{$.Site.Data.graphConfig.paths}}
let depth = {{$.Site.Data.graphConfig.depth}}

const parseIdsFromLinks = (links) => [...(new Set(links.flatMap(link => ([link.source, link.target]))))]

const neighbours = new Set()
const wl = [curPage || "/", "__SENTINEL"]
if (depth >= 0) {
while (depth >= 0 && wl.length > 0) {
// compute neighbours
const cur = wl.shift()
console.log(depth, cur, wl)
if (cur === "__SENTINEL") {
depth--
wl.push("__SENTINEL")
} else {
neighbours.add(cur)
const outgoing = index.links[cur] || []
const incoming = index.backlinks[cur] || []
console.log(incoming)
wl.push(...outgoing.map(l => l.target), ...incoming.map(l => l.source))
}
}
} else {
parseIdsFromLinks(links).forEach(id => neighbours.add(id))
}

const data = {
nodes: parseIdsFromLinks(links).map(id => ({id})),
links,
nodes: [...neighbours].map(id => ({id})),
links: links.filter(l => neighbours.has(l.source) && neighbours.has(l.target)),
}

const color = (d) => {
Expand Down Expand Up @@ -70,10 +93,8 @@ <h3>Interactive Graph</h3>
const width = document.getElementById("graph-container").offsetWidth

const simulation = d3.forceSimulation(data.nodes)
.force("charge", d3.forceManyBody().strength(-20))
.force("link", d3.forceLink(data.links)
.id(d => d.id)
)
.force("charge", d3.forceManyBody().strength(-30))
.force("link", d3.forceLink(data.links).id(d => d.id))
.force("center", d3.forceCenter());

const svg = d3.select('#graph-container')
Expand Down

0 comments on commit 3959234

Please sign in to comment.