mirror of
https://github.com/facebook/lexical.git
synced 2025-08-06 16:39:33 +08:00
96 lines
2.7 KiB
TypeScript
96 lines
2.7 KiB
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
import {AutoFocusPlugin} from '@lexical/react/LexicalAutoFocusPlugin';
|
|
import {LexicalComposer} from '@lexical/react/LexicalComposer';
|
|
import {useLexicalComposerContext} from '@lexical/react/LexicalComposerContext';
|
|
import {ContentEditable} from '@lexical/react/LexicalContentEditable';
|
|
import {LexicalErrorBoundary} from '@lexical/react/LexicalErrorBoundary';
|
|
import {HistoryPlugin} from '@lexical/react/LexicalHistoryPlugin';
|
|
import {RichTextPlugin} from '@lexical/react/LexicalRichTextPlugin';
|
|
import {TablePlugin} from '@lexical/react/LexicalTablePlugin';
|
|
import {
|
|
INSERT_TABLE_COMMAND,
|
|
TableCellNode,
|
|
TableNode,
|
|
TableRowNode,
|
|
} from '@lexical/table';
|
|
import {LexicalEditor} from 'lexical';
|
|
import {useEffect, useState} from 'react';
|
|
|
|
import ExampleTheme from './ExampleTheme';
|
|
import ToolbarPlugin from './plugins/ToolbarPlugin';
|
|
import TreeViewPlugin from './plugins/TreeViewPlugin';
|
|
|
|
const editorConfig = {
|
|
namespace: 'React.js Demo',
|
|
nodes: [TableNode, TableCellNode, TableRowNode],
|
|
// Handling of errors during update
|
|
onError(error: Error) {
|
|
throw error;
|
|
},
|
|
// The editor theme
|
|
theme: ExampleTheme,
|
|
};
|
|
|
|
const $updateEditorState = (editor: LexicalEditor) => {
|
|
editor.dispatchCommand(INSERT_TABLE_COMMAND, {
|
|
columns: String(3),
|
|
includeHeaders: true,
|
|
rows: String(3),
|
|
});
|
|
};
|
|
|
|
function InsertTable({
|
|
showTable,
|
|
setShowTable,
|
|
}: {
|
|
showTable: boolean;
|
|
setShowTable: React.Dispatch<React.SetStateAction<boolean>>;
|
|
}) {
|
|
const [editor] = useLexicalComposerContext();
|
|
useEffect(() => {
|
|
if (!showTable) {
|
|
setShowTable(true);
|
|
}
|
|
}, [showTable, setShowTable]);
|
|
|
|
useEffect(() => {
|
|
if (showTable) {
|
|
$updateEditorState(editor);
|
|
}
|
|
}, [editor, showTable]);
|
|
return <></>;
|
|
}
|
|
|
|
function Placeholder() {
|
|
return <div className="editor-placeholder">Enter some rich text...</div>;
|
|
}
|
|
|
|
export default function App() {
|
|
const [showTable, setShowTable] = useState<boolean>(false);
|
|
return (
|
|
<LexicalComposer initialConfig={editorConfig}>
|
|
<div className="editor-container">
|
|
<ToolbarPlugin />
|
|
<div className="editor-inner">
|
|
<RichTextPlugin
|
|
contentEditable={<ContentEditable className="editor-input" />}
|
|
placeholder={<Placeholder />}
|
|
ErrorBoundary={LexicalErrorBoundary}
|
|
/>
|
|
<HistoryPlugin />
|
|
<AutoFocusPlugin />
|
|
<TreeViewPlugin />
|
|
<TablePlugin />
|
|
<InsertTable showTable={showTable} setShowTable={setShowTable} />
|
|
</div>
|
|
</div>
|
|
</LexicalComposer>
|
|
);
|
|
}
|