-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathSnippet.njs
More file actions
29 lines (24 loc) · 771 Bytes
/
Snippet.njs
File metadata and controls
29 lines (24 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import Nullstack from "nullstack";
import { readFileSync } from "fs";
import prismjs from "prismjs";
class Snippet extends Nullstack {
html = "";
static async getSnippetByKey({ key, locale }) {
await import("prismjs/components/prism-jsx.min");
const i18nFolder = `i18n/${locale || 'en-US'}`;
const path = `${i18nFolder}/snippets/${key}.njs`;
const code = readFileSync(path, "utf-8");
return prismjs.highlight(code, Prism.languages.jsx, "javascript");
}
async initiate({ key, page }) {
this.html = await this.getSnippetByKey({ key, locale: page.locale });
}
render() {
return (
<pre class="p-4 w-full rounded-md shadow-2xl bg-gray-800">
<code html={this.html} />
</pre>
);
}
}
export default Snippet;