mirror of
https://github.com/glassflame/glassflame.github.io.git
synced 2024-12-04 14:04:23 +00:00
Do things properly
This commit is contained in:
parent
069b36c20d
commit
2df251dcd4
3 changed files with 64 additions and 29 deletions
|
@ -1,5 +1,7 @@
|
||||||
import {CustomElement} from "../base.mjs";
|
import {CustomElement} from "../base.mjs";
|
||||||
import {default as katex} from 'https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.mjs';
|
import {default as katex} from 'https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.mjs';
|
||||||
|
import { MarkdownElement } from "./renderer.mjs";
|
||||||
|
import { findFirstAncestor } from "../../utils/traversal.mjs";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Element rendering TeX math.
|
* Element rendering TeX math.
|
||||||
|
@ -9,6 +11,21 @@ export class MathElement extends CustomElement {
|
||||||
return document.getElementById("template-math")
|
return document.getElementById("template-math")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Element representing the Markdown context where this math formula is displayed in.
|
||||||
|
* Can be recalculated with {@link recalculateRenderer}.
|
||||||
|
* @type {MarkdownElement}
|
||||||
|
*/
|
||||||
|
renderer
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recalculate the value of {@link browse} and {@link vault} using this element's current position in the DOM.
|
||||||
|
* @returns {void}
|
||||||
|
*/
|
||||||
|
recalculateRenderer() {
|
||||||
|
this.renderer = findFirstAncestor(this, MarkdownElement)
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The math to render, obtained from the `document` attribute.
|
* The math to render, obtained from the `document` attribute.
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
|
@ -42,12 +59,6 @@ export class MathElement extends CustomElement {
|
||||||
*/
|
*/
|
||||||
katexElement
|
katexElement
|
||||||
|
|
||||||
/**
|
|
||||||
* The group to use to store macros in.
|
|
||||||
* Should be overridden by the creator element.
|
|
||||||
*/
|
|
||||||
katexMacros = {}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the slot where {@link katexElement} should be placed in.
|
* The name of the slot where {@link katexElement} should be placed in.
|
||||||
* @type {string}
|
* @type {string}
|
||||||
|
@ -57,7 +68,7 @@ export class MathElement extends CustomElement {
|
||||||
/**
|
/**
|
||||||
* Recreate {@link katexElement} with the current values of {@link texDocument} and {@link isBlock}.
|
* Recreate {@link katexElement} with the current values of {@link texDocument} and {@link isBlock}.
|
||||||
*/
|
*/
|
||||||
recreateKatexElement() {
|
async recreateKatexElement() {
|
||||||
if(this.katexElement) {
|
if(this.katexElement) {
|
||||||
this.katexElement.remove()
|
this.katexElement.remove()
|
||||||
this.katexElement = null
|
this.katexElement = null
|
||||||
|
@ -68,13 +79,15 @@ export class MathElement extends CustomElement {
|
||||||
this.katexElement.classList.add("math")
|
this.katexElement.classList.add("math")
|
||||||
this.katexElement.classList.add(this.isBlock ? "math-block" : "math-inline")
|
this.katexElement.classList.add(this.isBlock ? "math-block" : "math-inline")
|
||||||
|
|
||||||
|
await this.renderer.sleepUntilKatexMacrosAreAvailable()
|
||||||
|
|
||||||
katex.render(
|
katex.render(
|
||||||
this.texDocument,
|
this.texDocument,
|
||||||
this.katexElement,
|
this.katexElement,
|
||||||
{
|
{
|
||||||
throwOnError: false,
|
throwOnError: false,
|
||||||
globalGroup: true,
|
globalGroup: true,
|
||||||
macros: this.katexMacros,
|
macros: this.renderer.katexMacros,
|
||||||
trust: true,
|
trust: true,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -84,6 +97,7 @@ export class MathElement extends CustomElement {
|
||||||
|
|
||||||
onConnect() {
|
onConnect() {
|
||||||
super.onConnect()
|
super.onConnect()
|
||||||
|
this.recalculateRenderer()
|
||||||
this.recreateKatexElement()
|
this.recreateKatexElement()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@ export class MarkdownElement extends CustomElement {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Element representing the Obsidian Vault.
|
* Element representing the Obsidian Vault.
|
||||||
* Can be recalculated with {@link recalculateAncestors}.
|
* Can be recalculated with {@link recalculateVault}.
|
||||||
* @type {VaultElement}
|
* @type {VaultElement}
|
||||||
*/
|
*/
|
||||||
vault
|
vault
|
||||||
|
@ -24,15 +24,10 @@ export class MarkdownElement extends CustomElement {
|
||||||
* Recalculate the value of {@link browse} and {@link vault} using this element's current position in the DOM.
|
* Recalculate the value of {@link browse} and {@link vault} using this element's current position in the DOM.
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
recalculateAncestors() {
|
recalculateVault() {
|
||||||
this.vault = findFirstAncestor(this, VaultElement)
|
this.vault = findFirstAncestor(this, VaultElement)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* The group to use to store KaTeX macros in for everything in this {@link MarkdownElement}.
|
|
||||||
*/
|
|
||||||
katexGroup
|
|
||||||
|
|
||||||
// noinspection JSUnusedGlobalSymbols
|
// noinspection JSUnusedGlobalSymbols
|
||||||
/**
|
/**
|
||||||
* {@link Marked} Markdown renderer.
|
* {@link Marked} Markdown renderer.
|
||||||
|
@ -236,10 +231,42 @@ export class MarkdownElement extends CustomElement {
|
||||||
*/
|
*/
|
||||||
static DOCUMENT_ELEMENT_SLOT = "markdown-document"
|
static DOCUMENT_ELEMENT_SLOT = "markdown-document"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Macros to be used in every single {@link MathElement} of the renderer.
|
||||||
|
*/
|
||||||
|
katexMacros
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update {@link katexMacros} from the root {@link VaultElement}.
|
||||||
|
* @returns {Promise<void>}
|
||||||
|
*/
|
||||||
|
async refetchKatexMacros() {
|
||||||
|
await this.vault.sleepUntilKatexMacrosAreAvailable()
|
||||||
|
this.katexMacros = {...this.vault.katexMacros}
|
||||||
|
this.#katexMacrosQueue.forEach(resolve => resolve(undefined))
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Array of resolve {@link Promise} objects of tasks awaiting {@link sleepUntilKatexPreambleIsAvailable}.
|
||||||
|
* @type {((v: undefined) => void)[]}
|
||||||
|
*/
|
||||||
|
#katexMacrosQueue = []
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Await until {@link katexPreamble} becomes available.
|
||||||
|
* @returns {Promise<void>}
|
||||||
|
*/
|
||||||
|
async sleepUntilKatexMacrosAreAvailable() {
|
||||||
|
if(this.katexMacros !== undefined) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
await new Promise(resolve => this.#katexMacrosQueue.push(resolve))
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Recreate {@link documentElement} using the current value of {@link markdownDocument}.
|
* Recreate {@link documentElement} using the current value of {@link markdownDocument}.
|
||||||
*/
|
*/
|
||||||
async recreateDocumentElement() {
|
recreateDocumentElement() {
|
||||||
if(this.documentElement) {
|
if(this.documentElement) {
|
||||||
this.documentElement.remove()
|
this.documentElement.remove()
|
||||||
this.documentElement = null
|
this.documentElement = null
|
||||||
|
@ -249,19 +276,13 @@ export class MarkdownElement extends CustomElement {
|
||||||
this.documentElement.slot = this.constructor.DOCUMENT_ELEMENT_SLOT
|
this.documentElement.slot = this.constructor.DOCUMENT_ELEMENT_SLOT
|
||||||
this.documentElement.innerHTML = this.constructor.MARKED.parse(this.markdownDocument)
|
this.documentElement.innerHTML = this.constructor.MARKED.parse(this.markdownDocument)
|
||||||
|
|
||||||
// TODO: await this properly
|
|
||||||
await this.vault.sleepUntilKatexMacrosAreAvailable()
|
|
||||||
this.katexMacros = {...this.vault.katexMacros}
|
|
||||||
for(const el of this.documentElement.getElementsByTagName("x-math")) {
|
|
||||||
el.katexMacros = this.katexMacros
|
|
||||||
}
|
|
||||||
|
|
||||||
this.appendChild(this.documentElement)
|
this.appendChild(this.documentElement)
|
||||||
}
|
}
|
||||||
|
|
||||||
onConnect() {
|
onConnect() {
|
||||||
super.onConnect()
|
super.onConnect()
|
||||||
this.recalculateAncestors()
|
this.recalculateVault()
|
||||||
this.recreateDocumentElement().then()
|
this.recreateDocumentElement()
|
||||||
|
this.refetchKatexMacros().then()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -231,12 +231,12 @@ export class VaultElement extends CustomElement {
|
||||||
await new Promise(resolve => this.#katexMacrosQueue.push(resolve))
|
await new Promise(resolve => this.#katexMacrosQueue.push(resolve))
|
||||||
}
|
}
|
||||||
|
|
||||||
async onConnect() {
|
onConnect() {
|
||||||
super.onConnect()
|
super.onConnect()
|
||||||
this.recalculateVaultElement()
|
this.recalculateVaultElement()
|
||||||
this.#fetchQueueScheduler().then()
|
this.#fetchQueueScheduler().then()
|
||||||
await this.refetchAppearance()
|
this.refetchAppearance().then()
|
||||||
await this.refetchFileIndex()
|
this.refetchFileIndex().then()
|
||||||
await this.refetchKatexMacros()
|
this.refetchKatexMacros().then()
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue