Files
remanso/src/hooks/useLinks.hook.ts
Julien Calixte 836b480ea6 fix(navigation): resolve clicked anchor when target is a nested element
A click on a child of an <a> (e.g. nested <strong>, <em>, <code>, icon)
made event.target a non-anchor, so getAttribute('href') returned null
and the handler bailed without preventDefault. The browser then
performed the native navigation, which for relative links like
'../note.md' resolved against the current /:user/:repo URL and the SPA
re-routed treating the destination as a new repo.
2026-04-26 13:58:48 +02:00

94 lines
2.1 KiB
TypeScript

import { ComputedRef, onUnmounted, Ref, toValue } from "vue"
import { noteEventBus } from "@/bus/noteEventBus"
import { useUserRepoStore } from "@/modules/repo/store/userRepo.store"
import { isExternalLink } from "@/utils/link"
export const useLinks = (
className: ComputedRef<string> | string,
sha?: Ref<string> | string
) => {
const store = useUserRepoStore()
const linkNote: EventListener = (event) => {
const anchor = (event.target as HTMLElement).closest("a")
const href = anchor?.getAttribute("href")
if (!href) {
return
}
if (href.startsWith("#")) {
event.preventDefault()
const id = href.slice(1)
const container = document.querySelector(`.${toValue(className)}`)
const heading = container?.querySelector(`#${CSS.escape(id)}`)
heading?.scrollIntoView({
block: "start",
inline: "nearest",
behavior: "smooth"
})
return
}
event.preventDefault()
event.stopPropagation()
if (isExternalLink(href)) {
window.open(href, "_blank")
return
}
const hashIndex = href.indexOf("#")
const path = hashIndex === -1 ? href : href.slice(0, hashIndex)
const hash = hashIndex === -1 ? undefined : href.slice(hashIndex + 1)
noteEventBus.emit({
path,
hash,
currentNoteSHA: toValue(sha),
user: store.user,
repo: store.repo
})
}
const LINK_SELECTOR = `.${toValue(className)} a`
const removeListeners = () => {
const elements = document.querySelectorAll(LINK_SELECTOR)
elements.forEach((element) => {
element.removeEventListener("click", linkNote)
})
}
const listenToClick = () => {
removeListeners()
const elements = document.querySelectorAll(LINK_SELECTOR)
elements.forEach((element) => {
const href = element.getAttribute("href")
if (!href) {
return
}
if (isExternalLink(href)) {
element.classList.add("external-link")
}
})
elements.forEach((element) => {
element.addEventListener("click", linkNote)
})
}
onUnmounted(() => {
removeListeners()
})
return {
listenToClick
}
}