A quick overview of the Text Editor packages for Lexical.
Liveblocks Lexical allows you add collaboration to any Lexical text editor, along with a number of related features. Each collaborative room in your application can store one document each, and these documents are persisted on the cloud, visible on your dashboard, and are integrated into other Liveblocks products such as Comments and Notifications.
Users can be added to your document, and you can tag others inline. You can also easily enable mention suggestions.
Users and mention suggestions can be added with
resolveUsers
,
and
resolveMentionSuggestions
.
Your document can be edited in real-time by multiple users at once. Each user renders a cursors on screen that updates live as they move, select, and edit.
When authenticating your users with
prepareSession
or
identifyUsers
, pass name
and color
properties to their userInfo
to add their cursor information.
Add Comments to your text editor, allowing others to select words in the editor, and leave annotations. Each annotation creates a thread, and inside each you can reply, use emoji reactions, mention others, and more.
Add a floating Comments composer to your text editor using
FloatingComposer
.
You can then create a button that
opens the new annotation composer
for the current selection with OPEN_FLOATING_COMPOSER_COMMAND
.
Add useThreads
alongside
FloatingThreads
and
Anchoredthreads
to render your comments to the page.
FloatingThreads
displays floating threads below text highlights in the editor,
ideal for mobile, whereas AnchoredThreads
displays threads vertically
alongside the editor which is great on desktop.
Add a Notifications UI to your application, and automatically notify users when they’ve been mentioned. Notifications also allows you to trigger sending emails, Slack, or any other kind of notification, using our webhooks.
Notifications is enabled by default, which means you just need to add our UI
components to keep your users notified. Follow our
get started guides to learn how to set up
InboxNotification
.
Inline mentions also trigger
TextMention
notification
webhook events. Learn more about
sending email notifications.
Fetch and modify your text editor’s content from the server, enabling features such as AI agents. Easily make changes that update in real-time for every connected user.
Use
withLexicalDocument
to get your editor’s content and make modifications live.
Liveblocks Lexical automatically creates versions of your document as changes are made. These versions can be easily displayed to users using a few simple components. This allows for a comprehensive version history feature in your collaborative text editor.
To implement version history in your application, you can use the
useHistoryVersions
hook along with the HistoryVersionsList
and
HistoryVersionPreview
components. Here's an example of how to set this up:
In this example, useHistoryVersions
fetches the version history,
HistoryVersionSummaryList
displays a list of available versions, and
HistoryVersionPreview
shows a preview of the selected version. This setup
provides users with an interface to browse through the document's history and
restore different versions.
We use cookies to collect data to improve your experience on our site. Read our Privacy Policy to learn more.