debian-mirror-gitlab/app/assets/javascripts/behaviors/markdown/render_mermaid.js

82 lines
2.1 KiB
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import flash from '~/flash';
2019-03-13 22:55:13 +05:30
import { sprintf, __ } from '../../locale';
2018-05-09 12:01:36 +05:30
2018-03-17 18:26:18 +05:30
// Renders diagrams and flowcharts from text using Mermaid in any element with the
// `js-render-mermaid` class.
//
// Example markup:
//
// <pre class="js-render-mermaid">
// graph TD;
// A-- > B;
// A-- > C;
// B-- > D;
// C-- > D;
// </pre>
//
2019-09-04 21:01:54 +05:30
// This is an arbitrary number; Can be iterated upon when suitable.
2019-03-13 22:55:13 +05:30
const MAX_CHAR_LIMIT = 5000;
2018-03-17 18:26:18 +05:30
export default function renderMermaid($els) {
if (!$els.length) return;
2018-12-13 13:39:08 +05:30
import(/* webpackChunkName: 'mermaid' */ 'mermaid')
.then(mermaid => {
mermaid.initialize({
// mermaid core options
mermaid: {
startOnLoad: false,
},
// mermaidAPI options
theme: 'neutral',
flowchart: {
htmlLabels: false,
},
});
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
$els.each((i, el) => {
const source = el.textContent;
2018-03-17 18:26:18 +05:30
2019-03-13 22:55:13 +05:30
/**
* Restrict the rendering to a certain amount of character to
* prevent mermaidjs from hanging up the entire thread and
* causing a DoS.
*/
if (source && source.length > MAX_CHAR_LIMIT) {
el.textContent = sprintf(
__(
'Cannot render the image. Maximum character count (%{charLimit}) has been exceeded.',
),
{ charLimit: MAX_CHAR_LIMIT },
);
return;
}
2018-12-13 13:39:08 +05:30
// Remove any extra spans added by the backend syntax highlighting.
Object.assign(el, { textContent: source });
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
mermaid.init(undefined, el, id => {
const svg = document.getElementById(id);
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
svg.classList.add('mermaid');
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
// pre > code > svg
svg.closest('pre').replaceWith(svg);
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
// We need to add the original source into the DOM to allow Copy-as-GFM
// to access it.
const sourceEl = document.createElement('text');
sourceEl.classList.add('source');
sourceEl.setAttribute('display', 'none');
sourceEl.textContent = source;
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
svg.appendChild(sourceEl);
});
2018-03-17 18:26:18 +05:30
});
2018-12-13 13:39:08 +05:30
})
.catch(err => {
flash(`Can't load mermaid module: ${err}`);
2018-03-17 18:26:18 +05:30
});
}