mermaid/cypress/platform/rerender.html

30 lines
953 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
2022-09-04 21:30:47 +02:00
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Mermaid Quick Test Page</title>
<link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgo=" />
</head>
<body>
<div id="graph"></div>
2023-02-19 09:33:11 +01:00
<script type="module">
import mermaid from './mermaid.esm.mjs';
mermaid.initialize({ startOnLoad: false });
2022-09-04 21:30:47 +02:00
mermaid.mermaidAPI.initialize();
2023-02-19 09:33:11 +01:00
async function rerender(text) {
2022-10-05 08:08:53 +02:00
const graphText = `graph TD
A[${text}] -->|Get money| B(Go shopping)`;
2023-02-19 09:33:11 +01:00
const { svg } = await mermaid.mermaidAPI.render('id', graphText);
console.log('\x1b[35m%s\x1b[0m', '>> graph', svg);
document.getElementById('graph').innerHTML = svg;
2022-09-04 21:30:47 +02:00
}
2023-02-19 09:33:11 +01:00
window.rerender = rerender;
await rerender('XMas');
2022-09-04 21:30:47 +02:00
</script>
<button id="rerender" onclick="rerender('Saturday')">Rerender</button>
</body>
</html>