1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-14 19:07:41 +01:00

Added support for binding functions for Mermaid diagrams

This commit is contained in:
squidfunk 2022-11-30 22:19:39 +01:00
parent 907705a519
commit 3c326e80d2
11 changed files with 26 additions and 20 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -22,7 +22,7 @@
<link rel="canonical" href="{{ page.canonical_url }}"> <link rel="canonical" href="{{ page.canonical_url }}">
{% endif %} {% endif %}
<link rel="icon" href="{{ config.theme.favicon | url }}"> <link rel="icon" href="{{ config.theme.favicon | url }}">
<meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-8.5.10"> <meta name="generator" content="mkdocs-{{ mkdocs_version }}, mkdocs-material-8.5.11">
{% endblock %} {% endblock %}
{% block htmltitle %} {% block htmltitle %}
{% if page.meta and page.meta.title %} {% if page.meta and page.meta.title %}
@ -245,14 +245,14 @@
</script> </script>
{% endblock %} {% endblock %}
{% block scripts %} {% block scripts %}
<script src="{{ 'assets/javascripts/bundle.5a2dcb6a.min.js' | url }}"></script> <script src="{{ 'assets/javascripts/bundle.568dd72e.min.js' | url }}"></script>
{% for path in config.extra_javascript %} {% for path in config.extra_javascript %}
<script src="{{ path | url }}"></script> <script src="{{ path | url }}"></script>
{% endfor %} {% endfor %}
{% endblock %} {% endblock %}
{% if page.meta and page.meta.ᴴₒᴴₒᴴₒ %} {% if page.meta and page.meta.ᴴₒᴴₒᴴₒ %}
<link rel="stylesheet" href="{{ 'assets/stylesheets/extra.0d2c79a8.min.css' | url }}"> <link rel="stylesheet" href="{{ 'assets/stylesheets/extra.983f85ee.min.css' | url }}">
<script src="{{ 'assets/javascripts/extra/bundle.5f09fbc3.min.js' | url }}" defer></script> <script src="{{ 'assets/javascripts/extra/bundle.4cea3041.min.js' | url }}" defer></script>
{% endif %} {% endif %}
</body> </body>
</html> </html>

View File

@ -107,15 +107,21 @@ export function mountMermaid(
mermaid$.subscribe(() => { mermaid$.subscribe(() => {
el.classList.add("mermaid") // Hack: mitigate https://bit.ly/3CiN6Du el.classList.add("mermaid") // Hack: mitigate https://bit.ly/3CiN6Du
const id = `__mermaid_${sequence++}` const id = `__mermaid_${sequence++}`
/* Create host element to replace code block */
const host = h("div", { class: "mermaid" }) const host = h("div", { class: "mermaid" })
mermaid.mermaidAPI.render(id, el.textContent, (svg: string) => { const text = el.textContent
/* Render and inject diagram */
mermaid.mermaidAPI.render(id, text, (svg: string, fn: Function) => {
/* Create a shadow root and inject diagram */ /* Create a shadow root and inject diagram */
const shadow = host.attachShadow({ mode: "closed" }) const shadow = host.attachShadow({ mode: "closed" })
shadow.innerHTML = svg shadow.innerHTML = svg
/* Replace code block with diagram */ /* Replace code block with diagram and bind functions */
el.replaceWith(host) el.replaceWith(host)
fn?.(shadow)
}) })
}) })

View File

@ -49,12 +49,12 @@ const container = document.createElement("div")
document.body.appendChild(container) document.body.appendChild(container)
/* Append button next to palette toggle */ /* Append button next to palette toggle */
const header = document.querySelector(".md-header__option") const header = document.querySelector(".md-header__title")
if (header) { if (header) {
const button = document.createElement("button") const button = document.createElement("button")
button.className = "md-header__button md-icon ᴴₒᴴₒᴴₒ__button" button.className = "md-header__button md-icon ᴴₒᴴₒᴴₒ__button"
if (header.parentElement) if (header.parentElement)
header.parentElement.insertBefore(button, header) header.insertAdjacentElement("afterend", button)
/* Toggle animation */ /* Toggle animation */
const on$ = new ReplaySubject<boolean>(1) const on$ = new ReplaySubject<boolean>(1)