@liveblocks/react-tiptap
provides you with a React
plugin that adds collaboration to any Tiptap text editor.
It also adds realtime cursors, document persistence on the cloud, comments, and
mentions. Read our get started guides to
learn more.
To set up your collaborative Tiptap editor, add
useLiveblocksExtension
to your editor, passing the
return value useEditor
extension array.
Liveblocks Tiptap components should be passed editor
to enable them.
Learn more in our get started guides.
Displays a Composer
near the current Tiptap selection, allowing you to
create threads.
Submitting a comment will attach an annotation thread at the current selection.
Should be passed your Tiptap editor
, and it’s recommended you set a width
value. Display created threads with AnchoredThreads
or
FloatingThreads
.
Display created threads with AnchoredThreads
or FloatingThreads
.
To open the FloatingComposer
, you need to call the addPendingComment
command added by Liveblocks. You
can use liveblocksCommentMark
to check if the current selection is a comment.
Displays floating Thread
components below text highlights in the editor.
Takes a list of threads retrieved from useThreads
and renders them to the
page. Each thread is opened by clicking on its corresponding text highlight.
Should be passed your Tiptap editor
, and it’s recommended you set a width
value.
FloatingThreads
and AnchoredThreads
have been designed to work
together to provide the optimal experience on mobile and desktop. We generally
recommend using both components, hiding one on smaller screens, as we are below
with Tailwind classes. Most apps also don’t need to display resolved threads, so
we can filter those out with a useThreads
option.
We can place this component inside ClientSideSuspense
to prevent it
rendering until threads have loaded.
The FloatingThreads
component acts as a wrapper around each individual
Thread
. You can treat the component like you would a div
, using classes,
listeners, and more.
To apply styling to each Thread
, you can pass a custom Thread
property
to components
and modify this in any way. This is the best way to modify a
thread’s width.
You can return any custom ReactNode
here, including anything from a simple
wrapper around Thread
, up to a full custom Thread
component built using our
Comment primitives.
Displays a list of Thread
components vertically alongside the editor.
Takes a list of threads retrieved from useThreads
and renders them to the
page. Each thread is displayed at the same vertical coordinates as its
corresponding text highlight. If multiple highlights are in the same location,
each thread is placed in order below the previous thread.
FloatingThreads
and AnchoredThreads
have been designed to work
together to provide the optimal experience on mobile and desktop. We generally
recommend using both components, hiding one on smaller screens, as we are below
with Tailwind classes. Most apps also don’t need to display resolved threads, so
we can filter those out with a useThreads
option.
We can place this component inside ClientSideSuspense
to prevent it
rendering until threads have loaded.
The AnchoredThreads
component acts as a wrapper around each Thread
. It
has no width, so setting this is required, and each thread will take on the
width of the wrapper. You can treat the component like you would a div
, using
classes, listeners, and more.
To apply styling to each Thread
, you can pass a custom Thread
property
to components
and modify this in any way.
You can return any custom ReactNode
here, including anything from a simple
wrapper around Thread
, up to a full custom Thread
component built using our
Comment primitives.
Using CSS variables you can modify the gap between threads, and the horizontal offset that’s added when a thread is selected.
The HistoryVersionPreview
component allows you to display a preview of a
specific version of your Tiptap editor's content. It also contains a button and
logic for restoring. It must be used inside the <LiveblocksPlugin>
context. To
render a list of versions, see
VersionHistory
.
The HistoryVersionPreview
component renders a read-only view of the specified
version of the editor content. It also provides a button for users to restore
the displayed version.
Liveblocks plugin for Tiptap that adds collaboration to your editor.
liveblocks
should be passed to Tiptap’s useEditor
as an extension.
Liveblocks Tiptap components should be passed editor
to enable them.
React Tiptap comes with default styles, and these can be imported into the root
of your app or directly into a CSS file with @import
. Note that you must also
install and import a stylesheet from
@liveblocks/react-ui
to use these
styles.
Adding dark mode and customizing your styles is part of @liveblocks/react-ui
,
learn how to do this under
styling and customization.
We use cookies to collect data to improve your experience on our site. Read our Privacy Policy to learn more.