1
Fork 0
mirror of https://github.com/glassflame/glassflame.github.io.git synced 2024-10-16 14:37:33 +00:00

Make wikilinks translucent if the target file does not exist

This commit is contained in:
Steffo 2023-10-30 03:11:23 +01:00
parent 8d3343fa05
commit fef9dc6155
Signed by: steffo
GPG key ID: 2A24051445686895
3 changed files with 33 additions and 5 deletions

View file

@ -166,8 +166,12 @@
<template id="template-wikilink"> <template id="template-wikilink">
<style> <style>
.wikilink { .wikilink {
color: var(--color-accent); color: color-mix(in srgb, var(--color-accent) 50%, transparent);
text-decoration: underline 1px solid currentColor; text-decoration: underline 1px solid currentColor;
}
.wikilink[href] {
color: var(--color-accent);
cursor: pointer; cursor: pointer;
} }
</style> </style>

View file

@ -88,7 +88,13 @@ export class WikilinkElement extends CustomElement {
this.anchorElement = this.instance.querySelector(this.constructor.ANCHOR_SELECTOR) this.anchorElement = this.instance.querySelector(this.constructor.ANCHOR_SELECTOR)
} }
resetAnchorElementProperties() { resetAnchorElementInnerText() {
this.anchorElement.innerText = this.text
}
async resetAnchorElementHref() {
await this.vault.sleepUntilFileIndexIsAvailable()
let path = null let path = null
if(this.target.startsWith(".")) { if(this.target.startsWith(".")) {
path = filePath(this.display.path + "/" + this.target).join("/") path = filePath(this.display.path + "/" + this.target).join("/")
@ -102,16 +108,16 @@ export class WikilinkElement extends CustomElement {
} }
} }
if(path !== null) { if(path !== undefined) {
this.anchorElement.href = this.browse.urlFor({path}).toString() this.anchorElement.href = this.browse.urlFor({path}).toString()
} }
this.anchorElement.innerText = this.text
} }
onConnect() { onConnect() {
super.onConnect() super.onConnect()
this.recalculateAncestors() this.recalculateAncestors()
this.recalculateAnchorElement() this.recalculateAnchorElement()
this.resetAnchorElementProperties() this.resetAnchorElementInnerText()
this.resetAnchorElementHref().then()
} }
} }

View file

@ -161,6 +161,24 @@ export class VaultElement extends CustomElement {
this.fileIndex = null this.fileIndex = null
} }
this.fileIndex = await response.json() this.fileIndex = await response.json()
this.#fileIndexQueue.forEach(resolve => resolve(undefined))
}
/**
* Array of resolve {@link Promise} objects of tasks awaiting {@link sleepUntilFileIndexIsAvailable}.
* @type {((v: undefined) => void)[]}
*/
#fileIndexQueue = []
/**
* Await until {@link fileIndex} becomes available.
* @returns {Promise<void>}
*/
async sleepUntilFileIndexIsAvailable() {
if(this.fileIndex) {
return
}
await new Promise(resolve => this.#fileIndexQueue.push(resolve))
} }
async onConnect() { async onConnect() {