@platejs/plite-dom |
| DOM conversion, clipboard helpers, browser environment helpers |
@platejs/plite-react | <Plite>, <Editable>, React hooks, editor setup |
react, react-dom | React peer packages |
Import the React editor pieces from @platejs/plite-react.
import {
Editable,
Plite,
type PliteValueChangeContext,
usePliteEditor,
} from "@platejs/plite-react";import {
Editable,
Plite,
type PliteValueChangeContext,
usePliteEditor,
} from "@platejs/plite-react";Before we render anything, let's define the document shape for this editor.
type CustomText = { text: string };
type ParagraphElement = { type: "paragraph"; children: CustomText[] };
type CustomValue = ParagraphElement[];
const initialValue: CustomValue = [
{
type: "paragraph",
children: [{ text: "A line of text in a paragraph." }],
},
];type CustomText = { text: string };
type ParagraphElement = { type: "paragraph"; children: CustomText[] };
type CustomValue = ParagraphElement[];
const initialValue: CustomValue = [
{
type: "paragraph",
children: [{ text: "A line of text in a paragraph." }],
},
];CustomValue is the TypeScript shape of this editor's primary document.
Passing it to usePliteEditor keeps element and text types attached to the
editor API.
Call usePliteEditor inside the component so React keeps the same editor
object for the component lifetime.
Render the editor with <Plite> and <Editable>.
const App = () => {
const editor = usePliteEditor<CustomValue>({ initialValue });
return (
<Plite editor={editor}>
<Editable />
</Plite>
);
};const App = () => {
const editor = usePliteEditor<CustomValue>({ initialValue });
return (
<Plite editor={editor}>
<Editable />
</Plite>
);
};The editor is seeded by usePliteEditor({ initialValue }). <Plite>
provides that existing editor to everything underneath it, and <Editable>
renders the editable document surface.
This is the smallest useful Plite editor. If you render App, you should see a paragraph with the text A line of text in a paragraph. When you type, Plite updates the document through the editor runtime.
Most applications save the document value somewhere. Use onValueChange for
a single-root document.
const App = () => {
const editor = usePliteEditor<CustomValue>({ initialValue });
const handleValueChange = ({
value,
}: PliteValueChangeContext<CustomValue>) => {
localStorage.setItem("content", JSON.stringify(value));
};
return (
<Plite editor={editor} onValueChange={handleValueChange}>
<Editable />
</Plite>
);
};const App = () => {
const editor = usePliteEditor<CustomValue>({ initialValue });
const handleValueChange = ({
value,
}: PliteValueChangeContext<CustomValue>) => {
localStorage.setItem("content", JSON.stringify(value));
};
return (
<Plite editor={editor} onValueChange={handleValueChange}>
<Editable />
</Plite>
);
};Use initialValue as the one-shot initial document passed to usePliteEditor.
If your app needs to replace the whole document after the
editor exists, use an explicit editor update instead of treating <Plite> like
a controlled <textarea>.
The editor is rendering plain text. Next, add event handlers so the editor can respond to keyboard shortcuts.