Add working code highlighting to CodeJarEditor.
This commit is contained in:
parent
5f9400b642
commit
a776930590
|
@ -1,5 +1,6 @@
|
||||||
import { Component, JSX, createRef } from "preact";
|
import { Component, JSX, createRef } from "preact";
|
||||||
import { CodeJar as _CodeJar } from "codejar";
|
import { CodeJar as _CodeJar } from "codejar";
|
||||||
|
import { highlightElement } from "prismjs";
|
||||||
|
|
||||||
interface CodeJarProps {
|
interface CodeJarProps {
|
||||||
language: string;
|
language: string;
|
||||||
|
@ -12,8 +13,12 @@ export class CodeJarEditor extends Component<CodeJarProps, unknown> {
|
||||||
editorRef = createRef<HTMLDivElement>();
|
editorRef = createRef<HTMLDivElement>();
|
||||||
jar = createRef<_CodeJar | null>();
|
jar = createRef<_CodeJar | null>();
|
||||||
|
|
||||||
|
highlighter(e: HTMLElement, pos?: unknown): void {
|
||||||
|
highlightElement(e);
|
||||||
|
}
|
||||||
|
|
||||||
componentDidMount(): void {
|
componentDidMount(): void {
|
||||||
this.jar.current = _CodeJar(this.editorRef.current, () => {}, {
|
this.jar.current = _CodeJar(this.editorRef.current, this.highlighter, {
|
||||||
tab: " ".repeat(this.props.tabSize),
|
tab: " ".repeat(this.props.tabSize),
|
||||||
window: window,
|
window: window,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue