File size: 11,222 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 |
# Enabling Collaborative Editing
A common use case for text editors is collaborative editing, and the Slate editor was designed with this in
mind. You can enable multiplayer editing with [Yjs](https://github.com/yjs/yjs), a network-agnostic CRDT implementation
that allows you to share data among connected users. Because Yjs is network-agnostic, each project requires
a [communication provider](https://github.com/yjs/yjs#providers) set up on the back end to link users together.
In this guide, we'll show you how to set up a collaborative Slate editor using a Yjs provider. We'll also be
adding [slate-yjs](https://github.com/BitPhinix/slate-yjs) which allows you to add multiplayer features to Slate, such
as live cursors.
Let's start with a basic editor:
```jsx
import { Slate } from 'slate-react'
const initialValue = {
children: [{ text: '' }],
}
export const CollaborativeEditor = () => {
return <SlateEditor />
}
const SlateEditor = () => {
const [editor] = useState(() => withReact(createEditor()))
return (
<Slate editor={editor} initialValue={initialValue}>
<Editable />
</Slate>
)
}
```
Yjs is network-agnostic, which means each Yjs provider is set up in a slightly different way. For
example [@liveblocks/yjs](https://liveblocks.io/docs/api-reference/liveblocks-yjs) is
fully-hosted, whereas others such as [y-websocket](https://github.com/yjs/y-websocket) require you to host your own
WebSocket server. Because of this, we'll use code snippets that work for each provider, without going into too much
detail about setting up the provider itself.
This is how to connect to a collaborative Yjs document, ready to be used in your Slate editor.
```jsx
import { useEffect, useMemo, useState } from 'react'
import { createEditor, Editor, Transforms } from 'slate'
import { Editable, Slate, withReact } from 'slate-react'
import * as Y from 'yjs'
const initialValue = {
children: [{ text: '' }],
}
export const CollaborativeEditor = () => {
const [connected, setConnected] = useState(false)
const [sharedType, setSharedType] = useState()
const [provider, setProvider] = useState()
// Set up your Yjs provider and document
useEffect(() => {
const yDoc = new Y.Doc()
const sharedDoc = yDoc.get('slate', Y.XmlText)
// Set up your Yjs provider. This line of code is different for each provider.
const yProvider = new YjsProvider(/* ... */)
yProvider.on('sync', setConnected)
setSharedType(sharedDoc)
setProvider(yProvider)
return () => {
yDoc?.destroy()
yProvider?.off('sync', setConnected)
yProvider?.destroy()
}
}, [])
if (!connected || !sharedType || !provider) {
return <div>Loading…</div>
}
return <SlateEditor />
}
const SlateEditor = () => {
const [editor] = useState(() => withReact(createEditor()))
return (
<Slate editor={editor} initialValue={initialValue}>
<Editable />
</Slate>
)
}
```
After setting up your Yjs document like this, you can then link it your editor by passing down `sharedType`, which
contains the multiplayer text, and by using functions from `slate-yjs`. We're also passing down `provider` which will be
helpful later.
```jsx
import { useEffect, useMemo, useState } from 'react'
import { createEditor, Editor, Transforms } from 'slate'
import { Editable, Slate, withReact } from 'slate-react'
import { withYjs, YjsEditor } from '@slate-yjs/core'
import * as Y from 'yjs'
const initialValue = {
children: [{ text: '' }],
}
export const CollaborativeEditor = () => {
const [connected, setConnected] = useState(false)
const [sharedType, setSharedType] = useState()
const [provider, setProvider] = useState()
// Connect to your Yjs provider and document
useEffect(() => {
const yDoc = new Y.Doc()
const sharedDoc = yDoc.get('slate', Y.XmlText)
// Set up your Yjs provider. This line of code is different for each provider.
const yProvider = new YjsProvider(/* ... */)
yProvider.on('sync', setConnected)
setSharedType(sharedDoc)
setProvider(yProvider)
return () => {
yDoc?.destroy()
yProvider?.off('sync', setConnected)
yProvider?.destroy()
}
}, [])
if (!connected || !sharedType || !provider) {
return <div>Loading…</div>
}
return <SlateEditor sharedType={sharedType} provider={provider} />
}
const SlateEditor = ({ sharedType, provider }) => {
const editor = useMemo(() => {
const e = withReact(withYjs(createEditor(), sharedType))
// Ensure editor always has at least 1 valid child
const { normalizeNode } = e
e.normalizeNode = (entry, options) => {
const [node] = entry
if (!Editor.isEditor(node) || node.children.length > 0) {
return normalizeNode(entry, options)
}
Transforms.insertNodes(editor, initialValue, { at: [0] })
}
return e
}, [])
useEffect(() => {
YjsEditor.connect(editor)
return () => YjsEditor.disconnect(editor)
}, [editor])
return (
<Slate editor={editor} initialValue={initialValue}>
<Editable />
</Slate>
)
}
```
That's all you need to attach Yjs to Slate!
Let's look at a real-world example of setting up Yjs—here's a code snippet for setting up
a [Liveblocks provider](https://liveblocks.io/docs/get-started/yjs-slate-react). Liveblocks uses the concept of rooms,
spaces where users can
collaborative. To use a Liveblocks provider, you join a multiplayer room with `RoomProvider`, then pass the room
to `new LiveblocksProvider`, along with the Yjs document.
```jsx
import LiveblocksProvider from '@liveblocks/yjs'
import { RoomProvider, useRoom } from '../liveblocks.config'
// Join a Liveblocks room and show the editor after connecting
export const App = () => {
return (
<RoomProvider id="my-room-name" initialPresence={{}}>
<ClientSideSuspense fallback={<div>Loading…</div>}>
{() => <CollaborativeEditor />}
</ClientSideSuspense>
</RoomProvider>
)
}
export const CollaborativeEditor = () => {
const room = useRoom()
const [connected, setConnected] = useState(false)
const [sharedType, setSharedType] = useState()
const [provider, setProvider] = useState()
// Connect to your Yjs provider and document
useEffect(() => {
const yDoc = new Y.Doc()
const sharedDoc = yDoc.get('slate', Y.XmlText)
// Set up your Liveblocks provider with the current room and document
const yProvider = new LiveblocksProvider(room, yDoc)
yProvider.on('sync', setConnected)
setSharedType(sharedDoc)
setProvider(yProvider)
return () => {
yDoc?.destroy()
yProvider?.off('sync', setConnected)
yProvider?.destroy()
}
}, [room])
if (!connected || !sharedType || !provider) {
return <div>Loading…</div>
}
return <SlateEditor sharedType={sharedType} provider={provider} />
}
const SlateEditor = ({ sharedType, provider }) => {
// ...
}
```
Unlike other providers, Liveblocks hosts your Yjs back end for you, which means you don't need to run your own server
to get this working. For more information on setting up Liveblocks providers, make sure to read
their [Slate getting started](https://liveblocks.io/docs/get-started/yjs-slate-react) guide.
> Note that Liveblocks is independent of the Slate project, and isn't required for collaboration, but it may be
> convenient depending on your needs. [Other providers](https://github.com/yjs/yjs#providers) are available
> should you wish to set up and host a Yjs back end yourself.
After setting up Yjs, it's possible to add multiplayer cursors to your app. You can do this with hooks supplied by
[slate-yjs](), which allow you to find the cursor positions of other users. Here's an example of setting up a cursor
component.
```jsx
import {
CursorOverlayData,
useRemoteCursorOverlayPositions,
} from '@slate-yjs/react'
import { useRef } from 'react'
export function Cursors({ children }) {
const containerRef = useRef(null)
const [cursors] = useRemoteCursorOverlayPositions({ containerRef })
return (
<div className="cursors" ref={containerRef}>
{children}
{cursors.map(cursor => (
<Selection key={cursor.clientId} {...cursor} />
))}
</div>
)
}
function Selection({ data, selectionRects, caretPosition }) {
if (!data) {
return null
}
const selectionStyle = {
backgroundColor: data.color,
}
return (
<>
{selectionRects.map((position, i) => (
<div
style={{ ...selectionStyle, ...position }}
className="selection"
key={i}
/>
))}
{caretPosition && <Caret caretPosition={caretPosition} data={data} />}
</>
)
}
function Caret({ caretPosition, data }) {
const caretStyle = {
...caretPosition,
background: data?.color,
}
const labelStyle = {
transform: 'translateY(-100%)',
background: data?.color,
}
return (
<div style={caretStyle} className="caretMarker">
<div className="caret" style={labelStyle}>
{data?.name}
</div>
</div>
)
}
```
With some matching styles to set up the positioning:
```css
.cursors {
position: relative;
}
.caretMarker {
position: absolute;
width: 2px;
}
.caret {
position: absolute;
font-size: 14px;
color: #fff;
white-space: nowrap;
top: 0;
border-radius: 6px;
border-bottom-left-radius: 0;
padding: 2px 6px;
pointer-events: none;
}
.selection {
position: absolute;
pointer-events: none;
opacity: 0.2;
}
```
You can then import this into your `SlateEditor` component. Notice that we're using `withCursors` from `slate-yjs`,
adding `provider.awareness` and the current user's name to it. We're then wrapping `<Editable>` in the new `<Cursors>`
component we've just created.
```jsx
import { useEffect, useMemo, useState } from 'react'
import { createEditor, Editor, Transforms } from 'slate'
import { Editable, Slate, withReact } from 'slate-react'
import { withCursors, withYjs, YjsEditor } from '@slate-yjs/core'
import { Cursors } from './Cursors'
import * as Y from 'yjs'
export const CollaborativeEditor = () => {
// ...
}
const SlateEditor = ({ sharedType, provider }) => {
const editor = useMemo(() => {
const e = withReact(
withCursors(withYjs(createEditor(), sharedType), provider.awareness, {
// The current user's name and color
data: {
name: 'Chris',
color: '#00ff00',
},
})
)
// Ensure editor always has at least 1 valid child
const { normalizeNode } = e
e.normalizeNode = (entry, options) => {
const [node] = entry
if (!Editor.isEditor(node) || node.children.length > 0) {
return normalizeNode(entry, options)
}
Transforms.insertNodes(editor, initialValue, { at: [0] })
}
return e
}, [])
useEffect(() => {
YjsEditor.connect(editor)
return () => YjsEditor.disconnect(editor)
}, [editor])
return (
<Slate editor={editor} initialValue={initialValue}>
<Cursors>
<Editable />
</Cursors>
</Slate>
)
}
```
You should now be seeing multiplayer cursors! To learn more, make sure to read
the [slate-yjs documentation](https://docs.slate-yjs.dev/).
|