Viewscreen component for geojson and topojson.
- What is this?
- When should I use this?
- Install
- Use
- API
- Bugs
- Authoring
- HTML
- CSS
- Types
- Compatibility
- Security
- Related
- Contribute
- License
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 geojson or topojson on a map.
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.
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 maps.
This package is ESM only.
In browsers with esm.sh
:
<script type="module">
import {viewscreenGeojson} from 'https://esm.sh/viewscreen-geojson@0?bundle'
</script>
Say our file viewscreen-geojson.html
looks as follows:
<!doctype html>
<html lang=en>
<meta content=width=device-width,initial-scale=1 name=viewport>
<meta charset=utf8>
<title>viewscreen: geojson</title>
<link rel=stylesheet href=https://esm.sh/[email protected]/dist/leaflet.css>
<link rel=stylesheet href=https://esm.sh/[email protected]/dist/MarkerCluster.css>
<link rel=stylesheet href=https://esm.sh/[email protected]/dist/MarkerCluster.Default.css>
<style>/* … */</style>
<script type=module>
import {viewscreenGeojson} from 'https://esm.sh/viewscreen-geojson@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 = viewscreenGeojson(document.body, {
onReject(value) {
parent.postMessage({type: 'reject', id, value})
},
onSizeSuggestion(width, height) {
parent.postMessage({type: 'resize', id, value: {width, height}})
},
onResolve() {
parent.postMessage({type: 'resolve', id})
}
})
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-geojson>{
"type": "Feature",
"geometry": {"type": "Point", "coordinates": [125.6, 10.1]},
"properties": {"name": "Dinagat Islands"}
}
</code></pre>
</div>
<script type=module>
const hasOwn = {}.hasOwnProperty
const types = {
geojson: '/viewscreen-geojson.html',
topojson: '/viewscreen-geojson.html'
}
const viewscreens = new Map()
/**
* 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`)
}
} else if (event.data.type === 'resolve') {
const viewscreen = viewscreens.get(event.data.id)
if (!viewscreen) throw new Error('Expected viewscreen')
// Note: this never happens.
// When `reject` is added to the DOM, it replaces the frame, which
// offloads it, so `resolve` will never happen.
if (viewscreen.reject.parentElement) {
viewscreen.reject.replaceWith(viewscreen.resolve)
}
} else if (event.data.type === 'reject') {
const viewscreen = viewscreens.get(event.data.id)
if (!viewscreen) throw new Error('Expected viewscreen')
const body = viewscreen.reject.querySelector('.flash-body')
if (!body) throw new Error('Expected body')
body.textContent = event.data.value
if (viewscreen.resolve.parentElement) {
viewscreen.resolve.replaceWith(viewscreen.reject)
}
} else {
console.log('on unknown message from viewscreen:', event)
}
})
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
// Append the frame, assume it will resolve.
scope.replaceWith(iframe)
// Create error display, for when the frame rejects.
const heading = document.createElement('p')
heading.classList.add('flash-heading')
heading.textContent = 'Unable to render rich display'
heading.style.fontWeight = 'bold'
const body = document.createElement('p')
body.classList.add('flash-body')
const errorMessage = document.createElement('div')
errorMessage.classList.add('flash', 'flash-error')
errorMessage.append(heading, body)
const reject = document.createElement('div')
reject.append(errorMessage, scope)
viewscreens.set(id, {reject, resolve: iframe})
}
</script>
…now assuming both run on a server localhost:8000
, opening that in a browser
shows the diagram!
This package exports the identifier
viewscreenGeojson
.
There is no default export.
Render a map in node
.
node
(HTMLElement
, required) — node to work inoptions
(Options
, optional) — configuration
Object with the following fields:
change
((value: string) => Promise<void>
) — change the diagram
Callback called when there’s a new size suggestion for the viewscreen (TypeScript type).
width
(number
) — current widthheight
(number
) — preferred height forwidth
Nothing (void
).
Callback called when rejecting (TypeScript type).
value
(string
) — reason
Nothing (void
).
Callback called when resolving (TypeScript type).
None.
Nothing (void
).
Configuration (TypeScript type).
onReject
(OnReject
, optional) — callback called when rejectingonResolve
(OnResolve
, optional) — callback called when resolvingonSizeSuggestion
(OnSizeSuggestion
, optional) — callback called on a size suggestion
GitHubs behavior for this is pretty good! GitHub uses Azure maps, which is apparently a thing. This instead uses Leaflet with tiles from OpenStreetMap.
See the geojson or topojson docs for more on how to author geographic data.
The given node
will be entirely controlled by Leaflet.
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;
}
@media (prefers-color-scheme: dark) {
:root {
color-scheme: dark;
}
.leaflet-tile-pane {
filter: brightness(0.6) invert(1) contrast(3) hue-rotate(200deg)
saturate(0.3) brightness(0.7);
}
}
* {
box-sizing: border-box;
}
body {
margin: 0;
aspect-ratio: 8 / 5;
}
This package is fully typed with TypeScript.
It exports the additional types OnReject
,
OnResolve
, OnSizeSuggestion
,
and Options
.
This project works in browsers only.
This package is safe.
remark-gfm
— support GFM in remark
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.
This project is not affiliated with GitHub.