discourse/plugins/discourse-math/assets/javascripts/initializers/discourse-math-mathjax.js
dependabot[bot] e7d3c344d1
Build(deps-dev): Bump the lint group across 1 directory with 4 updates (#33881)
Bumps the lint group with 4 updates in the / directory:
[@discourse/lint-configs](https://github.com/discourse/lint-configs),
[ember-template-lint](https://github.com/ember-template-lint/ember-template-lint),
[eslint](https://github.com/eslint/eslint) and
[stylelint](https://github.com/stylelint/stylelint).


Updates `@discourse/lint-configs` from 2.22.0 to 2.28.0
- [Commits](https://github.com/discourse/lint-configs/commits)

Updates `ember-template-lint` from 7.7.0 to 7.9.1
- [Release
notes](https://github.com/ember-template-lint/ember-template-lint/releases)
-
[Changelog](https://github.com/ember-template-lint/ember-template-lint/blob/master/CHANGELOG.md)
-
[Commits](https://github.com/ember-template-lint/ember-template-lint/commits)

Updates `eslint` from 9.27.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v9.27.0...v9.32.0)

Updates `stylelint` from 16.19.1 to 16.22.0
- [Release notes](https://github.com/stylelint/stylelint/releases)
-
[Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
-
[Commits](https://github.com/stylelint/stylelint/compare/16.19.1...16.22.0)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Discourse CI <ci@ci.invalid>
Co-authored-by: Jarek Radosz <jarek@cvx.dev>
2025-07-28 18:02:41 +02:00

152 lines
3.9 KiB
JavaScript
Vendored

import { later, next } from "@ember/runloop";
import { getURLWithCDN } from "discourse/lib/get-url";
import loadScript from "discourse/lib/load-script";
import { withPluginApi } from "discourse/lib/plugin-api";
let initializedMathJax = false;
function initMathJax(opts) {
if (initializedMathJax) {
return;
}
const extensions = ["toMathML.js", "Safe.js"];
if (opts.enable_accessibility) {
extensions.push("[a11y]/accessibility-menu.js");
}
let settings = {
jax: ["input/TeX", "input/AsciiMath", "input/MathML", "output/CommonHTML"],
TeX: { extensions: ["AMSmath.js", "AMSsymbols.js", "autoload-all.js"] },
extensions,
showProcessingMessages: false,
messageStyle: "none",
root: getURLWithCDN("/plugins/discourse-math/mathjax"),
};
if (opts.zoom_on_hover) {
settings.menuSettings = { zoom: "Hover" };
settings.MathEvents = { hover: 750 };
}
window.MathJax = settings;
initializedMathJax = true;
}
function ensureMathJax(opts) {
initMathJax(opts);
return loadScript("/plugins/discourse-math/mathjax/MathJax.2.7.5.js");
}
function decorate(elem, isPreview) {
if (elem.dataset.appliedMathjax) {
return;
}
elem.dataset.appliedMathjax = true;
let tag, classList, type;
if (elem.classList.contains("math")) {
tag = elem.tagName === "DIV" ? "div" : "span";
const display = tag === "div" ? "; mode=display" : "";
const displayClass = tag === "div" ? "block-math" : "inline-math";
type = `math/tex${display}`;
classList = `math-container ${displayClass} mathjax-math`;
} else if (elem.classList.contains("asciimath")) {
tag = "span";
classList = "math-container inline-math ascii-math";
type = "math/asciimath";
}
const mathScript = document.createElement("script");
mathScript.type = type;
mathScript.innerText = elem.textContent;
const mathWrapper = document.createElement(tag);
mathWrapper.classList.add(classList.split(" "));
mathWrapper.style.display = "none";
mathWrapper.appendChild(mathScript);
elem.after(mathWrapper);
later(
this,
() => {
window.MathJax.Hub.Queue(() => {
// don't bother processing previews removed from DOM
if (elem?.parentElement?.offsetParent !== null) {
window.MathJax.Hub.Typeset(mathScript, () => {
elem.style.display = "none";
mathWrapper.style.display = null;
});
}
});
},
isPreview ? 200 : 0
);
}
function mathjax(elem, opts) {
if (!elem) {
return;
}
let mathElems;
if (opts.enable_asciimath) {
mathElems = elem.querySelectorAll(".math, .asciimath");
} else {
mathElems = elem.querySelectorAll(".math");
}
if (mathElems.length > 0) {
const isPreview = elem.classList.contains("d-editor-preview");
ensureMathJax(opts).then(() => {
mathElems.forEach((mathElem) => decorate(mathElem, isPreview));
});
}
}
function initializeMath(api, discourseMathOptions) {
api.decorateCookedElement(
(element) => {
next(() => {
mathjax(element, discourseMathOptions);
});
},
{ id: "mathjax" }
);
if (api.decorateChatMessage) {
api.decorateChatMessage(
(element) => {
mathjax(element, discourseMathOptions);
},
{
id: "mathjax-chat",
}
);
}
}
export default {
name: "apply-math-mathjax",
initialize(container) {
const siteSettings = container.lookup("service:site-settings");
let discourse_math_opts = {
zoom_on_hover: siteSettings.discourse_math_zoom_on_hover,
enable_accessibility: siteSettings.discourse_math_enable_accessibility,
enable_asciimath: siteSettings.discourse_math_enable_asciimath,
};
if (
siteSettings.discourse_math_enabled &&
siteSettings.discourse_math_provider === "mathjax"
) {
withPluginApi(function (api) {
initializeMath(api, discourse_math_opts);
});
}
},
};