Anki/ts/editable/Mathjax.svelte
llama 8ec139f62a
Debounce mathjax rendering to avoid stalling (#3827)
* move change-timer to editable

* debounce mathjax rendering
2025-02-21 16:39:11 +07:00

150 lines
3.9 KiB
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script context="module" lang="ts">
import type { Writable } from "svelte/store";
import { LRUCache } from "lru-cache";
const imageToHeightMap = new Map<string, Writable<number>>();
const observer = new ResizeObserver((entries: ResizeObserverEntry[]) => {
for (const entry of entries) {
const image = entry.target as HTMLImageElement;
const store = imageToHeightMap.get(image.dataset.uuid!)!;
store.set(entry.contentRect.height);
setTimeout(() => entry.target.dispatchEvent(new Event("resize")));
}
});
type Cache = LRUCache<string, [string, string]>;
const caches: { [key: string]: Cache } = {};
function getCache(...keyParts: any) {
const key = keyParts.toString(); // primitive parts or arrays only
if (!(key in caches)) {
caches[key] = new LRUCache({ max: 10 });
}
return caches[key];
}
</script>
<script lang="ts">
import { randomUUID } from "@tslib/uuid";
import { onDestroy } from "svelte";
import { writable } from "svelte/store";
import { pageTheme } from "$lib/sveltelib/theme";
import { convertMathjax, unescapeSomeEntities } from "./mathjax";
import { ChangeTimer } from "./change-timer";
export let mathjax: string;
export let block: boolean;
export let fontSize: number;
let converted: string, title: string;
const debouncedMathjax = writable(mathjax);
const debouncer = new ChangeTimer();
$: debouncer.schedule(() => debouncedMathjax.set(mathjax), 500);
$: {
const cache = getCache($pageTheme.isDark, fontSize);
const entry = cache.get($debouncedMathjax);
if (entry) {
[converted, title] = entry;
} else {
const entry = convertMathjax(
unescapeSomeEntities($debouncedMathjax),
$pageTheme.isDark,
fontSize,
);
[converted, title] = entry;
cache.set($debouncedMathjax, entry);
}
}
$: empty = title === "MathJax";
$: encoded = encodeURIComponent(converted);
const uuid = randomUUID();
const imageHeight = writable(0);
imageToHeightMap.set(uuid, imageHeight);
$: verticalCenter = -$imageHeight / 2 + fontSize / 4;
let image: HTMLImageElement;
export function moveCaretAfter(position?: [number, number]): void {
// This should trigger a focusing of the Mathjax Handle
image.dispatchEvent(
new CustomEvent("movecaretafter", {
detail: { image, position },
bubbles: true,
composed: true,
}),
);
}
export function selectAll(): void {
image.dispatchEvent(
new CustomEvent("selectall", {
detail: image,
bubbles: true,
composed: true,
}),
);
}
function observe(image: Element) {
observer.observe(image);
return {
destroy() {
observer.unobserve(image);
},
};
}
onDestroy(() => imageToHeightMap.delete(uuid));
</script>
<img
bind:this={image}
src="data:image/svg+xml,{encoded}"
class:block
class:empty
class="mathjax"
style:--vertical-center="{verticalCenter}px"
style:--font-size="{fontSize}px"
alt="Mathjax"
{title}
data-anki="mathjax"
data-uuid={uuid}
on:dragstart|preventDefault
use:observe
/>
<style lang="scss">
:global(anki-mathjax) {
white-space: pre;
}
img {
vertical-align: var(--vertical-center);
}
.block {
display: block;
margin: 1rem auto;
transform: scale(1.1);
}
.empty {
vertical-align: text-bottom;
width: var(--font-size);
height: var(--font-size);
}
</style>