Simplify your stack and build anything. Or everything.
Build tomorrow’s web with a modern solution you truly own.
Code-based nature means you can build on top of it to power anything.
It’s time to take back your content infrastructure.

Rich Text Editor

The editor is the most important property of the rich text field.

As a key part of Payload, we are proud to offer you the best editing experience you can imagine. With healthy defaults out of the box, but also with the flexibility to customize every detail: from the “/” menu and toolbars (whether inline or fixed) to inserting any component or subfield you can imagine.

To use the rich text editor, first you need to install it:

1
pnpm install @payloadcms/richtext-lexical

Once you have it installed, you can pass it to your top-level Payload Config as follows:

1
import { buildConfig } from 'payload'
2
import { lexicalEditor } from '@payloadcms/richtext-lexical'
3
4
export default buildConfig({
5
collections: [
6
// your collections here
7
],
8
// Pass the Lexical editor to the root config
9
editor: lexicalEditor({}),
10
})

You can also override Lexical settings on a field-by-field basis as follows:

1
import type { CollectionConfig } from 'payload'
2
import { lexicalEditor } from '@payloadcms/richtext-lexical'
3
4
export const Pages: CollectionConfig = {
5
slug: 'pages',
6
fields: [
7
{
8
name: 'content',
9
type: 'richText',
10
// Pass the Lexical editor here and override base settings as necessary
11
editor: lexicalEditor({}),
12
},
13
],
14
}

Extending the lexical editor with Features

Lexical has been designed with extensibility in mind. Whether you're aiming to introduce new functionalities or tweak the existing ones, Lexical makes it seamless for you to bring those changes to life.

Features: The Building Blocks

At the heart of Lexical's customization potential are "features". While Lexical ships with a set of default features we believe are essential for most use cases, the true power lies in your ability to redefine, expand, or prune these as needed.

If you remove all the default features, you're left with a blank editor. You can then add in only the features you need, or you can build your own custom features from scratch.

Integrating New Features

To weave in your custom features, utilize the features prop when initializing the Lexical Editor. Here's a basic example of how this is done:

1
import {
2
BlocksFeature,
3
LinkFeature,
4
UploadFeature,
5
lexicalEditor,
6
} from '@payloadcms/richtext-lexical'
7
import { Banner } from '../blocks/Banner'
8
import { CallToAction } from '../blocks/CallToAction'
9
10
{
11
editor: lexicalEditor({
12
features: ({ defaultFeatures, rootFeatures }) => [
13
...defaultFeatures,
14
LinkFeature({
15
// Example showing how to customize the built-in fields
16
// of the Link feature
17
fields: ({ defaultFields }) => [
18
...defaultFields,
19
{
20
name: 'rel',
21
label: 'Rel Attribute',
22
type: 'select',
23
hasMany: true,
24
options: ['noopener', 'noreferrer', 'nofollow'],
25
admin: {
26
description:
27
'The rel attribute defines the relationship between a linked resource and the current document. This is a custom link field.',
28
},
29
},
30
],
31
}),
32
UploadFeature({
33
collections: {
34
uploads: {
35
// Example showing how to customize the built-in fields
36
// of the Upload feature
37
fields: [
38
{
39
name: 'caption',
40
type: 'richText',
41
editor: lexicalEditor(),
42
},
43
],
44
},
45
},
46
}),
47
// This is incredibly powerful. You can re-use your Payload blocks
48
// directly in the Lexical editor as follows:
49
BlocksFeature({
50
blocks: [Banner, CallToAction],
51
}),
52
],
53
})
54
}

features can be both an array of features, or a function returning an array of features. The function provides the following props:

Prop

Description

defaultFeatures

This opinionated array contains all "recommended" default features. You can see which features are included in the default features in the table below.

rootFeatures

This array contains all features that are enabled in the root richText editor (the one defined in the payload.config.ts). If this field is the root richText editor, or if the root richText editor is not a lexical editor, this array will be empty.

Official Features

You can find more information about the official features in our official features docs.

Creating your own, custom Feature

You can find more information about creating your own feature in our building custom feature docs.

TypeScript

Every single piece of saved data is 100% fully typed within lexical. It provides a type for every single node, which can be imported from @payloadcms/richtext-lexical - each type is prefixed with Serialized, e.g., SerializedUploadNode.

To fully type the entire editor JSON, you can use our TypedEditorState helper type, which accepts a union of all possible node types as a generic. We don't provide a type that already contains all possible node types because they depend on which features you have enabled in your editor. Here is an example:

1
import type {
2
SerializedAutoLinkNode,
3
SerializedBlockNode,
4
SerializedHorizontalRuleNode,
5
SerializedLinkNode,
6
SerializedListItemNode,
7
SerializedListNode,
8
SerializedParagraphNode,
9
SerializedQuoteNode,
10
SerializedRelationshipNode,
11
SerializedTextNode,
12
SerializedUploadNode,
13
TypedEditorState,
14
SerializedHeadingNode,
15
} from '@payloadcms/richtext-lexical'
16
17
const editorState: TypedEditorState<
18
| SerializedAutoLinkNode
19
| SerializedBlockNode
20
| SerializedHorizontalRuleNode
21
| SerializedLinkNode
22
| SerializedListItemNode
23
| SerializedListNode
24
| SerializedParagraphNode
25
| SerializedQuoteNode
26
| SerializedRelationshipNode
27
| SerializedTextNode
28
| SerializedUploadNode
29
| SerializedHeadingNode
30
> = {
31
root: {
32
type: 'root',
33
direction: 'ltr',
34
format: '',
35
indent: 0,
36
version: 1,
37
children: [
38
{
39
children: [
40
{
41
detail: 0,
42
format: 0,
43
mode: 'normal',
44
style: '',
45
text: 'Some text. Every property here is fully-typed',
46
type: 'text',
47
version: 1,
48
},
49
],
50
direction: 'ltr',
51
format: '',
52
indent: 0,
53
type: 'paragraph',
54
textFormat: 0,
55
version: 1,
56
},
57
],
58
},
59
}

Alternatively, you can use the DefaultTypedEditorState type, which includes all types for all nodes included in the defaultFeatures:

1
import type { DefaultTypedEditorState } from '@payloadcms/richtext-lexical'
2
3
const editorState: DefaultTypedEditorState = {
4
root: {
5
type: 'root',
6
direction: 'ltr',
7
format: '',
8
indent: 0,
9
version: 1,
10
children: [
11
{
12
children: [
13
{
14
detail: 0,
15
format: 0,
16
mode: 'normal',
17
style: '',
18
text: 'Some text. Every property here is fully-typed',
19
type: 'text',
20
version: 1,
21
},
22
],
23
direction: 'ltr',
24
format: '',
25
indent: 0,
26
type: 'paragraph',
27
textFormat: 0,
28
version: 1,
29
},
30
],
31
},
32
}

Just like TypedEditorState, the DefaultTypedEditorState also accepts an optional node type union as a generic. Here, this would add the specified node types to the default ones. Example:

1
DefaultTypedEditorState<SerializedBlockNode | YourCustomSerializedNode>

This is a type-safe representation of the editor state. If you look at the auto suggestions of a node's type property, you will see all the possible node types you can use.

Make sure to only use types exported from @payloadcms/richtext-lexical, not from the lexical core packages. We only have control over the types we export and can make sure they're correct, even though the lexical core may export types with identical names.

Automatic type generation

Lexical does not generate accurate type definitions for your richText fields for you yet - this will be improved in the future. Currently, it only outputs the rough shape of the editor JSON, which you can enhance using type assertions.

Admin customization

The Rich Text Field editor configuration has an admin property with the following options:

Property

Description

placeholder

Set this property to define a placeholder string for the field.

hideGutter

Set this property to true to hide this field's gutter within the Admin Panel.

hideInsertParagraphAtEnd

Set this property to true to hide the "+" button that appears at the end of the editor

Disable the gutter

You can disable the gutter (the vertical line padding between the editor and the left edge of the screen) by setting the hideGutter prop to true:

1
{
2
name: 'richText',
3
type: 'richText',
4
editor: lexicalEditor({
5
admin: {
6
hideGutter: true
7
},
8
}),
9
}

Customize the placeholder

You can customize the placeholder (the text that appears in the editor when it's empty) by setting the placeholder prop:

1
{
2
name: 'richText',
3
type: 'richText',
4
editor: lexicalEditor({
5
admin: {
6
placeholder: 'Type your content here...'
7
},
8
}),
9
}

Detecting empty editor state

When you first type into a rich text field and subsequently delete everything through the admin panel, its value changes from null to a JSON object containing an empty paragraph.

If needed, you can reset the field value to null programmatically - for example, by using a custom hook to detect when the editor is empty.

This also applies to fields like text and textArea, which could be stored as either null or an empty value in the database. Since the empty value for richText is a JSON object, checking for emptiness is a bit more involved - so Payload provides a utility for it:

1
import { hasText } from '@payloadcms/richtext-lexical/shared'
2
3
hasText(richtextData)
Next

Lexical Converters