2022-01-04 12:02:48 +00:00
|
|
|
import {html} from "../skooma.js"
|
|
|
|
import {css, variable} from "../css.js"
|
|
|
|
import {template} from "../template.js"
|
|
|
|
|
|
|
|
document.head.append(html.link({rel: 'stylesheet', href: 'https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.3.1/build/styles/default.min.css'}))
|
|
|
|
import hljs from 'https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.3.1/build/es/highlight.min.js';
|
|
|
|
import javascript from 'https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.3.1/build/es/languages/javascript.min.js';
|
|
|
|
hljs.registerLanguage('javascript', javascript);
|
|
|
|
|
|
|
|
const escapes = { ">": ">" }
|
|
|
|
class CodeBlock extends HTMLElement {
|
|
|
|
connectedCallback() {
|
2022-02-08 13:50:32 +00:00
|
|
|
let content = this.innerHTML
|
|
|
|
.replace(/^\s*\n/, "")
|
|
|
|
.replace(/\n\s*$/, "")
|
|
|
|
let prefix = new RegExp(`(?<![^\n])${content.match(/^\t*/)}`, "g")
|
|
|
|
console.log(prefix)
|
|
|
|
content = content
|
|
|
|
.replace(prefix, "")
|
|
|
|
.replace(/&[a-z]+;/g, str => escapes[str] ?? str)
|
2022-01-13 21:02:20 +00:00
|
|
|
this.replaceChildren(html.pre(html.code(template(hljs.highlight(content, {language: 'javascript'}).value))))
|
2022-01-04 12:02:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
customElements.define("code-block", CodeBlock)
|
|
|
|
|
|
|
|
document.head.append(html.style(css({
|
|
|
|
'code-block': {
|
|
|
|
code: {
|
|
|
|
padding: CSS.em(.6),
|
|
|
|
borderRadius: CSS.em(.6),
|
|
|
|
backgroundColor: "#eee",
|
|
|
|
border: "none",
|
|
|
|
tabSize: 3,
|
|
|
|
display: "block",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})))
|