Editable Voids
Nest editors in void nodes.
components/editable-voids-demo.tsx
'use client';
import React, { useState } from 'react';
import type { PlateRenderElementProps } from '@udecode/plate-common/react';
import { Plate, createPlatePlugin } from '@udecode/plate-common/react';
import { Label } from '@/components/plate-ui/label';
import { RadioGroup, RadioGroupItem } from '@/components/ui/radio-group';
import { editorPlugins } from '@/components/editor/plugins/editor-plugins';
import { useCreateEditor } from '@/components/editor/use-create-editor';
import { editableVoidsValue } from '@/components/values/editable-voids-value';
import { Editor, EditorContainer } from '@/components/plate-ui/editor';
import { Input } from '@/components/plate-ui/input';
export const EditableVoidPlugin = createPlatePlugin({
key: 'editable-void',
node: {
component: EditableVoidElement,
isElement: true,
isVoid: true,
},
});
export function EditableVoidElement({
attributes,
children,
}: PlateRenderElementProps) {
const [inputValue, setInputValue] = useState('');
const editor = useCreateEditor({
plugins: editorPlugins,
});
return (
// Need contentEditable=false or Firefox has issues with certain input types.
<div {...attributes} contentEditable={false}>
<div className="mt-2 grid gap-6 rounded-md border p-6 shadow">
<Input
id="name"
className="my-2"
value={inputValue}
onChange={(e) => {
setInputValue(e.target.value);
}}
placeholder="Name"
type="text"
/>
<div className="grid w-full max-w-sm items-center gap-2">
<Label htmlFor="handed">Left or right handed:</Label>
<RadioGroup id="handed" defaultValue="r1">
<div className="flex items-center space-x-2">
<RadioGroupItem id="r1" value="r1" />
<Label htmlFor="r1">Left</Label>
</div>
<div className="flex items-center space-x-2">
<RadioGroupItem id="r2" value="r2" />
<Label htmlFor="r2">Right</Label>
</div>
</RadioGroup>
</div>
<div className="grid gap-2">
<Label htmlFor="editable-void-basic-elements">
Tell us about yourself:
</Label>
<Plate
editor={editor}
// initialValue={basicElementsValue}
>
<EditorContainer>
<Editor />
</EditorContainer>
</Plate>
</div>
</div>
{children}
</div>
);
}
export default function EditableVoidsDemo() {
const editor = useCreateEditor({
plugins: [...editorPlugins, EditableVoidPlugin],
value: editableVoidsValue,
});
return (
<Plate editor={editor}>
<EditorContainer>
<Editor />
</EditorContainer>
</Plate>
);
}