Published
Edited
Jan 3, 2022
1 fork
29 stars
Insert cell
Insert cell
penrose = require("@penrose/core@1.3.0")
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
baseURL = "https://raw.githubusercontent.com/penrose/penrose/v1.3.0/examples/"
Insert cell
registry = (await fetch(baseURL + "registry.json")).json()
Insert cell
Insert cell
domains = objToMap(registry.domains)
Insert cell
substances = objToMap(registry.substances, ([key, d]) => d.domain === _domain.key)
Insert cell
styles = objToMap(registry.styles, ([key, d]) => d.domain === _domain.key)
Insert cell
objToMap = (obj, filter = () => true) => new Map(
Object.entries(obj)
.filter(filter)
.map(([key, value]) => ([value.name, {key, ...value}]))
)
Insert cell
Insert cell
function highlight(editor) {
editor.textContent = editor.textContent;
highlightjs.registerLanguage('penrose-dsl', penroseLanguage('dsl'));
highlightjs.registerLanguage('penrose-sty', penroseLanguage('sty'));
highlightjs.registerLanguage('penrose-sub', penroseLanguage('sub'));
highlightjs.highlightElement(editor);
}
Insert cell
function penroseLanguage(type) {
let keywords = null;

if (type === "dsl") {
keywords = "type value constructor function predicate notation Prop";
}
if (type === "sty") {
keywords =
"forall where with delete as true false layer encourage ensure override bove below";
}
if (type === "sub") {
keywords = "AutoLabel Label NoLabel All";
}

const COMMENT = {
variants: [highlightjs.COMMENT('--', '$'), highlightjs.C_BLOCK_COMMENT_MODE]
};
return function(hljs) {
return {
name: `Penrose-${type}`,
alias: [type],
aliases: ['penrose'],
keywords: keywords,
contains: [COMMENT, highlightjs.QUOTE_STRING_MODE]
};
};
}
Insert cell
editorStyle = `
border: 1px solid #eee;
background: #fafafa;
font-family: Menlo,Consolas,monospace;
font-size: 13px;
padding: 10px;
tab-size: 4;
line-hieght: 1.4;
overflow-wrap: break-word;
max-height: 250px;
`
Insert cell
Insert cell
import {Radio} from "@observablehq/inputs"
Insert cell
import {Editor, highlightjs} from '@cmudig/editor'
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more