Fix popover

This commit is contained in:
Aiden Bai 2022-05-03 08:47:42 -07:00
parent 6e6dd4cb0b
commit 77485b754d
No known key found for this signature in database
GPG key ID: D37584388675FF3A
9 changed files with 67 additions and 64 deletions

View file

@ -1,5 +1,5 @@
function htmlToElement(html) {
const template = document.createElement('template')
const template = document.createElement("template")
html = html.trim()
template.innerHTML = html
return template.content.firstChild
@ -7,29 +7,27 @@ function htmlToElement(html) {
function initPopover(baseURL) {
const basePath = baseURL.replace(window.location.origin, "")
document.addEventListener("DOMContentLoaded", () => {
fetchData.then(({ content }) => {
const links = [...document.getElementsByClassName("internal-link")]
links
.filter(li => li.dataset.src)
.forEach(li => {
const linkDest = content[li.dataset.src.replace(/\/$/g, "").replace(basePath, "")]
if (linkDest) {
const popoverElement = `<div class="popover">
fetchData.then(({ content }) => {
const links = [...document.getElementsByClassName("internal-link")]
links
.filter((li) => li.dataset.src)
.forEach((li) => {
const linkDest = content[li.dataset.src.replace(/\/$/g, "").replace(basePath, "")]
if (linkDest) {
const popoverElement = `<div class="popover">
<h3>${linkDest.title}</h3>
<p>${removeMarkdown(linkDest.content).split(" ", 20).join(" ")}...</p>
<p class="meta">${new Date(linkDest.lastmodified).toLocaleDateString()}</p>
</div>`
const el = htmlToElement(popoverElement)
li.appendChild(el)
li.addEventListener("mouseover", () => {
el.classList.add("visible")
})
li.addEventListener("mouseout", () => {
el.classList.remove("visible")
})
}
})
})
const el = htmlToElement(popoverElement)
li.appendChild(el)
li.addEventListener("mouseover", () => {
el.classList.add("visible")
})
li.addEventListener("mouseout", () => {
el.classList.remove("visible")
})
}
})
})
}

25
assets/js/router.js Normal file
View file

@ -0,0 +1,25 @@
import { router, navigate } from "https://unpkg.com/million/dist/router.mjs"
export const init = (loader) => {
// SPA navigation for access later
window.navigate = navigate
// We only mutate document.title and content within .singlePage element
router(".singlePage")
// We need on initial load, then subsequent redirs
window.addEventListener("million:navigate", () => callback(loader))
window.addEventListener("DOMContentLoaded", () => callback(loader))
}
export const callback = (loader) => {
// requestAnimationFrame() delays graph draw until SPA routing is finished
const draw = () => {
const container = document.getElementById("graph-container")
// retry if the graph is not ready
if (!container) return requestAnimationFrame(draw)
// clear the graph in case there is anything within it
container.textContent = ""
loader()
}
requestAnimationFrame(draw)
}