kcl-digital-humanities-garden/assets/js/scripts.js

342 lines
9.8 KiB
JavaScript
Raw Normal View History

2021-03-25 02:18:10 +00:00
// Header interaction
const headerEle = document.querySelector('#header')
let headerElePosStore = 0
const debounce = (fn) => {
let frame
return (...params) => {
if (frame) {
window.cancelAnimationFrame(frame)
}
frame = window.requestAnimationFrame(() => {
fn(...params)
})
}
}
const storeScroll = (event) => {
const bodyRect = document.body.getBoundingClientRect()
if (bodyRect.top < headerElePosStore &&
-headerEle.offsetHeight > bodyRect.top) {
headerEle.classList.add('header-inactive')
} else {
headerEle.classList.remove('header-inactive')
}
headerElePosStore = bodyRect.top
}
document.addEventListener('scroll', debounce(storeScroll), { passive: true })
2021-03-12 01:58:04 +00:00
// Link preview
let opacityTimeout
let contentTimeout
const transitionDurationMs = 100
const tooltipWrapper = document.getElementById('tooltip-wrapper')
const tooltipContent = document.getElementById('tooltip-content')
2021-03-28 16:30:27 +00:00
const tooltipSource = document.getElementById('tooltip-source')
2021-03-12 01:58:04 +00:00
2021-03-25 02:18:10 +00:00
const hideTooltip = () => {
opacityTimeout = setTimeout(() => {
2021-03-12 01:58:04 +00:00
tooltipWrapper.style.opacity = 0
2021-03-25 02:18:10 +00:00
contentTimeout = setTimeout(() => {
2021-03-12 01:58:04 +00:00
tooltipContent.innerHTML = ''
tooltipWrapper.style.display = 'none'
}, transitionDurationMs + 1)
}, transitionDurationMs)
}
2021-03-25 02:18:10 +00:00
const showTooltip = (event) => {
2021-03-12 01:58:04 +00:00
const elem = event.target
const elemProps = elem.getClientRects()[elem.getClientRects().length - 1]
const top = window.pageYOffset || document.documentElement.scrollTop
if (event.target.host === window.location.host) {
2021-03-15 22:35:31 +00:00
window.fetch(event.target.href)
.then(response => response.text())
.then(data => {
const parser = new window.DOMParser()
const doc = parser.parseFromString(data, 'text/html')
let tooltipContentHtml = ''
tooltipContentHtml += '<div class="b">' + doc.querySelector('h1').innerHTML + '</div>'
tooltipContentHtml += doc.querySelector('.note-contents').innerHTML
tooltipContent.innerHTML = tooltipContentHtml
2021-03-28 16:30:27 +00:00
const pathIndex = event.target.href.split('/')
tooltipSource.innerHTML = `/${pathIndex[pathIndex.length - 1]}`
2021-03-15 22:35:31 +00:00
tooltipWrapper.style.display = 'block'
2021-03-25 02:18:10 +00:00
setTimeout(() => {
2021-03-15 22:35:31 +00:00
tooltipWrapper.style.opacity = 1
}, 1)
})
2021-03-12 01:58:04 +00:00
tooltipWrapper.style.left = elemProps.left - (tooltipWrapper.offsetWidth / 2) + (elemProps.width / 2) + 'px'
if ((window.innerHeight - elemProps.top) < (tooltipWrapper.offsetHeight)) {
tooltipWrapper.style.top = elemProps.top + top - tooltipWrapper.offsetHeight - 10 + 'px'
} else if ((window.innerHeight - elemProps.top) > (tooltipWrapper.offsetHeight)) {
tooltipWrapper.style.top = elemProps.top + top + 35 + 'px'
}
if ((elemProps.left + (elemProps.width / 2)) < (tooltipWrapper.offsetWidth / 2)) {
tooltipWrapper.style.left = '10px'
} else if ((document.body.clientWidth - elemProps.left - (elemProps.width / 2)) < (tooltipWrapper.offsetWidth / 2)) {
tooltipWrapper.style.left = document.body.clientWidth - tooltipWrapper.offsetWidth - 20 + 'px'
}
}
}
2021-03-25 02:18:10 +00:00
const setupListeners = (linkElement) => {
linkElement.addEventListener('mouseleave', _event => {
2021-03-12 01:58:04 +00:00
hideTooltip()
})
2021-03-25 02:18:10 +00:00
tooltipWrapper.addEventListener('mouseleave', _event => {
2021-03-12 01:58:04 +00:00
hideTooltip()
})
2021-03-25 02:18:10 +00:00
linkElement.addEventListener('mouseenter', event => {
2021-03-12 01:58:04 +00:00
clearTimeout(opacityTimeout)
clearTimeout(contentTimeout)
showTooltip(event)
})
2021-03-25 02:18:10 +00:00
tooltipWrapper.addEventListener('mouseenter', event => {
2021-03-12 01:58:04 +00:00
clearTimeout(opacityTimeout)
clearTimeout(contentTimeout)
})
}
2021-03-15 19:49:03 +00:00
document.querySelectorAll('#notes-entry-container a').forEach(setupListeners)
2021-03-12 03:07:34 +00:00
// Notes graph
const d3 = window.d3
2021-03-16 00:06:04 +00:00
if (typeof window.graphData !== 'undefined') {
2021-03-12 03:07:34 +00:00
const MINIMAL_NODE_SIZE = 10
const MAX_NODE_SIZE = 12
const ACTIVE_RADIUS_FACTOR = 1.5
const STROKE = 1
2021-03-15 22:22:28 +00:00
const FONT_SIZE = 12
2021-03-12 03:07:34 +00:00
const TICKS = 200
const FONT_BASELINE = 40
const MAX_LABEL_LENGTH = 50
2021-03-16 00:06:04 +00:00
const nodesData = window.graphData.nodes
const linksData = window.graphData.edges
2021-03-12 03:07:34 +00:00
const nodeSize = {}
const updateNodeSize = () => {
nodesData.forEach((el) => {
let weight =
3 *
Math.sqrt(
linksData.filter((l) => l.source === el.id || l.target === el.id)
.length + 1
)
if (weight < MINIMAL_NODE_SIZE) {
weight = MINIMAL_NODE_SIZE
} else if (weight > MAX_NODE_SIZE) {
weight = MAX_NODE_SIZE
}
nodeSize[el.id] = weight
})
}
const onClick = (d) => {
window.location = d3.select(d.target).data()[0].path
}
2021-03-25 02:18:10 +00:00
const onMouseover = (d) => {
2021-03-12 03:07:34 +00:00
const relatedNodesSet = new Set()
2021-03-15 22:22:28 +00:00
const destinationID = d3.select(d.target).data()[0].id
2021-03-12 03:07:34 +00:00
linksData
2021-03-15 22:22:28 +00:00
.filter((n) => n.target.id === destinationID || n.source.id === destinationID)
2021-03-12 03:07:34 +00:00
.forEach((n) => {
relatedNodesSet.add(n.target.id)
relatedNodesSet.add(n.source.id)
})
node.attr('class', (nodeD) => {
2021-03-15 22:22:28 +00:00
if (nodeD.id !== destinationID && !relatedNodesSet.has(nodeD.id)) {
2021-03-12 03:07:34 +00:00
return 'inactive'
}
return ''
})
link.attr('class', (linkD) => {
2021-03-15 22:22:28 +00:00
if (linkD.source.id !== destinationID && linkD.target.id !== destinationID) {
2021-03-12 03:07:34 +00:00
return 'inactive'
}
2021-03-25 02:18:10 +00:00
return 'active'
2021-03-12 03:07:34 +00:00
})
link.attr('stroke-width', (linkD) => {
2021-03-15 22:22:28 +00:00
if (linkD.source.id === destinationID || linkD.target.id === destinationID) {
2021-03-28 16:30:27 +00:00
return STROKE * 1
2021-03-12 03:07:34 +00:00
}
return STROKE
})
text.attr('class', (textD) => {
2021-03-15 22:22:28 +00:00
if (textD.id !== destinationID && !relatedNodesSet.has(textD.id)) {
2021-03-12 03:07:34 +00:00
return 'inactive'
}
return ''
})
}
2021-03-25 02:18:10 +00:00
const onMouseout = (d) => {
2021-03-12 03:07:34 +00:00
node.attr('class', '')
link.attr('class', '')
text.attr('class', '')
link.attr('stroke-width', STROKE)
}
const graphWrapper = document.getElementById('graph-wrapper')
const element = document.createElementNS('http://www.w3.org/2000/svg', 'svg')
element.setAttribute('width', graphWrapper.getBoundingClientRect().width)
2021-03-25 02:18:10 +00:00
element.setAttribute('height', window.innerHeight)
element.classList.add('grab', 'grabbing')
2021-03-12 03:07:34 +00:00
graphWrapper.appendChild(element)
const reportWindowSize = () => {
element.setAttribute('width', window.innerWidth)
element.setAttribute('height', window.innerHeight)
}
window.onresize = reportWindowSize
const svg = d3.select('svg')
const width = Number(svg.attr('width'))
const height = Number(svg.attr('height'))
let zoomLevel = 1
const simulation = d3
.forceSimulation(nodesData)
.force('forceX', d3.forceX().x(width / 2))
.force('forceY', d3.forceY().y(height / 2))
.force('charge', d3.forceManyBody())
.force(
'link',
d3
.forceLink(linksData)
.id((d) => d.id)
2021-03-15 22:22:28 +00:00
.distance(100)
2021-03-12 03:07:34 +00:00
)
.force('center', d3.forceCenter(width / 2, height / 2))
.force('collision', d3.forceCollide().radius(80))
.stop()
const g = svg.append('g')
let link = g.append('g').attr('class', 'links').selectAll('.link')
let node = g.append('g').attr('class', 'nodes').selectAll('.node')
let text = g.append('g').attr('class', 'text').selectAll('.text')
const resize = (event) => {
if (event) {
const scale = event.transform
2021-03-25 03:08:23 +00:00
zoomLevel = scale.k
2021-03-12 03:07:34 +00:00
g.attr('transform', scale)
}
const zoomOrKeep = (value) => (zoomLevel >= 1 ? value / zoomLevel : value)
const font = Math.max(Math.round(zoomOrKeep(FONT_SIZE)), 1)
text.attr('font-size', (d) => font)
link.attr('stroke-width', zoomOrKeep(STROKE))
node.attr('r', (d) => {
return zoomOrKeep(nodeSize[d.id])
})
svg
.selectAll('circle')
.filter((_d, i, nodes) => d3.select(nodes[i]).attr('active'))
.attr('r', (d) => zoomOrKeep(ACTIVE_RADIUS_FACTOR * nodeSize[d.id]))
}
const ticked = () => {
node.attr('cx', (d) => d.x).attr('cy', (d) => d.y)
text
.attr('x', (d) => d.x)
.attr('y', (d) => d.y - (FONT_BASELINE - nodeSize[d.id]) / zoomLevel)
link
2021-03-15 22:22:28 +00:00
.attr('d', (d) => {
const dx = d.target.x - d.source.x
const dy = d.target.y - d.source.y
const dr = Math.sqrt(dx * dx + dy * dy)
return 'M' +
d.source.x + ',' +
d.source.y + 'A' +
dr + ',' + dr + ' 0 0,1 ' +
d.target.x + ',' +
d.target.y
})
2021-03-12 03:07:34 +00:00
}
const restart = () => {
updateNodeSize()
node = node.data(nodesData, (d) => d.id)
node.exit().remove()
node = node
.enter()
.append('circle')
.attr('r', (d) => {
return nodeSize[d.id]
})
.on('click', onClick)
.on('mouseover', onMouseover)
.on('mouseout', onMouseout)
.merge(node)
link = link.data(linksData, (d) => `${d.source.id}-${d.target.id}`)
link.exit().remove()
2021-03-15 22:22:28 +00:00
link = link.enter().append('path').attr('stroke-width', STROKE).merge(link)
2021-03-12 03:07:34 +00:00
text = text.data(nodesData, (d) => d.label)
text.exit().remove()
text = text
.enter()
.append('text')
.text((d) => shorten(d.label.replace(/_*/g, ''), MAX_LABEL_LENGTH))
.attr('font-size', `${FONT_SIZE}px`)
.attr('text-anchor', 'middle')
.attr('alignment-baseline', 'central')
.on('click', onClick)
.on('mouseover', onMouseover)
.on('mouseout', onMouseout)
.merge(text)
node.attr('active', (d) => isCurrentPath(d.path) ? true : null)
text.attr('active', (d) => isCurrentPath(d.path) ? true : null)
simulation.nodes(nodesData)
simulation.force('link').links(linksData)
simulation.alpha(1).restart()
simulation.stop()
for (let i = 0; i < TICKS; i++) {
simulation.tick()
}
ticked()
}
2021-03-25 02:18:10 +00:00
const zoomHandler = d3.zoom().scaleExtent([1, 1]).on('zoom', resize)
2021-03-12 03:07:34 +00:00
zoomHandler(svg)
restart()
function isCurrentPath (notePath) {
return window.location.pathname.includes(notePath)
}
function shorten (str, maxLen, separator = ' ') {
if (str.length <= maxLen) return str
return str.substr(0, str.lastIndexOf(separator, maxLen)) + '...'
}
}