-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlexical-cli-render-without-emoji.ts
41 lines (35 loc) · 1.29 KB
/
lexical-cli-render-without-emoji.ts
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
30
31
32
33
34
35
36
37
38
39
40
41
import { TextNode, $getRoot, $selectAll } from "lexical";
import { HeadingNode, QuoteNode } from "@lexical/rich-text";
import { LinkNode } from "@lexical/link";
import { HashtagNode } from "@lexical/hashtag";
import { ListNode, ListItemNode } from "@lexical/list";
import { createHeadlessEditor } from "@lexical/headless";
import { $generateHtmlFromNodes } from "@lexical/html";
import { JSDOM } from 'jsdom';
let input : string = "", html : string = "";
const editor = createHeadlessEditor({
editable: false,
nodes: [TextNode, HeadingNode, QuoteNode, LinkNode, HashtagNode, ListNode, ListItemNode],
onError: (error) => { throw error;},
});
const dom = new JSDOM();
global.window = dom.window;
global.document = dom.window.document;
process.stdin.on("data", (chunk) => { input += chunk; });
process.stdin.on("end", async () =>
{
try
{
let editorStateJson = JSON.parse(input);
if('editorState' in editorStateJson) editorStateJson = editorStateJson.editorState;
const editorState = editor.parseEditorState(editorStateJson);
editor.setEditorState(editorState);
editor.update(() => { html = $generateHtmlFromNodes(editor, $selectAll()); });
console.log(html);
}
catch (error)
{
console.error("Error processing EditorState JSON:", error);
process.exit(1);
}
});