Skip to content

Latest commit

 

History

History

viewscreen-mermaid

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

viewscreen-mermaid

Build Coverage Downloads Size Sponsors Backers Chat

Viewscreen component for mermaid.

Contents

What is this?

This library can run inside an <iframe>, with some skeleton HTML. Then, from the outside, you can embed that frame, and send messages to it, to display a mermaid diagram.

This behavior is specific to github.com that works in comments and files. Using <iframe>s is a way to create components agnostic to a framework: you can use this with plain JavaScript or with React, for example.

This library is part of a monorepo rehype-github. See its readme for more info.

When should I use this?

You can use this library when you want to match how github.com works or when you want to build similar pipelines.

This library is useful if you want to user content to include mermaid diagrams.

Install

This package is ESM only. In browsers with esm.sh:

<script type="module">
  import {viewscreenMermaid} from 'https://esm.sh/viewscreen-mermaid@0?bundle'
</script>

Use

Say our file viewscreen-mermaid.html looks as follows:

<!doctype html>
<html lang=en>
<meta content=width=device-width,initial-scale=1 name=viewport>
<meta charset=utf8>
<title>viewscreen: mermaid</title>
<style>/* … */</style>
<script type=module>
  import {viewscreenMermaid} from 'https://esm.sh/viewscreen-mermaid@0?bundle'

  const id = window.location.hash.slice(1)
  if (!id) throw new Error('Expected `id` in hash')
  const parent = window.parent
  if (!parent) throw new Error('Expected parent window')

  const viewer = create(document.body, {
    onSizeSuggestion(width, height) {
      parent.postMessage({type: 'resize', id, value: {width, height}})
    }
  })

  window.addEventListener('message', function (event) {
    if (event.data.type === 'content') {
      viewer.change(event.data.value)
    }
  })
</script>

…and a file index.html looks as follows:

<!doctype html>
<html lang=en>
<meta charset=utf8>
<meta content=width=device-width,initial-scale=1 name=viewport>
<title>example</title>
<link rel=stylesheet href=https://esm.sh/github-markdown-css@5/github-markdown.css>
<style>/* … */</style>
<div class=markdown-body>
<pre><code class=language-mermaid>graph TD;
A--&gt;B;
</code></pre>
</div>
<script type=module>
  const hasOwn = {}.hasOwnProperty

  const types = {mermaid: '/viewscreen-mermaid.html'}

  /**
   * Handle a message from any viewscreen iframe.
   */
  window.addEventListener('message', function (event) {
    if (event.data.type === 'resize') {
      // We use unique names, but not bad to handle arrays.
      const nodes = document.getElementsByName(event.data.id)

      for (const node of nodes) {
        node.setAttribute('style', `height:${event.data.value.height}px`)
      }
    }
  })

  const nodes = Array.from(document.body.querySelectorAll('code'))
  const prefix = 'language-'

  for (const node of nodes) {
    const className = Array.from(node.classList).find((d) => d.startsWith(prefix))
    if (!className) continue
    const name = className.slice(prefix.length)

    const specifier = hasOwn.call(types, name) ? types[name] : undefined

    if (!specifier) continue

    const value = node.textContent || ''
    const id = crypto.randomUUID()
    const url = new URL(specifier, window.location.href)
    url.hash = id
    const iframe = document.createElement('iframe')

    iframe.classList.add('render-viewer')
    iframe.setAttribute('role', 'presentation')
    iframe.setAttribute('name', id)
    iframe.setAttribute('src', String(url))
    iframe.setAttribute('style', 'opacity:0')

    iframe.addEventListener('load', function () {
      const otherWindow = iframe.contentWindow
      if (!otherWindow) throw new Error('Expected `contentWindow`')
      const message = {type: 'content', id, value}
      iframe.setAttribute('style', '')
      otherWindow.postMessage(message)
    })

    const scope =
      node.parentElement && node.parentElement.nodeName === 'PRE'
        ? node.parentElement
        : node
    scope.replaceWith(iframe)
  }
</script>

…now assuming both run on a server localhost:8000, opening that in a browser shows the diagram!

API

This package exports the identifier viewscreenMermaid. There is no default export.

viewscreenMermaid(node, options?)

Render a mermaid graph in node.

Parameters
  • node (HTMLElement, required) — node to work in
  • options (Options, optional) — configuration
Returns

Object with the following fields:

  • change ((value: string) => Promise<void>) — change the diagram

OnSizeSuggestion

Callback called when there’s a new size suggestion for the viewscreen (TypeScript type).

Parameters
  • width (number) — current width
  • height (number) — preferred height for width
Returns

Nothing (void).

Options

Configuration (TypeScript type).

Fields
  • onSizeSuggestion (OnSizeSuggestion, optional) — callback called on a size suggestion

Bugs

GitHubs behavior for this is pretty good! It doesn’t support zooming, panning, or dark mode, but those are included in this library.

Authoring

See the mermaid docs for more on how to author diagrams.

HTML

The markup injected into node looks like this:

<div> <!-- Zoomable/panable area -->
  <div> <!-- Translated area -->
    <svg></svg> <!-- Mermaid diagram -->
  </div>
</div>
<div class="panel">
  <button class="zoom-in"><svg></svg></button> <!-- Zoom in, with octicon -->
  <button class="zoom-out"><svg></svg></button> <!-- Zoom out, with octicon -->
  <button class="reset"><svg></svg></button> <!-- Reset zoom/pan, with octicon -->
  <button class="up"><svg></svg></button> <!-- Move up, with octicon -->
  <button class="down"><svg></svg></button> <!-- Move down, with octicon -->
  <button class="left"><svg></svg></button> <!-- Move left, with octicon -->
  <button class="right"><svg></svg></button> <!-- Move right, with octicon -->
</div>

CSS

The CSS you could use:

:root {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans',
    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  color-scheme: light;

  --color-accent-fg: #0969da;
  --color-btn-active-bg: hsl(220, 14%, 93%);
  --color-btn-active-border: rgba(31, 35, 40, 0.15);
  --color-btn-bg: #f6f8fa;
  --color-btn-border: rgba(31, 35, 40, 0.15);
  --color-btn-hover-bg: #f3f4f6;
  --color-btn-hover-border: rgba(31, 35, 40, 0.15);
  --color-btn-inset-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  --color-btn-shadow: 0 1px 0 rgba(31, 35, 40, 0.04);
  --color-btn-text: #24292f;
  --color-primer-fg-disabled: #8c959f;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    --color-accent-fg: #2f81f7;
    --color-btn-active-bg: hsl(212, 12%, 18%);
    --color-btn-active-border: #6e7681;
    --color-btn-bg: #21262d;
    --color-btn-border: rgba(240, 246, 252, 0.1);
    --color-btn-hover-bg: #30363d;
    --color-btn-hover-border: #8b949e;
    --color-btn-inset-shadow: 0 0 transparent;
    --color-btn-shadow: 0 0 transparent;
    --color-btn-text: #c9d1d9;
    --color-primer-fg-disabled: #484f58;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

button {
  position: relative;
  display: inline-block;
  padding: 5px 7px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid;
  border-radius: 6px;
  appearance: none;

  color: var(--color-btn-text);
  background-color: var(--color-btn-bg);
  border-color: var(--color-btn-border);
  box-shadow: var(--color-btn-shadow), var(--color-btn-inset-shadow);
  transition: 80ms cubic-bezier(0.33, 1, 0.68, 1);
  transition-property: color, background-color, box-shadow, border-color;
}

button:disabled {
  color: var(--color-primer-fg-disabled);
  background-color: var(--color-btn-bg);
  border-color: var(--color-btn-border);
}

button:hover {
  background-color: var(--color-btn-hover-bg);
  border-color: var(--color-btn-hover-border);
  transition-duration: 0.1s;
}

button:focus {
  outline: 2px solid var(--color-accent-fg);
  outline-offset: -2px;
  box-shadow: none;
}

button:active {
  background-color: var(--color-btn-active-bg);
  border-color: var(--color-btn-active-border);
  transition: none;
}

.octicon:only-child {
  margin-right: 0;
}

.octicon {
  margin-right: 4px;
  fill: currentColor; /* Inherit from (disabled) buttons. */
  vertical-align: text-bottom;
}

.panel {
  position: absolute;
  z-index: 1;
  bottom: 0.5ex;
  right: 0.5ex;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5ex;
}

.up { grid-column: 2; grid-row: 1; }
.zoom-in { grid-column: 3; grid-row: 1; }
.left { grid-column: 1; grid-row: 2; }
.reset { grid-column: 2; grid-row: 2; }
.right { grid-column: 3; grid-row: 2; }
.down { grid-column: 2; grid-row: 3; }
.zoom-out { grid-column: 3; grid-row: 3; }

Types

This package is fully typed with TypeScript. It exports the additional types OnSizeSuggestion and Options.

Compatibility

This project works in browsers only.

Security

This package is safe.

Related

Contribute

See contributing.md in rehypejs/.github for ways to get started. See support.md for ways to get help.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

Notice

This project is not affiliated with GitHub.

License

MIT © Titus Wormer