-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathuseYjsCollaboration.tsx
433 lines (390 loc) · 10.8 KB
/
useYjsCollaboration.tsx
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
import type {Binding, Provider, SyncCursorPositionsFn} from '@lexical/yjs';
import type {LexicalEditor} from 'lexical';
import type {JSX} from 'react';
import {mergeRegister} from '@lexical/utils';
import {
CONNECTED_COMMAND,
createUndoManager,
initLocalState,
setLocalStateFocus,
syncCursorPositions,
syncLexicalUpdateToYjs,
syncYjsChangesToLexical,
TOGGLE_CONNECT_COMMAND,
} from '@lexical/yjs';
import {
$createParagraphNode,
$getRoot,
$getSelection,
BLUR_COMMAND,
CAN_REDO_COMMAND,
CAN_UNDO_COMMAND,
COMMAND_PRIORITY_EDITOR,
FOCUS_COMMAND,
REDO_COMMAND,
UNDO_COMMAND,
} from 'lexical';
import * as React from 'react';
import {useCallback, useEffect, useMemo, useRef} from 'react';
import {createPortal} from 'react-dom';
import {Doc, Transaction, UndoManager, YEvent} from 'yjs';
import {InitialEditorStateType} from '../LexicalComposer';
export type CursorsContainerRef = React.MutableRefObject<HTMLElement | null>;
export function useYjsCollaboration(
editor: LexicalEditor,
id: string,
provider: Provider,
docMap: Map<string, Doc>,
name: string,
color: string,
shouldBootstrap: boolean,
binding: Binding,
setDoc: React.Dispatch<React.SetStateAction<Doc | undefined>>,
cursorsContainerRef?: CursorsContainerRef,
initialEditorState?: InitialEditorStateType,
awarenessData?: object,
syncCursorPositionsFn: SyncCursorPositionsFn = syncCursorPositions,
): JSX.Element {
const isReloadingDoc = useRef(false);
const connect = useCallback(() => provider.connect(), [provider]);
const disconnect = useCallback(() => {
try {
provider.disconnect();
} catch (e) {
// Do nothing
}
}, [provider]);
useEffect(() => {
const {root} = binding;
const {awareness} = provider;
const onStatus = ({status}: {status: string}) => {
editor.dispatchCommand(CONNECTED_COMMAND, status === 'connected');
};
const onSync = (isSynced: boolean) => {
if (
shouldBootstrap &&
isSynced &&
root.isEmpty() &&
root._xmlText._length === 0 &&
isReloadingDoc.current === false
) {
initializeEditor(editor, initialEditorState);
}
isReloadingDoc.current = false;
};
const onAwarenessUpdate = () => {
syncCursorPositionsFn(binding, provider);
};
const onYjsTreeChanges = (
// The below `any` type is taken directly from the vendor types for YJS.
// eslint-disable-next-line @typescript-eslint/no-explicit-any
events: Array<YEvent<any>>,
transaction: Transaction,
) => {
const origin = transaction.origin;
if (origin !== binding) {
const isFromUndoManger = origin instanceof UndoManager;
syncYjsChangesToLexical(
binding,
provider,
events,
isFromUndoManger,
syncCursorPositionsFn,
);
}
};
initLocalState(
provider,
name,
color,
document.activeElement === editor.getRootElement(),
awarenessData || {},
);
const onProviderDocReload = (ydoc: Doc) => {
clearEditorSkipCollab(editor, binding);
setDoc(ydoc);
docMap.set(id, ydoc);
isReloadingDoc.current = true;
};
provider.on('reload', onProviderDocReload);
provider.on('status', onStatus);
provider.on('sync', onSync);
awareness.on('update', onAwarenessUpdate);
// This updates the local editor state when we recieve updates from other clients
root.getSharedType().observeDeep(onYjsTreeChanges);
const removeListener = editor.registerUpdateListener(
({
prevEditorState,
editorState,
dirtyLeaves,
dirtyElements,
normalizedNodes,
tags,
}) => {
if (tags.has('skip-collab') === false) {
syncLexicalUpdateToYjs(
binding,
provider,
prevEditorState,
editorState,
dirtyElements,
dirtyLeaves,
normalizedNodes,
tags,
);
}
},
);
const connectionPromise = connect();
return () => {
if (isReloadingDoc.current === false) {
if (connectionPromise) {
connectionPromise.then(disconnect);
} else {
// Workaround for race condition in StrictMode. It's possible there
// is a different race for the above case where connect returns a
// promise, but we don't have an example of that in-repo.
// It's possible that there is a similar issue with
// TOGGLE_CONNECT_COMMAND below when the provider connect returns a
// promise.
// https://github.com/facebook/lexical/issues/6640
disconnect();
}
}
provider.off('sync', onSync);
provider.off('status', onStatus);
provider.off('reload', onProviderDocReload);
awareness.off('update', onAwarenessUpdate);
root.getSharedType().unobserveDeep(onYjsTreeChanges);
docMap.delete(id);
removeListener();
};
}, [
binding,
color,
connect,
disconnect,
docMap,
editor,
id,
initialEditorState,
name,
provider,
shouldBootstrap,
awarenessData,
setDoc,
syncCursorPositionsFn,
]);
const cursorsContainer = useMemo(() => {
const ref = (element: null | HTMLElement) => {
binding.cursorsContainer = element;
};
return createPortal(
<div ref={ref} />,
(cursorsContainerRef && cursorsContainerRef.current) || document.body,
);
}, [binding, cursorsContainerRef]);
useEffect(() => {
return editor.registerCommand(
TOGGLE_CONNECT_COMMAND,
(payload) => {
const shouldConnect = payload;
if (shouldConnect) {
// eslint-disable-next-line no-console
console.log('Collaboration connected!');
connect();
} else {
// eslint-disable-next-line no-console
console.log('Collaboration disconnected!');
disconnect();
}
return true;
},
COMMAND_PRIORITY_EDITOR,
);
}, [connect, disconnect, editor]);
return cursorsContainer;
}
export function useYjsFocusTracking(
editor: LexicalEditor,
provider: Provider,
name: string,
color: string,
awarenessData?: object,
) {
useEffect(() => {
return mergeRegister(
editor.registerCommand(
FOCUS_COMMAND,
() => {
setLocalStateFocus(provider, name, color, true, awarenessData || {});
return false;
},
COMMAND_PRIORITY_EDITOR,
),
editor.registerCommand(
BLUR_COMMAND,
() => {
setLocalStateFocus(provider, name, color, false, awarenessData || {});
return false;
},
COMMAND_PRIORITY_EDITOR,
),
);
}, [color, editor, name, provider, awarenessData]);
}
export function useYjsHistory(
editor: LexicalEditor,
binding: Binding,
): () => void {
const undoManager = useMemo(
() => createUndoManager(binding, binding.root.getSharedType()),
[binding],
);
useEffect(() => {
const undo = () => {
undoManager.undo();
};
const redo = () => {
undoManager.redo();
};
return mergeRegister(
editor.registerCommand(
UNDO_COMMAND,
() => {
undo();
return true;
},
COMMAND_PRIORITY_EDITOR,
),
editor.registerCommand(
REDO_COMMAND,
() => {
redo();
return true;
},
COMMAND_PRIORITY_EDITOR,
),
);
});
const clearHistory = useCallback(() => {
undoManager.clear();
}, [undoManager]);
// Exposing undo and redo states
React.useEffect(() => {
const updateUndoRedoStates = () => {
editor.dispatchCommand(
CAN_UNDO_COMMAND,
undoManager.undoStack.length > 0,
);
editor.dispatchCommand(
CAN_REDO_COMMAND,
undoManager.redoStack.length > 0,
);
};
undoManager.on('stack-item-added', updateUndoRedoStates);
undoManager.on('stack-item-popped', updateUndoRedoStates);
undoManager.on('stack-cleared', updateUndoRedoStates);
return () => {
undoManager.off('stack-item-added', updateUndoRedoStates);
undoManager.off('stack-item-popped', updateUndoRedoStates);
undoManager.off('stack-cleared', updateUndoRedoStates);
};
}, [editor, undoManager]);
return clearHistory;
}
function initializeEditor(
editor: LexicalEditor,
initialEditorState?: InitialEditorStateType,
): void {
editor.update(
() => {
const root = $getRoot();
if (root.isEmpty()) {
if (initialEditorState) {
switch (typeof initialEditorState) {
case 'string': {
const parsedEditorState =
editor.parseEditorState(initialEditorState);
editor.setEditorState(parsedEditorState, {tag: 'history-merge'});
break;
}
case 'object': {
editor.setEditorState(initialEditorState, {tag: 'history-merge'});
break;
}
case 'function': {
editor.update(
() => {
const root1 = $getRoot();
if (root1.isEmpty()) {
initialEditorState(editor);
}
},
{tag: 'history-merge'},
);
break;
}
}
} else {
const paragraph = $createParagraphNode();
root.append(paragraph);
const {activeElement} = document;
if (
$getSelection() !== null ||
(activeElement !== null &&
activeElement === editor.getRootElement())
) {
paragraph.select();
}
}
}
},
{
tag: 'history-merge',
},
);
}
function clearEditorSkipCollab(editor: LexicalEditor, binding: Binding) {
// reset editor state
editor.update(
() => {
const root = $getRoot();
root.clear();
root.select();
},
{
tag: 'skip-collab',
},
);
if (binding.cursors == null) {
return;
}
const cursors = binding.cursors;
if (cursors == null) {
return;
}
const cursorsContainer = binding.cursorsContainer;
if (cursorsContainer == null) {
return;
}
// reset cursors in dom
const cursorsArr = Array.from(cursors.values());
for (let i = 0; i < cursorsArr.length; i++) {
const cursor = cursorsArr[i];
const selection = cursor.selection;
if (selection && selection.selections != null) {
const selections = selection.selections;
for (let j = 0; j < selections.length; j++) {
cursorsContainer.removeChild(selections[i]);
}
}
}
}