import React, { ReactNode, useState } from "react"; import "./Editor.css"; import { Highlight } from "./highlight"; import { buildShadow } from "./shadow"; import OrgAst from "./OrgAst"; import { parse_org } from "../../organic/target/wasm32-unknown-unknown/js/wasm"; const default_org_source: string = `Welcome to the Organic Wasm Demo! Type your Org [fn:1] source in this text box, and it will be parsed by Organic [fn:2] that has been compiled into wasm and embedded in this page. The resulting AST will be rendered to the right. In the AST on the right, you can: 1. Click on an AST node to highlight the corresponding portion of the Org source on the left. 2. Expand/Collapse the children, properties, and standard properties. * Footnotes [fn:1] https://orgmode.org/ [fn:2] https://code.fizz.buzz/talexander/organic `; function Editor({ defaultValue = default_org_source }) { function handleChange(event: React.ChangeEvent) { setValue(event.target.value); clearHighlights(); } const [value, setValue] = useState(defaultValue); const [highlights, setHighlights] = useState>([]); function setHighlight(start: number, end: number) { let new_highlights = [new Highlight(start, end)]; setHighlights(new_highlights); } function addHighlight(start: number, end: number) { let new_highlights = [...highlights, new Highlight(start, end)]; new_highlights.sort(function (a, b) { if (a.start < b.start) return -1; if (a.start > b.start) return 1; return 0; }); setHighlights(new_highlights); } function clearHighlights() { setHighlights([]); } const astTree = parse_org(value); console.log(JSON.stringify(astTree)); return (