@textbus/collaborate 2.5.6 → 2.5.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -34,962 +34,965 @@ function __metadata(metadataKey, metadataValue) {
34
34
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
35
35
  }
36
36
 
37
- class CollaborateSelectionAwarenessDelegate {
38
- }
39
- let CollaborateCursor = class CollaborateCursor {
40
- constructor(injector, nativeSelection, scheduler, selection, awarenessDelegate = null) {
41
- this.injector = injector;
42
- this.nativeSelection = nativeSelection;
43
- this.scheduler = scheduler;
44
- this.selection = selection;
45
- this.awarenessDelegate = awarenessDelegate;
46
- this.host = createElement('div', {
47
- styles: {
48
- position: 'absolute',
49
- left: 0,
50
- top: 0,
51
- width: '100%',
52
- height: '100%',
53
- pointerEvents: 'none',
54
- zIndex: 1
55
- }
56
- });
57
- this.canvasContainer = createElement('div', {
58
- styles: {
59
- position: 'absolute',
60
- left: 0,
61
- top: 0,
62
- width: '100%',
63
- height: '100%',
64
- overflow: 'hidden'
65
- }
66
- });
67
- this.canvas = createElement('canvas', {
68
- styles: {
69
- position: 'absolute',
70
- opacity: 0.5,
71
- left: 0,
72
- top: 0,
73
- width: '100%',
74
- height: document.documentElement.clientHeight + 'px',
75
- pointerEvents: 'none',
76
- }
77
- });
78
- this.context = this.canvas.getContext('2d');
79
- this.tooltips = createElement('div', {
80
- styles: {
81
- position: 'absolute',
82
- left: 0,
83
- top: 0,
84
- width: '100%',
85
- height: '100%',
86
- pointerEvents: 'none',
87
- fontSize: '12px',
88
- zIndex: 10
89
- }
90
- });
91
- this.onRectsChange = new Subject();
92
- this.subscription = new Subscription();
93
- this.currentSelection = [];
94
- this.container = injector.get(VIEW_CONTAINER);
95
- this.canvasContainer.append(this.canvas);
96
- this.host.append(this.canvasContainer, this.tooltips);
97
- this.container.prepend(this.host);
98
- this.subscription.add(this.onRectsChange.subscribe(rects => {
99
- for (const rect of rects) {
100
- this.context.fillStyle = rect.color;
101
- this.context.beginPath();
102
- this.context.rect(rect.left, rect.top, rect.width, rect.height);
103
- this.context.fill();
104
- this.context.closePath();
105
- }
106
- }), fromEvent(window, 'resize').subscribe(() => {
107
- this.canvas.style.height = document.documentElement.clientHeight + 'px';
108
- this.refresh();
109
- }), this.scheduler.onDocChanged.subscribe(() => {
110
- this.refresh();
111
- }));
112
- }
113
- refresh() {
114
- this.draw(this.currentSelection);
115
- }
116
- destroy() {
117
- this.subscription.unsubscribe();
118
- }
119
- draw(paths) {
120
- this.currentSelection = paths;
121
- const containerRect = this.container.getBoundingClientRect();
122
- this.canvas.style.top = containerRect.top * -1 + 'px';
123
- this.canvas.width = this.canvas.offsetWidth;
124
- this.canvas.height = this.canvas.offsetHeight;
125
- this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
126
- const users = [];
127
- paths.filter(i => {
128
- return i.paths.anchor.length && i.paths.focus.length;
129
- }).forEach(item => {
130
- const anchorPaths = [...item.paths.anchor];
131
- const focusPaths = [...item.paths.focus];
132
- const anchorOffset = anchorPaths.pop();
133
- const anchorSlot = this.selection.findSlotByPaths(anchorPaths);
134
- const focusOffset = focusPaths.pop();
135
- const focusSlot = this.selection.findSlotByPaths(focusPaths);
136
- if (!anchorSlot || !focusSlot) {
137
- return;
138
- }
139
- const { focus, anchor } = this.nativeSelection.getPositionByRange({
140
- focusOffset,
141
- anchorOffset,
142
- focusSlot,
143
- anchorSlot
144
- });
145
- if (!focus || !anchor) {
146
- return;
147
- }
148
- const nativeRange = document.createRange();
149
- nativeRange.setStart(anchor.node, anchor.offset);
150
- nativeRange.setEnd(focus.node, focus.offset);
151
- if ((anchor.node !== focus.node || anchor.offset !== focus.offset) && nativeRange.collapsed) {
152
- nativeRange.setStart(focus.node, focus.offset);
153
- nativeRange.setEnd(anchor.node, anchor.offset);
154
- }
155
- let rects = false;
156
- if (this.awarenessDelegate) {
157
- rects = this.awarenessDelegate.getRects({
158
- focusOffset,
159
- anchorOffset,
160
- focusSlot,
161
- anchorSlot
162
- }, nativeRange);
163
- }
164
- if (!rects) {
165
- rects = nativeRange.getClientRects();
166
- }
167
- const selectionRects = [];
168
- for (let i = rects.length - 1; i >= 0; i--) {
169
- const rect = rects[i];
170
- selectionRects.push({
171
- id: item.id,
172
- color: item.color,
173
- username: item.username,
174
- left: rect.left - containerRect.left,
175
- top: rect.top,
176
- width: rect.width,
177
- height: rect.height,
178
- });
179
- }
180
- this.onRectsChange.next(selectionRects);
181
- const cursorRange = nativeRange.cloneRange();
182
- cursorRange.setStart(focus.node, focus.offset);
183
- cursorRange.collapse(true);
184
- const cursorRect = getLayoutRectByRange(cursorRange);
185
- const rect = {
186
- id: item.id,
187
- username: item.username,
188
- color: item.color,
189
- left: cursorRect.left - containerRect.left,
190
- top: cursorRect.top - containerRect.top,
191
- width: 1,
192
- height: cursorRect.height
193
- };
194
- if (rect.left < 0 || rect.top < 0 || rect.left > containerRect.width) {
195
- return;
196
- }
197
- users.push(rect);
198
- });
199
- this.drawUserCursor(users);
200
- }
201
- drawUserCursor(rects) {
202
- for (let i = 0; i < rects.length; i++) {
203
- const rect = rects[i];
204
- const { cursor, userTip, anchor } = this.getUserCursor(i);
205
- Object.assign(cursor.style, {
206
- left: rect.left + 'px',
207
- top: rect.top + 'px',
208
- width: rect.width + 'px',
209
- height: rect.height + 'px',
210
- background: rect.color,
211
- display: 'block'
212
- });
213
- anchor.style.background = rect.color;
214
- userTip.innerText = rect.username;
215
- userTip.style.background = rect.color;
216
- }
217
- for (let i = rects.length; i < this.tooltips.children.length; i++) {
218
- this.tooltips.removeChild(this.tooltips.children[i]);
219
- }
220
- }
221
- getUserCursor(index) {
222
- let child = this.tooltips.children[index];
223
- if (child) {
224
- const anchor = child.children[0];
225
- return {
226
- cursor: child,
227
- anchor,
228
- userTip: anchor.children[0]
229
- };
230
- }
231
- const userTip = createElement('span', {
232
- styles: {
233
- position: 'absolute',
234
- left: '50%',
235
- transform: 'translateX(-50%)',
236
- marginBottom: '2px',
237
- bottom: '100%',
238
- whiteSpace: 'nowrap',
239
- color: '#fff',
240
- boxShadow: '0 1px 2px rgba(0,0,0,.1)',
241
- opacity: 0.8,
242
- borderRadius: '3px',
243
- padding: '3px 5px',
244
- pointerEvents: 'none',
245
- }
246
- });
247
- const anchor = createElement('span', {
248
- styles: {
249
- position: 'absolute',
250
- top: '-2px',
251
- left: '-2px',
252
- width: '5px',
253
- height: '5px',
254
- borderRadius: '50%',
255
- pointerEvents: 'auto',
256
- pointer: 'cursor',
257
- },
258
- children: [userTip]
259
- });
260
- child = createElement('span', {
261
- styles: {
262
- position: 'absolute',
263
- },
264
- children: [
265
- anchor
266
- ]
267
- });
268
- this.tooltips.append(child);
269
- return {
270
- cursor: child,
271
- anchor,
272
- userTip
273
- };
274
- }
275
- };
276
- CollaborateCursor = __decorate([
277
- Injectable(),
278
- __param(4, Optional()),
279
- __metadata("design:paramtypes", [Injector,
280
- SelectionBridge,
281
- Scheduler,
282
- Selection, Object])
37
+ class CollaborateSelectionAwarenessDelegate {
38
+ }
39
+ let CollaborateCursor = class CollaborateCursor {
40
+ constructor(injector, nativeSelection, scheduler, selection, awarenessDelegate = null) {
41
+ this.injector = injector;
42
+ this.nativeSelection = nativeSelection;
43
+ this.scheduler = scheduler;
44
+ this.selection = selection;
45
+ this.awarenessDelegate = awarenessDelegate;
46
+ this.host = createElement('div', {
47
+ styles: {
48
+ position: 'absolute',
49
+ left: 0,
50
+ top: 0,
51
+ width: '100%',
52
+ height: '100%',
53
+ pointerEvents: 'none',
54
+ zIndex: 1
55
+ }
56
+ });
57
+ this.canvasContainer = createElement('div', {
58
+ styles: {
59
+ position: 'absolute',
60
+ left: 0,
61
+ top: 0,
62
+ width: '100%',
63
+ height: '100%',
64
+ overflow: 'hidden'
65
+ }
66
+ });
67
+ this.canvas = createElement('canvas', {
68
+ styles: {
69
+ position: 'absolute',
70
+ opacity: 0.5,
71
+ left: 0,
72
+ top: 0,
73
+ width: '100%',
74
+ height: document.documentElement.clientHeight + 'px',
75
+ pointerEvents: 'none',
76
+ }
77
+ });
78
+ this.context = this.canvas.getContext('2d');
79
+ this.tooltips = createElement('div', {
80
+ styles: {
81
+ position: 'absolute',
82
+ left: 0,
83
+ top: 0,
84
+ width: '100%',
85
+ height: '100%',
86
+ pointerEvents: 'none',
87
+ fontSize: '12px',
88
+ zIndex: 10
89
+ }
90
+ });
91
+ this.onRectsChange = new Subject();
92
+ this.subscription = new Subscription();
93
+ this.currentSelection = [];
94
+ this.container = injector.get(VIEW_CONTAINER);
95
+ this.canvasContainer.append(this.canvas);
96
+ this.host.append(this.canvasContainer, this.tooltips);
97
+ this.container.prepend(this.host);
98
+ this.subscription.add(this.onRectsChange.subscribe(rects => {
99
+ for (const rect of rects) {
100
+ this.context.fillStyle = rect.color;
101
+ this.context.beginPath();
102
+ this.context.rect(rect.left, rect.top, rect.width, rect.height);
103
+ this.context.fill();
104
+ this.context.closePath();
105
+ }
106
+ }), fromEvent(window, 'resize').subscribe(() => {
107
+ this.canvas.style.height = document.documentElement.clientHeight + 'px';
108
+ this.refresh();
109
+ }), this.scheduler.onDocChanged.subscribe(() => {
110
+ this.refresh();
111
+ }));
112
+ }
113
+ refresh() {
114
+ this.draw(this.currentSelection);
115
+ }
116
+ destroy() {
117
+ this.subscription.unsubscribe();
118
+ }
119
+ draw(paths) {
120
+ this.currentSelection = paths;
121
+ const containerRect = this.container.getBoundingClientRect();
122
+ this.canvas.style.top = containerRect.top * -1 + 'px';
123
+ this.canvas.width = this.canvas.offsetWidth;
124
+ this.canvas.height = this.canvas.offsetHeight;
125
+ this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
126
+ const users = [];
127
+ paths.filter(i => {
128
+ return i.paths.anchor.length && i.paths.focus.length;
129
+ }).forEach(item => {
130
+ const anchorPaths = [...item.paths.anchor];
131
+ const focusPaths = [...item.paths.focus];
132
+ const anchorOffset = anchorPaths.pop();
133
+ const anchorSlot = this.selection.findSlotByPaths(anchorPaths);
134
+ const focusOffset = focusPaths.pop();
135
+ const focusSlot = this.selection.findSlotByPaths(focusPaths);
136
+ if (!anchorSlot || !focusSlot) {
137
+ return;
138
+ }
139
+ const { focus, anchor } = this.nativeSelection.getPositionByRange({
140
+ focusOffset,
141
+ anchorOffset,
142
+ focusSlot,
143
+ anchorSlot
144
+ });
145
+ if (!focus || !anchor) {
146
+ return;
147
+ }
148
+ const nativeRange = document.createRange();
149
+ nativeRange.setStart(anchor.node, anchor.offset);
150
+ nativeRange.setEnd(focus.node, focus.offset);
151
+ if ((anchor.node !== focus.node || anchor.offset !== focus.offset) && nativeRange.collapsed) {
152
+ nativeRange.setStart(focus.node, focus.offset);
153
+ nativeRange.setEnd(anchor.node, anchor.offset);
154
+ }
155
+ let rects = false;
156
+ if (this.awarenessDelegate) {
157
+ rects = this.awarenessDelegate.getRects({
158
+ focusOffset,
159
+ anchorOffset,
160
+ focusSlot,
161
+ anchorSlot
162
+ }, nativeRange);
163
+ }
164
+ if (!rects) {
165
+ rects = nativeRange.getClientRects();
166
+ }
167
+ const selectionRects = [];
168
+ for (let i = rects.length - 1; i >= 0; i--) {
169
+ const rect = rects[i];
170
+ selectionRects.push({
171
+ id: item.id,
172
+ color: item.color,
173
+ username: item.username,
174
+ left: rect.left - containerRect.left,
175
+ top: rect.top,
176
+ width: rect.width,
177
+ height: rect.height,
178
+ });
179
+ }
180
+ this.onRectsChange.next(selectionRects);
181
+ const cursorRange = nativeRange.cloneRange();
182
+ cursorRange.setStart(focus.node, focus.offset);
183
+ cursorRange.collapse(true);
184
+ const cursorRect = getLayoutRectByRange(cursorRange);
185
+ const rect = {
186
+ id: item.id,
187
+ username: item.username,
188
+ color: item.color,
189
+ left: cursorRect.left - containerRect.left,
190
+ top: cursorRect.top - containerRect.top,
191
+ width: 1,
192
+ height: cursorRect.height
193
+ };
194
+ if (rect.left < 0 || rect.top < 0 || rect.left > containerRect.width) {
195
+ return;
196
+ }
197
+ users.push(rect);
198
+ });
199
+ this.drawUserCursor(users);
200
+ }
201
+ drawUserCursor(rects) {
202
+ for (let i = 0; i < rects.length; i++) {
203
+ const rect = rects[i];
204
+ const { cursor, userTip, anchor } = this.getUserCursor(i);
205
+ Object.assign(cursor.style, {
206
+ left: rect.left + 'px',
207
+ top: rect.top + 'px',
208
+ width: rect.width + 'px',
209
+ height: rect.height + 'px',
210
+ background: rect.color,
211
+ display: 'block'
212
+ });
213
+ anchor.style.background = rect.color;
214
+ userTip.innerText = rect.username;
215
+ userTip.style.background = rect.color;
216
+ }
217
+ for (let i = rects.length; i < this.tooltips.children.length; i++) {
218
+ this.tooltips.removeChild(this.tooltips.children[i]);
219
+ }
220
+ }
221
+ getUserCursor(index) {
222
+ let child = this.tooltips.children[index];
223
+ if (child) {
224
+ const anchor = child.children[0];
225
+ return {
226
+ cursor: child,
227
+ anchor,
228
+ userTip: anchor.children[0]
229
+ };
230
+ }
231
+ const userTip = createElement('span', {
232
+ styles: {
233
+ position: 'absolute',
234
+ left: '50%',
235
+ transform: 'translateX(-50%)',
236
+ marginBottom: '2px',
237
+ bottom: '100%',
238
+ whiteSpace: 'nowrap',
239
+ color: '#fff',
240
+ boxShadow: '0 1px 2px rgba(0,0,0,.1)',
241
+ opacity: 0.8,
242
+ borderRadius: '3px',
243
+ padding: '3px 5px',
244
+ pointerEvents: 'none',
245
+ }
246
+ });
247
+ const anchor = createElement('span', {
248
+ styles: {
249
+ position: 'absolute',
250
+ top: '-2px',
251
+ left: '-2px',
252
+ width: '5px',
253
+ height: '5px',
254
+ borderRadius: '50%',
255
+ pointerEvents: 'auto',
256
+ pointer: 'cursor',
257
+ },
258
+ children: [userTip]
259
+ });
260
+ child = createElement('span', {
261
+ styles: {
262
+ position: 'absolute',
263
+ },
264
+ children: [
265
+ anchor
266
+ ]
267
+ });
268
+ this.tooltips.append(child);
269
+ return {
270
+ cursor: child,
271
+ anchor,
272
+ userTip
273
+ };
274
+ }
275
+ };
276
+ CollaborateCursor = __decorate([
277
+ Injectable(),
278
+ __param(4, Optional()),
279
+ __metadata("design:paramtypes", [Injector,
280
+ SelectionBridge,
281
+ Scheduler,
282
+ Selection, Object])
283
283
  ], CollaborateCursor);
284
284
 
285
- function createUnknownComponent(factoryName, canInsertInlineComponent) {
286
- const unknownComponent = defineComponent({
287
- type: canInsertInlineComponent ? ContentType.InlineComponent : ContentType.BlockComponent,
288
- name: 'UnknownComponent',
289
- setup() {
290
- console.error(`cannot find component factory \`${factoryName}\`.`);
291
- return {
292
- render() {
293
- return VElement.createElement('textbus-unknown-component', {
294
- style: {
295
- display: canInsertInlineComponent ? 'inline' : 'block',
296
- color: '#f00'
297
- }
298
- }, unknownComponent.name);
299
- }
300
- };
301
- }
302
- });
303
- return unknownComponent;
285
+ function createUnknownComponent(factoryName, canInsertInlineComponent) {
286
+ const unknownComponent = defineComponent({
287
+ type: canInsertInlineComponent ? ContentType.InlineComponent : ContentType.BlockComponent,
288
+ name: 'UnknownComponent',
289
+ setup() {
290
+ console.error(`cannot find component factory \`${factoryName}\`.`);
291
+ return {
292
+ render() {
293
+ return VElement.createElement('textbus-unknown-component', {
294
+ style: {
295
+ display: canInsertInlineComponent ? 'inline' : 'block',
296
+ color: '#f00'
297
+ }
298
+ }, unknownComponent.name);
299
+ }
300
+ };
301
+ }
302
+ });
303
+ return unknownComponent;
304
304
  }
305
305
 
306
- const collaborateErrorFn = makeError('Collaborate');
307
- class ContentMap {
308
- constructor() {
309
- this.slotAndYTextMap = new WeakMap();
310
- this.yTextAndSLotMap = new WeakMap();
311
- }
312
- set(key, value) {
313
- if (key instanceof Slot) {
314
- this.slotAndYTextMap.set(key, value);
315
- this.yTextAndSLotMap.set(value, key);
316
- }
317
- else {
318
- this.slotAndYTextMap.set(value, key);
319
- this.yTextAndSLotMap.set(key, value);
320
- }
321
- }
322
- get(key) {
323
- if (key instanceof Slot) {
324
- return this.slotAndYTextMap.get(key) || null;
325
- }
326
- return this.yTextAndSLotMap.get(key) || null;
327
- }
328
- delete(key) {
329
- if (key instanceof Slot) {
330
- const v = this.slotAndYTextMap.get(key);
331
- this.slotAndYTextMap.delete(key);
332
- if (v) {
333
- this.yTextAndSLotMap.delete(v);
334
- }
335
- }
336
- else {
337
- const v = this.yTextAndSLotMap.get(key);
338
- this.yTextAndSLotMap.delete(key);
339
- if (v) {
340
- this.slotAndYTextMap.delete(v);
341
- }
342
- }
343
- }
344
- }
345
- let Collaborate = class Collaborate {
346
- constructor(stackSize, rootComponentRef, collaborateCursor, controller, scheduler, translator, registry, selection, starter) {
347
- this.stackSize = stackSize;
348
- this.rootComponentRef = rootComponentRef;
349
- this.collaborateCursor = collaborateCursor;
350
- this.controller = controller;
351
- this.scheduler = scheduler;
352
- this.translator = translator;
353
- this.registry = registry;
354
- this.selection = selection;
355
- this.starter = starter;
356
- this.yDoc = new Doc();
357
- this.backEvent = new Subject();
358
- this.forwardEvent = new Subject();
359
- this.changeEvent = new Subject();
360
- this.pushEvent = new Subject();
361
- this.manager = null;
362
- this.subscriptions = [];
363
- this.updateFromRemote = false;
364
- this.contentSyncCaches = new WeakMap();
365
- this.slotStateSyncCaches = new WeakMap();
366
- this.slotsSyncCaches = new WeakMap();
367
- this.componentStateSyncCaches = new WeakMap();
368
- this.selectionChangeEvent = new Subject();
369
- this.contentMap = new ContentMap();
370
- this.updateRemoteActions = [];
371
- this.noRecord = {};
372
- this.onSelectionChange = this.selectionChangeEvent.asObservable().pipe(delay());
373
- this.onBack = this.backEvent.asObservable();
374
- this.onForward = this.forwardEvent.asObservable();
375
- this.onChange = this.changeEvent.asObservable();
376
- this.onPush = this.pushEvent.asObservable();
377
- }
378
- get canBack() {
379
- var _a;
380
- return ((_a = this.manager) === null || _a === void 0 ? void 0 : _a.canUndo()) || false;
381
- }
382
- get canForward() {
383
- var _a;
384
- return ((_a = this.manager) === null || _a === void 0 ? void 0 : _a.canRedo()) || false;
385
- }
386
- listen() {
387
- const root = this.yDoc.getMap('RootComponent');
388
- const rootComponent = this.rootComponentRef.component;
389
- this.manager = new UndoManager(root, {
390
- trackedOrigins: new Set([this.yDoc])
391
- });
392
- const cursorKey = 'cursor-position';
393
- this.manager.on('stack-item-added', event => {
394
- event.stackItem.meta.set(cursorKey, this.getRelativeCursorLocation());
395
- if (this.manager.undoStack.length > this.stackSize) {
396
- this.manager.undoStack.shift();
397
- }
398
- if (event.origin === this.yDoc) {
399
- this.pushEvent.next();
400
- }
401
- this.changeEvent.next();
402
- });
403
- this.manager.on('stack-item-popped', event => {
404
- const position = event.stackItem.meta.get(cursorKey);
405
- if (position) {
406
- this.restoreCursorLocation(position);
407
- }
408
- });
409
- this.subscriptions.push(this.selection.onChange.subscribe(() => {
410
- const paths = this.selection.getPaths();
411
- this.selectionChangeEvent.next(paths);
412
- }), this.scheduler.onDocChanged.pipe(map(item => {
413
- return item.filter(i => {
414
- return i.from !== ChangeOrigin.Remote;
415
- });
416
- }), filter(item => {
417
- return item.length;
418
- })).subscribe(() => {
419
- const updates = [];
420
- let update = null;
421
- for (const item of this.updateRemoteActions) {
422
- if (!update) {
423
- update = {
424
- record: item.record,
425
- actions: []
426
- };
427
- updates.push(update);
428
- }
429
- if (update.record === item.record) {
430
- update.actions.push(item.action);
431
- }
432
- else {
433
- update = {
434
- record: item.record,
435
- actions: [item.action]
436
- };
437
- updates.push(update);
438
- }
439
- }
440
- this.updateRemoteActions = [];
441
- for (const item of updates) {
442
- this.yDoc.transact(() => {
443
- item.actions.forEach(fn => {
444
- fn();
445
- });
446
- }, item.record ? this.yDoc : this.noRecord);
447
- }
448
- }));
449
- this.syncRootComponent(root, rootComponent);
450
- }
451
- updateRemoteSelection(paths) {
452
- this.collaborateCursor.draw(paths);
453
- }
454
- back() {
455
- var _a;
456
- if (this.canBack) {
457
- (_a = this.manager) === null || _a === void 0 ? void 0 : _a.undo();
458
- this.backEvent.next();
459
- }
460
- }
461
- forward() {
462
- var _a;
463
- if (this.canForward) {
464
- (_a = this.manager) === null || _a === void 0 ? void 0 : _a.redo();
465
- this.forwardEvent.next();
466
- }
467
- }
468
- clear() {
469
- var _a;
470
- (_a = this.manager) === null || _a === void 0 ? void 0 : _a.clear();
471
- this.changeEvent.next();
472
- }
473
- destroy() {
474
- var _a;
475
- this.subscriptions.forEach(i => i.unsubscribe());
476
- this.collaborateCursor.destroy();
477
- (_a = this.manager) === null || _a === void 0 ? void 0 : _a.destroy();
478
- }
479
- syncRootComponent(root, rootComponent) {
480
- let slots = root.get('slots');
481
- if (!slots) {
482
- slots = new Array();
483
- rootComponent.slots.toArray().forEach(i => {
484
- const sharedSlot = this.createSharedSlotBySlot(i);
485
- slots.push([sharedSlot]);
486
- });
487
- this.yDoc.transact(() => {
488
- root.set('state', rootComponent.state);
489
- root.set('slots', slots);
490
- });
491
- }
492
- else if (slots.length === 0) {
493
- rootComponent.updateState(() => {
494
- return root.get('state');
495
- });
496
- this.yDoc.transact(() => {
497
- rootComponent.slots.toArray().forEach(i => {
498
- const sharedSlot = this.createSharedSlotBySlot(i);
499
- slots.push([sharedSlot]);
500
- });
501
- });
502
- }
503
- else {
504
- rootComponent.updateState(() => {
505
- return root.get('state');
506
- });
507
- rootComponent.slots.clean();
508
- slots.forEach(sharedSlot => {
509
- const slot = this.createSlotBySharedSlot(sharedSlot);
510
- this.syncContent(sharedSlot.get('content'), slot);
511
- this.syncSlot(sharedSlot, slot);
512
- rootComponent.slots.insert(slot);
513
- });
514
- }
515
- this.syncComponent(root, rootComponent);
516
- this.syncSlots(slots, rootComponent);
517
- }
518
- restoreCursorLocation(position) {
519
- const anchorPosition = createAbsolutePositionFromRelativePosition(position.anchor, this.yDoc);
520
- const focusPosition = createAbsolutePositionFromRelativePosition(position.focus, this.yDoc);
521
- if (anchorPosition && focusPosition) {
522
- const focusSlot = this.contentMap.get(focusPosition.type);
523
- const anchorSlot = this.contentMap.get(anchorPosition.type);
524
- if (focusSlot && anchorSlot) {
525
- this.selection.setBaseAndExtent(anchorSlot, anchorPosition.index, focusSlot, focusPosition.index);
526
- return;
527
- }
528
- }
529
- this.selection.unSelect();
530
- }
531
- getRelativeCursorLocation() {
532
- const { anchorSlot, anchorOffset, focusSlot, focusOffset } = this.selection;
533
- if (anchorSlot) {
534
- const anchorYText = this.contentMap.get(anchorSlot);
535
- if (anchorYText) {
536
- const anchorPosition = createRelativePositionFromTypeIndex(anchorYText, anchorOffset);
537
- if (focusSlot) {
538
- const focusYText = this.contentMap.get(focusSlot);
539
- if (focusYText) {
540
- const focusPosition = createRelativePositionFromTypeIndex(focusYText, focusOffset);
541
- return {
542
- focus: focusPosition,
543
- anchor: anchorPosition
544
- };
545
- }
546
- }
547
- }
548
- }
549
- return null;
550
- }
551
- syncContent(content, slot) {
552
- this.contentMap.set(slot, content);
553
- const syncRemote = (ev, tr) => {
554
- this.runRemoteUpdate(tr, () => {
555
- slot.retain(0);
556
- ev.delta.forEach(action => {
557
- if (Reflect.has(action, 'retain')) {
558
- if (action.attributes) {
559
- const formats = remoteFormatsToLocal(this.registry, action.attributes);
560
- if (formats.length) {
561
- slot.retain(action.retain, formats);
562
- }
563
- slot.retain(slot.index + action.retain);
564
- }
565
- else {
566
- slot.retain(action.retain);
567
- }
568
- }
569
- else if (action.insert) {
570
- const index = slot.index;
571
- let length = 1;
572
- if (typeof action.insert === 'string') {
573
- length = action.insert.length;
574
- slot.insert(action.insert, remoteFormatsToLocal(this.registry, action.attributes));
575
- }
576
- else {
577
- const sharedComponent = action.insert;
578
- const canInsertInlineComponent = slot.schema.includes(ContentType.InlineComponent);
579
- const component = this.createComponentBySharedComponent(sharedComponent, canInsertInlineComponent);
580
- this.syncSlots(sharedComponent.get('slots'), component);
581
- this.syncComponent(sharedComponent, component);
582
- slot.insert(component);
583
- }
584
- if (this.selection.isSelected) {
585
- if (slot === this.selection.anchorSlot && this.selection.anchorOffset > index) {
586
- this.selection.setAnchor(slot, this.selection.anchorOffset + length);
587
- }
588
- if (slot === this.selection.focusSlot && this.selection.focusOffset > index) {
589
- this.selection.setFocus(slot, this.selection.focusOffset + length);
590
- }
591
- }
592
- }
593
- else if (action.delete) {
594
- const index = slot.index;
595
- slot.retain(slot.index);
596
- slot.delete(action.delete);
597
- if (this.selection.isSelected) {
598
- if (slot === this.selection.anchorSlot && this.selection.anchorOffset >= index) {
599
- this.selection.setAnchor(slot, this.selection.startOffset - action.delete);
600
- }
601
- if (slot === this.selection.focusSlot && this.selection.focusOffset >= index) {
602
- this.selection.setFocus(slot, this.selection.focusOffset - action.delete);
603
- }
604
- }
605
- }
606
- else if (action.attributes) {
607
- slot.updateState(draft => {
608
- if (typeof draft === 'object' && draft !== null) {
609
- Object.assign(draft, action.attributes);
610
- }
611
- else {
612
- return action.attributes;
613
- }
614
- });
615
- }
616
- });
617
- });
618
- };
619
- content.observe(syncRemote);
620
- const sub = slot.onContentChange.subscribe(actions => {
621
- this.runLocalUpdate(() => {
622
- var _a;
623
- let offset = 0;
624
- let length = 0;
625
- for (const action of actions) {
626
- if (action.type === 'retain') {
627
- const formats = action.formats;
628
- if (formats) {
629
- const keys = Object.keys(formats);
630
- let length = keys.length;
631
- keys.forEach(key => {
632
- const formatter = this.registry.getFormatter(key);
633
- if (!formatter) {
634
- length--;
635
- Reflect.deleteProperty(formats, key);
636
- }
637
- });
638
- if (length) {
639
- content.format(offset, action.offset, formats);
640
- }
641
- }
642
- else {
643
- offset = action.offset;
644
- }
645
- }
646
- else if (action.type === 'insert') {
647
- const delta = content.toDelta();
648
- const isEmpty = delta.length === 1 && delta[0].insert === Slot.emptyPlaceholder;
649
- if (typeof action.content === 'string') {
650
- length = action.content.length;
651
- content.insert(offset, action.content, action.formats || {});
652
- }
653
- else {
654
- length = 1;
655
- const sharedComponent = this.createSharedComponentByComponent(action.ref);
656
- content.insertEmbed(offset, sharedComponent, action.formats || {});
657
- }
658
- if (isEmpty && offset === 0) {
659
- content.delete(content.length - 1, 1);
660
- }
661
- offset += length;
662
- }
663
- else if (action.type === 'delete') {
664
- const delta = content.toDelta();
665
- if (content.length) {
666
- content.delete(offset, action.count);
667
- }
668
- if (content.length === 0) {
669
- content.insert(0, '\n', (_a = delta[0]) === null || _a === void 0 ? void 0 : _a.attributes);
670
- }
671
- }
672
- }
673
- });
674
- });
675
- sub.add(slot.onChildComponentRemove.subscribe(components => {
676
- components.forEach(c => {
677
- this.cleanSubscriptionsByComponent(c);
678
- });
679
- }));
680
- this.contentSyncCaches.set(slot, () => {
681
- content.unobserve(syncRemote);
682
- sub.unsubscribe();
683
- });
684
- }
685
- syncSlot(remoteSlot, slot) {
686
- const syncRemote = (ev, tr) => {
687
- this.runRemoteUpdate(tr, () => {
688
- ev.keysChanged.forEach(key => {
689
- if (key === 'state') {
690
- const state = ev.target.get('state');
691
- slot.updateState(draft => {
692
- if (typeof draft === 'object' && draft !== null) {
693
- Object.assign(draft, state);
694
- }
695
- else {
696
- return state;
697
- }
698
- });
699
- }
700
- });
701
- });
702
- };
703
- remoteSlot.observe(syncRemote);
704
- const sub = slot.onStateChange.subscribe(change => {
705
- this.runLocalUpdate(() => {
706
- remoteSlot.set('state', change.newState);
707
- }, change.record);
708
- });
709
- this.slotStateSyncCaches.set(slot, () => {
710
- remoteSlot.unobserve(syncRemote);
711
- sub.unsubscribe();
712
- });
713
- }
714
- syncSlots(remoteSlots, component) {
715
- const slots = component.slots;
716
- const syncRemote = (ev, tr) => {
717
- this.runRemoteUpdate(tr, () => {
718
- let index = 0;
719
- slots.retain(index);
720
- ev.delta.forEach(action => {
721
- if (Reflect.has(action, 'retain')) {
722
- index += action.retain;
723
- slots.retain(index);
724
- }
725
- else if (action.insert) {
726
- action.insert.forEach(item => {
727
- const slot = this.createSlotBySharedSlot(item);
728
- slots.insert(slot);
729
- this.syncContent(item.get('content'), slot);
730
- this.syncSlot(item, slot);
731
- index++;
732
- });
733
- }
734
- else if (action.delete) {
735
- slots.retain(index);
736
- slots.delete(action.delete);
737
- }
738
- });
739
- });
740
- };
741
- remoteSlots.observe(syncRemote);
742
- const sub = slots.onChange.subscribe(operations => {
743
- this.runLocalUpdate(() => {
744
- const applyActions = operations.apply;
745
- let index;
746
- applyActions.forEach(action => {
747
- if (action.type === 'retain') {
748
- index = action.offset;
749
- }
750
- else if (action.type === 'insertSlot') {
751
- const sharedSlot = this.createSharedSlotBySlot(action.ref);
752
- remoteSlots.insert(index, [sharedSlot]);
753
- index++;
754
- }
755
- else if (action.type === 'delete') {
756
- remoteSlots.delete(index, action.count);
757
- }
758
- });
759
- });
760
- });
761
- sub.add(slots.onChildSlotRemove.subscribe(slots => {
762
- slots.forEach(slot => {
763
- this.cleanSubscriptionsBySlot(slot);
764
- });
765
- }));
766
- this.slotsSyncCaches.set(component, () => {
767
- remoteSlots.unobserve(syncRemote);
768
- sub.unsubscribe();
769
- });
770
- }
771
- syncComponent(remoteComponent, component) {
772
- const syncRemote = (ev, tr) => {
773
- this.runRemoteUpdate(tr, () => {
774
- ev.keysChanged.forEach(key => {
775
- if (key === 'state') {
776
- const state = ev.target.get('state');
777
- component.updateState(draft => {
778
- if (typeof draft === 'object' && draft !== null) {
779
- Object.assign(draft, state);
780
- }
781
- else {
782
- return state;
783
- }
784
- });
785
- }
786
- });
787
- });
788
- };
789
- remoteComponent.observe(syncRemote);
790
- const sub = component.onStateChange.subscribe(change => {
791
- this.runLocalUpdate(() => {
792
- remoteComponent.set('state', change.newState);
793
- }, change.record);
794
- });
795
- this.componentStateSyncCaches.set(component, () => {
796
- remoteComponent.unobserve(syncRemote);
797
- sub.unsubscribe();
798
- });
799
- }
800
- runLocalUpdate(fn, record = true) {
801
- if (this.updateFromRemote || this.controller.readonly) {
802
- return;
803
- }
804
- this.updateRemoteActions.push({
805
- record,
806
- action: fn
807
- });
808
- }
809
- runRemoteUpdate(tr, fn) {
810
- if (tr.origin === this.yDoc) {
811
- return;
812
- }
813
- this.updateFromRemote = true;
814
- if (tr.origin === this.manager) {
815
- this.scheduler.historyApplyTransact(fn);
816
- }
817
- else {
818
- this.scheduler.remoteUpdateTransact(fn);
819
- }
820
- this.updateFromRemote = false;
821
- }
822
- createSharedComponentByComponent(component) {
823
- const sharedComponent = new Map();
824
- sharedComponent.set('state', component.state);
825
- sharedComponent.set('name', component.name);
826
- const sharedSlots = new Array();
827
- sharedComponent.set('slots', sharedSlots);
828
- component.slots.toArray().forEach(slot => {
829
- const sharedSlot = this.createSharedSlotBySlot(slot);
830
- sharedSlots.push([sharedSlot]);
831
- });
832
- this.syncSlots(sharedSlots, component);
833
- this.syncComponent(sharedComponent, component);
834
- return sharedComponent;
835
- }
836
- createSharedSlotBySlot(slot) {
837
- const sharedSlot = new Map();
838
- sharedSlot.set('schema', slot.schema);
839
- sharedSlot.set('state', slot.state);
840
- const sharedContent = new Text();
841
- sharedSlot.set('content', sharedContent);
842
- let offset = 0;
843
- slot.toDelta().forEach(i => {
844
- let formats = {};
845
- if (i.formats) {
846
- i.formats.forEach(item => {
847
- formats[item[0].name] = item[1];
848
- });
849
- }
850
- else {
851
- formats = null;
852
- }
853
- if (typeof i.insert === 'string') {
854
- sharedContent.insert(offset, i.insert, formats);
855
- }
856
- else {
857
- const sharedComponent = this.createSharedComponentByComponent(i.insert);
858
- sharedContent.insertEmbed(offset, sharedComponent, formats);
859
- }
860
- offset += i.insert.length;
861
- });
862
- this.syncContent(sharedContent, slot);
863
- this.syncSlot(sharedSlot, slot);
864
- return sharedSlot;
865
- }
866
- createComponentBySharedComponent(yMap, canInsertInlineComponent) {
867
- const sharedSlots = yMap.get('slots');
868
- const slots = [];
869
- sharedSlots.forEach(sharedSlot => {
870
- const slot = this.createSlotBySharedSlot(sharedSlot);
871
- slots.push(slot);
872
- });
873
- const name = yMap.get('name');
874
- const state = yMap.get('state');
875
- const instance = this.translator.createComponentByData(name, {
876
- state,
877
- slots
878
- });
879
- if (instance) {
880
- instance.slots.toArray().forEach((slot, index) => {
881
- let sharedSlot = sharedSlots.get(index);
882
- if (!sharedSlot) {
883
- sharedSlot = this.createSharedSlotBySlot(slot);
884
- sharedSlots.push([sharedSlot]);
885
- }
886
- this.syncSlot(sharedSlot, slot);
887
- this.syncContent(sharedSlot.get('content'), slot);
888
- });
889
- return instance;
890
- }
891
- return createUnknownComponent(name, canInsertInlineComponent).createInstance(this.starter);
892
- }
893
- createSlotBySharedSlot(sharedSlot) {
894
- const content = sharedSlot.get('content');
895
- const delta = content.toDelta();
896
- const slot = this.translator.createSlot({
897
- schema: sharedSlot.get('schema'),
898
- state: sharedSlot.get('state'),
899
- formats: {},
900
- content: []
901
- });
902
- for (const action of delta) {
903
- if (action.insert) {
904
- if (typeof action.insert === 'string') {
905
- const blockFormats = [];
906
- const formats = remoteFormatsToLocal(this.registry, action.attributes).filter(item => {
907
- if (item[0].type === FormatType.Block) {
908
- blockFormats.push(item);
909
- return false;
910
- }
911
- return true;
912
- });
913
- slot.insert(action.insert, formats);
914
- const index = slot.index;
915
- blockFormats.forEach(item => {
916
- slot.setAttribute(item[0], item[1]);
917
- });
918
- slot.retain(index);
919
- }
920
- else {
921
- const sharedComponent = action.insert;
922
- const canInsertInlineComponent = slot.schema.includes(ContentType.InlineComponent);
923
- const component = this.createComponentBySharedComponent(sharedComponent, canInsertInlineComponent);
924
- slot.insert(component, remoteFormatsToLocal(this.registry, action.attributes));
925
- this.syncSlots(sharedComponent.get('slots'), component);
926
- this.syncComponent(sharedComponent, component);
927
- }
928
- }
929
- else {
930
- throw collaborateErrorFn('unexpected delta action.');
931
- }
932
- }
933
- return slot;
934
- }
935
- cleanSubscriptionsBySlot(slot) {
936
- this.contentMap.delete(slot);
937
- [this.contentSyncCaches.get(slot), this.slotStateSyncCaches.get(slot)].forEach(fn => {
938
- if (fn) {
939
- fn();
940
- }
941
- });
942
- slot.sliceContent().forEach(i => {
943
- if (typeof i !== 'string') {
944
- this.cleanSubscriptionsByComponent(i);
945
- }
946
- });
947
- }
948
- cleanSubscriptionsByComponent(component) {
949
- [this.slotsSyncCaches.get(component), this.componentStateSyncCaches.get(component)].forEach(fn => {
950
- if (fn) {
951
- fn();
952
- }
953
- });
954
- component.slots.toArray().forEach(slot => {
955
- this.cleanSubscriptionsBySlot(slot);
956
- });
957
- }
958
- };
959
- Collaborate = __decorate([
960
- Injectable(),
961
- __param(0, Inject(HISTORY_STACK_SIZE)),
962
- __metadata("design:paramtypes", [Number, RootComponentRef,
963
- CollaborateCursor,
964
- Controller,
965
- Scheduler,
966
- Translator,
967
- Registry,
968
- Selection,
969
- Starter])
970
- ], Collaborate);
971
- function remoteFormatsToLocal(registry, attrs) {
972
- const formats = [];
973
- if (attrs) {
974
- Object.keys(attrs).forEach(key => {
975
- const formatter = registry.getFormatter(key);
976
- if (formatter) {
977
- formats.push([formatter, attrs[key]]);
978
- }
979
- });
980
- }
981
- return formats;
306
+ const collaborateErrorFn = makeError('Collaborate');
307
+ class ContentMap {
308
+ constructor() {
309
+ this.slotAndYTextMap = new WeakMap();
310
+ this.yTextAndSLotMap = new WeakMap();
311
+ }
312
+ set(key, value) {
313
+ if (key instanceof Slot) {
314
+ this.slotAndYTextMap.set(key, value);
315
+ this.yTextAndSLotMap.set(value, key);
316
+ }
317
+ else {
318
+ this.slotAndYTextMap.set(value, key);
319
+ this.yTextAndSLotMap.set(key, value);
320
+ }
321
+ }
322
+ get(key) {
323
+ if (key instanceof Slot) {
324
+ return this.slotAndYTextMap.get(key) || null;
325
+ }
326
+ return this.yTextAndSLotMap.get(key) || null;
327
+ }
328
+ delete(key) {
329
+ if (key instanceof Slot) {
330
+ const v = this.slotAndYTextMap.get(key);
331
+ this.slotAndYTextMap.delete(key);
332
+ if (v) {
333
+ this.yTextAndSLotMap.delete(v);
334
+ }
335
+ }
336
+ else {
337
+ const v = this.yTextAndSLotMap.get(key);
338
+ this.yTextAndSLotMap.delete(key);
339
+ if (v) {
340
+ this.slotAndYTextMap.delete(v);
341
+ }
342
+ }
343
+ }
344
+ }
345
+ let Collaborate = class Collaborate {
346
+ constructor(stackSize, rootComponentRef, collaborateCursor, controller, scheduler, translator, registry, selection, starter) {
347
+ this.stackSize = stackSize;
348
+ this.rootComponentRef = rootComponentRef;
349
+ this.collaborateCursor = collaborateCursor;
350
+ this.controller = controller;
351
+ this.scheduler = scheduler;
352
+ this.translator = translator;
353
+ this.registry = registry;
354
+ this.selection = selection;
355
+ this.starter = starter;
356
+ this.yDoc = new Doc();
357
+ this.backEvent = new Subject();
358
+ this.forwardEvent = new Subject();
359
+ this.changeEvent = new Subject();
360
+ this.pushEvent = new Subject();
361
+ this.manager = null;
362
+ this.subscriptions = [];
363
+ this.updateFromRemote = false;
364
+ this.contentSyncCaches = new WeakMap();
365
+ this.slotStateSyncCaches = new WeakMap();
366
+ this.slotsSyncCaches = new WeakMap();
367
+ this.componentStateSyncCaches = new WeakMap();
368
+ this.localChangesAppliedEvent = new Subject();
369
+ this.selectionChangeEvent = new Subject();
370
+ this.contentMap = new ContentMap();
371
+ this.updateRemoteActions = [];
372
+ this.noRecord = {};
373
+ this.onSelectionChange = this.selectionChangeEvent.asObservable().pipe(delay());
374
+ this.onBack = this.backEvent.asObservable();
375
+ this.onForward = this.forwardEvent.asObservable();
376
+ this.onChange = this.changeEvent.asObservable();
377
+ this.onPush = this.pushEvent.asObservable();
378
+ this.onLocalChangesApplied = this.localChangesAppliedEvent.asObservable();
379
+ }
380
+ get canBack() {
381
+ var _a;
382
+ return ((_a = this.manager) === null || _a === void 0 ? void 0 : _a.canUndo()) || false;
383
+ }
384
+ get canForward() {
385
+ var _a;
386
+ return ((_a = this.manager) === null || _a === void 0 ? void 0 : _a.canRedo()) || false;
387
+ }
388
+ listen() {
389
+ const root = this.yDoc.getMap('RootComponent');
390
+ const rootComponent = this.rootComponentRef.component;
391
+ this.manager = new UndoManager(root, {
392
+ trackedOrigins: new Set([this.yDoc])
393
+ });
394
+ const cursorKey = 'cursor-position';
395
+ this.manager.on('stack-item-added', event => {
396
+ event.stackItem.meta.set(cursorKey, this.getRelativeCursorLocation());
397
+ if (this.manager.undoStack.length > this.stackSize) {
398
+ this.manager.undoStack.shift();
399
+ }
400
+ if (event.origin === this.yDoc) {
401
+ this.pushEvent.next();
402
+ }
403
+ this.changeEvent.next();
404
+ });
405
+ this.manager.on('stack-item-popped', event => {
406
+ const position = event.stackItem.meta.get(cursorKey);
407
+ if (position) {
408
+ this.restoreCursorLocation(position);
409
+ }
410
+ });
411
+ this.subscriptions.push(this.selection.onChange.subscribe(() => {
412
+ const paths = this.selection.getPaths();
413
+ this.selectionChangeEvent.next(paths);
414
+ }), this.scheduler.onDocChanged.pipe(map(item => {
415
+ return item.filter(i => {
416
+ return i.from !== ChangeOrigin.Remote;
417
+ });
418
+ }), filter(item => {
419
+ return item.length;
420
+ })).subscribe(() => {
421
+ const updates = [];
422
+ let update = null;
423
+ for (const item of this.updateRemoteActions) {
424
+ if (!update) {
425
+ update = {
426
+ record: item.record,
427
+ actions: []
428
+ };
429
+ updates.push(update);
430
+ }
431
+ if (update.record === item.record) {
432
+ update.actions.push(item.action);
433
+ }
434
+ else {
435
+ update = {
436
+ record: item.record,
437
+ actions: [item.action]
438
+ };
439
+ updates.push(update);
440
+ }
441
+ }
442
+ this.updateRemoteActions = [];
443
+ for (const item of updates) {
444
+ this.yDoc.transact(() => {
445
+ item.actions.forEach(fn => {
446
+ fn();
447
+ });
448
+ }, item.record ? this.yDoc : this.noRecord);
449
+ }
450
+ this.localChangesAppliedEvent.next();
451
+ }));
452
+ this.syncRootComponent(root, rootComponent);
453
+ }
454
+ updateRemoteSelection(paths) {
455
+ this.collaborateCursor.draw(paths);
456
+ }
457
+ back() {
458
+ var _a;
459
+ if (this.canBack) {
460
+ (_a = this.manager) === null || _a === void 0 ? void 0 : _a.undo();
461
+ this.backEvent.next();
462
+ }
463
+ }
464
+ forward() {
465
+ var _a;
466
+ if (this.canForward) {
467
+ (_a = this.manager) === null || _a === void 0 ? void 0 : _a.redo();
468
+ this.forwardEvent.next();
469
+ }
470
+ }
471
+ clear() {
472
+ var _a;
473
+ (_a = this.manager) === null || _a === void 0 ? void 0 : _a.clear();
474
+ this.changeEvent.next();
475
+ }
476
+ destroy() {
477
+ var _a;
478
+ this.subscriptions.forEach(i => i.unsubscribe());
479
+ this.collaborateCursor.destroy();
480
+ (_a = this.manager) === null || _a === void 0 ? void 0 : _a.destroy();
481
+ }
482
+ syncRootComponent(root, rootComponent) {
483
+ let slots = root.get('slots');
484
+ if (!slots) {
485
+ slots = new Array();
486
+ rootComponent.slots.toArray().forEach(i => {
487
+ const sharedSlot = this.createSharedSlotBySlot(i);
488
+ slots.push([sharedSlot]);
489
+ });
490
+ this.yDoc.transact(() => {
491
+ root.set('state', rootComponent.state);
492
+ root.set('slots', slots);
493
+ });
494
+ }
495
+ else if (slots.length === 0) {
496
+ rootComponent.updateState(() => {
497
+ return root.get('state');
498
+ });
499
+ this.yDoc.transact(() => {
500
+ rootComponent.slots.toArray().forEach(i => {
501
+ const sharedSlot = this.createSharedSlotBySlot(i);
502
+ slots.push([sharedSlot]);
503
+ });
504
+ });
505
+ }
506
+ else {
507
+ rootComponent.updateState(() => {
508
+ return root.get('state');
509
+ });
510
+ rootComponent.slots.clean();
511
+ slots.forEach(sharedSlot => {
512
+ const slot = this.createSlotBySharedSlot(sharedSlot);
513
+ this.syncContent(sharedSlot.get('content'), slot);
514
+ this.syncSlot(sharedSlot, slot);
515
+ rootComponent.slots.insert(slot);
516
+ });
517
+ }
518
+ this.syncComponent(root, rootComponent);
519
+ this.syncSlots(slots, rootComponent);
520
+ }
521
+ restoreCursorLocation(position) {
522
+ const anchorPosition = createAbsolutePositionFromRelativePosition(position.anchor, this.yDoc);
523
+ const focusPosition = createAbsolutePositionFromRelativePosition(position.focus, this.yDoc);
524
+ if (anchorPosition && focusPosition) {
525
+ const focusSlot = this.contentMap.get(focusPosition.type);
526
+ const anchorSlot = this.contentMap.get(anchorPosition.type);
527
+ if (focusSlot && anchorSlot) {
528
+ this.selection.setBaseAndExtent(anchorSlot, anchorPosition.index, focusSlot, focusPosition.index);
529
+ return;
530
+ }
531
+ }
532
+ this.selection.unSelect();
533
+ }
534
+ getRelativeCursorLocation() {
535
+ const { anchorSlot, anchorOffset, focusSlot, focusOffset } = this.selection;
536
+ if (anchorSlot) {
537
+ const anchorYText = this.contentMap.get(anchorSlot);
538
+ if (anchorYText) {
539
+ const anchorPosition = createRelativePositionFromTypeIndex(anchorYText, anchorOffset);
540
+ if (focusSlot) {
541
+ const focusYText = this.contentMap.get(focusSlot);
542
+ if (focusYText) {
543
+ const focusPosition = createRelativePositionFromTypeIndex(focusYText, focusOffset);
544
+ return {
545
+ focus: focusPosition,
546
+ anchor: anchorPosition
547
+ };
548
+ }
549
+ }
550
+ }
551
+ }
552
+ return null;
553
+ }
554
+ syncContent(content, slot) {
555
+ this.contentMap.set(slot, content);
556
+ const syncRemote = (ev, tr) => {
557
+ this.runRemoteUpdate(tr, () => {
558
+ slot.retain(0);
559
+ ev.delta.forEach(action => {
560
+ if (Reflect.has(action, 'retain')) {
561
+ if (action.attributes) {
562
+ const formats = remoteFormatsToLocal(this.registry, action.attributes);
563
+ if (formats.length) {
564
+ slot.retain(action.retain, formats);
565
+ }
566
+ slot.retain(slot.index + action.retain);
567
+ }
568
+ else {
569
+ slot.retain(action.retain);
570
+ }
571
+ }
572
+ else if (action.insert) {
573
+ const index = slot.index;
574
+ let length = 1;
575
+ if (typeof action.insert === 'string') {
576
+ length = action.insert.length;
577
+ slot.insert(action.insert, remoteFormatsToLocal(this.registry, action.attributes));
578
+ }
579
+ else {
580
+ const sharedComponent = action.insert;
581
+ const canInsertInlineComponent = slot.schema.includes(ContentType.InlineComponent);
582
+ const component = this.createComponentBySharedComponent(sharedComponent, canInsertInlineComponent);
583
+ this.syncSlots(sharedComponent.get('slots'), component);
584
+ this.syncComponent(sharedComponent, component);
585
+ slot.insert(component);
586
+ }
587
+ if (this.selection.isSelected) {
588
+ if (slot === this.selection.anchorSlot && this.selection.anchorOffset > index) {
589
+ this.selection.setAnchor(slot, this.selection.anchorOffset + length);
590
+ }
591
+ if (slot === this.selection.focusSlot && this.selection.focusOffset > index) {
592
+ this.selection.setFocus(slot, this.selection.focusOffset + length);
593
+ }
594
+ }
595
+ }
596
+ else if (action.delete) {
597
+ const index = slot.index;
598
+ slot.retain(slot.index);
599
+ slot.delete(action.delete);
600
+ if (this.selection.isSelected) {
601
+ if (slot === this.selection.anchorSlot && this.selection.anchorOffset >= index) {
602
+ this.selection.setAnchor(slot, this.selection.startOffset - action.delete);
603
+ }
604
+ if (slot === this.selection.focusSlot && this.selection.focusOffset >= index) {
605
+ this.selection.setFocus(slot, this.selection.focusOffset - action.delete);
606
+ }
607
+ }
608
+ }
609
+ else if (action.attributes) {
610
+ slot.updateState(draft => {
611
+ if (typeof draft === 'object' && draft !== null) {
612
+ Object.assign(draft, action.attributes);
613
+ }
614
+ else {
615
+ return action.attributes;
616
+ }
617
+ });
618
+ }
619
+ });
620
+ });
621
+ };
622
+ content.observe(syncRemote);
623
+ const sub = slot.onContentChange.subscribe(actions => {
624
+ this.runLocalUpdate(() => {
625
+ var _a;
626
+ let offset = 0;
627
+ let length = 0;
628
+ for (const action of actions) {
629
+ if (action.type === 'retain') {
630
+ const formats = action.formats;
631
+ if (formats) {
632
+ const keys = Object.keys(formats);
633
+ let length = keys.length;
634
+ keys.forEach(key => {
635
+ const formatter = this.registry.getFormatter(key);
636
+ if (!formatter) {
637
+ length--;
638
+ Reflect.deleteProperty(formats, key);
639
+ }
640
+ });
641
+ if (length) {
642
+ content.format(offset, action.offset, formats);
643
+ }
644
+ }
645
+ else {
646
+ offset = action.offset;
647
+ }
648
+ }
649
+ else if (action.type === 'insert') {
650
+ const delta = content.toDelta();
651
+ const isEmpty = delta.length === 1 && delta[0].insert === Slot.emptyPlaceholder;
652
+ if (typeof action.content === 'string') {
653
+ length = action.content.length;
654
+ content.insert(offset, action.content, action.formats || {});
655
+ }
656
+ else {
657
+ length = 1;
658
+ const sharedComponent = this.createSharedComponentByComponent(action.ref);
659
+ content.insertEmbed(offset, sharedComponent, action.formats || {});
660
+ }
661
+ if (isEmpty && offset === 0) {
662
+ content.delete(content.length - 1, 1);
663
+ }
664
+ offset += length;
665
+ }
666
+ else if (action.type === 'delete') {
667
+ const delta = content.toDelta();
668
+ if (content.length) {
669
+ content.delete(offset, action.count);
670
+ }
671
+ if (content.length === 0) {
672
+ content.insert(0, '\n', (_a = delta[0]) === null || _a === void 0 ? void 0 : _a.attributes);
673
+ }
674
+ }
675
+ }
676
+ });
677
+ });
678
+ sub.add(slot.onChildComponentRemove.subscribe(components => {
679
+ components.forEach(c => {
680
+ this.cleanSubscriptionsByComponent(c);
681
+ });
682
+ }));
683
+ this.contentSyncCaches.set(slot, () => {
684
+ content.unobserve(syncRemote);
685
+ sub.unsubscribe();
686
+ });
687
+ }
688
+ syncSlot(remoteSlot, slot) {
689
+ const syncRemote = (ev, tr) => {
690
+ this.runRemoteUpdate(tr, () => {
691
+ ev.keysChanged.forEach(key => {
692
+ if (key === 'state') {
693
+ const state = ev.target.get('state');
694
+ slot.updateState(draft => {
695
+ if (typeof draft === 'object' && draft !== null) {
696
+ Object.assign(draft, state);
697
+ }
698
+ else {
699
+ return state;
700
+ }
701
+ });
702
+ }
703
+ });
704
+ });
705
+ };
706
+ remoteSlot.observe(syncRemote);
707
+ const sub = slot.onStateChange.subscribe(change => {
708
+ this.runLocalUpdate(() => {
709
+ remoteSlot.set('state', change.newState);
710
+ }, change.record);
711
+ });
712
+ this.slotStateSyncCaches.set(slot, () => {
713
+ remoteSlot.unobserve(syncRemote);
714
+ sub.unsubscribe();
715
+ });
716
+ }
717
+ syncSlots(remoteSlots, component) {
718
+ const slots = component.slots;
719
+ const syncRemote = (ev, tr) => {
720
+ this.runRemoteUpdate(tr, () => {
721
+ let index = 0;
722
+ slots.retain(index);
723
+ ev.delta.forEach(action => {
724
+ if (Reflect.has(action, 'retain')) {
725
+ index += action.retain;
726
+ slots.retain(index);
727
+ }
728
+ else if (action.insert) {
729
+ action.insert.forEach(item => {
730
+ const slot = this.createSlotBySharedSlot(item);
731
+ slots.insert(slot);
732
+ this.syncContent(item.get('content'), slot);
733
+ this.syncSlot(item, slot);
734
+ index++;
735
+ });
736
+ }
737
+ else if (action.delete) {
738
+ slots.retain(index);
739
+ slots.delete(action.delete);
740
+ }
741
+ });
742
+ });
743
+ };
744
+ remoteSlots.observe(syncRemote);
745
+ const sub = slots.onChange.subscribe(operations => {
746
+ this.runLocalUpdate(() => {
747
+ const applyActions = operations.apply;
748
+ let index;
749
+ applyActions.forEach(action => {
750
+ if (action.type === 'retain') {
751
+ index = action.offset;
752
+ }
753
+ else if (action.type === 'insertSlot') {
754
+ const sharedSlot = this.createSharedSlotBySlot(action.ref);
755
+ remoteSlots.insert(index, [sharedSlot]);
756
+ index++;
757
+ }
758
+ else if (action.type === 'delete') {
759
+ remoteSlots.delete(index, action.count);
760
+ }
761
+ });
762
+ });
763
+ });
764
+ sub.add(slots.onChildSlotRemove.subscribe(slots => {
765
+ slots.forEach(slot => {
766
+ this.cleanSubscriptionsBySlot(slot);
767
+ });
768
+ }));
769
+ this.slotsSyncCaches.set(component, () => {
770
+ remoteSlots.unobserve(syncRemote);
771
+ sub.unsubscribe();
772
+ });
773
+ }
774
+ syncComponent(remoteComponent, component) {
775
+ const syncRemote = (ev, tr) => {
776
+ this.runRemoteUpdate(tr, () => {
777
+ ev.keysChanged.forEach(key => {
778
+ if (key === 'state') {
779
+ const state = ev.target.get('state');
780
+ component.updateState(draft => {
781
+ if (typeof draft === 'object' && draft !== null) {
782
+ Object.assign(draft, state);
783
+ }
784
+ else {
785
+ return state;
786
+ }
787
+ });
788
+ }
789
+ });
790
+ });
791
+ };
792
+ remoteComponent.observe(syncRemote);
793
+ const sub = component.onStateChange.subscribe(change => {
794
+ this.runLocalUpdate(() => {
795
+ remoteComponent.set('state', change.newState);
796
+ }, change.record);
797
+ });
798
+ this.componentStateSyncCaches.set(component, () => {
799
+ remoteComponent.unobserve(syncRemote);
800
+ sub.unsubscribe();
801
+ });
802
+ }
803
+ runLocalUpdate(fn, record = true) {
804
+ if (this.updateFromRemote || this.controller.readonly) {
805
+ return;
806
+ }
807
+ this.updateRemoteActions.push({
808
+ record,
809
+ action: fn
810
+ });
811
+ }
812
+ runRemoteUpdate(tr, fn) {
813
+ if (tr.origin === this.yDoc) {
814
+ return;
815
+ }
816
+ this.updateFromRemote = true;
817
+ if (tr.origin === this.manager) {
818
+ this.scheduler.historyApplyTransact(fn);
819
+ }
820
+ else {
821
+ this.scheduler.remoteUpdateTransact(fn);
822
+ }
823
+ this.updateFromRemote = false;
824
+ }
825
+ createSharedComponentByComponent(component) {
826
+ const sharedComponent = new Map();
827
+ sharedComponent.set('state', component.state);
828
+ sharedComponent.set('name', component.name);
829
+ const sharedSlots = new Array();
830
+ sharedComponent.set('slots', sharedSlots);
831
+ component.slots.toArray().forEach(slot => {
832
+ const sharedSlot = this.createSharedSlotBySlot(slot);
833
+ sharedSlots.push([sharedSlot]);
834
+ });
835
+ this.syncSlots(sharedSlots, component);
836
+ this.syncComponent(sharedComponent, component);
837
+ return sharedComponent;
838
+ }
839
+ createSharedSlotBySlot(slot) {
840
+ const sharedSlot = new Map();
841
+ sharedSlot.set('schema', slot.schema);
842
+ sharedSlot.set('state', slot.state);
843
+ const sharedContent = new Text();
844
+ sharedSlot.set('content', sharedContent);
845
+ let offset = 0;
846
+ slot.toDelta().forEach(i => {
847
+ let formats = {};
848
+ if (i.formats) {
849
+ i.formats.forEach(item => {
850
+ formats[item[0].name] = item[1];
851
+ });
852
+ }
853
+ else {
854
+ formats = null;
855
+ }
856
+ if (typeof i.insert === 'string') {
857
+ sharedContent.insert(offset, i.insert, formats);
858
+ }
859
+ else {
860
+ const sharedComponent = this.createSharedComponentByComponent(i.insert);
861
+ sharedContent.insertEmbed(offset, sharedComponent, formats);
862
+ }
863
+ offset += i.insert.length;
864
+ });
865
+ this.syncContent(sharedContent, slot);
866
+ this.syncSlot(sharedSlot, slot);
867
+ return sharedSlot;
868
+ }
869
+ createComponentBySharedComponent(yMap, canInsertInlineComponent) {
870
+ const sharedSlots = yMap.get('slots');
871
+ const slots = [];
872
+ sharedSlots.forEach(sharedSlot => {
873
+ const slot = this.createSlotBySharedSlot(sharedSlot);
874
+ slots.push(slot);
875
+ });
876
+ const name = yMap.get('name');
877
+ const state = yMap.get('state');
878
+ const instance = this.translator.createComponentByData(name, {
879
+ state,
880
+ slots
881
+ });
882
+ if (instance) {
883
+ instance.slots.toArray().forEach((slot, index) => {
884
+ let sharedSlot = sharedSlots.get(index);
885
+ if (!sharedSlot) {
886
+ sharedSlot = this.createSharedSlotBySlot(slot);
887
+ sharedSlots.push([sharedSlot]);
888
+ }
889
+ this.syncSlot(sharedSlot, slot);
890
+ this.syncContent(sharedSlot.get('content'), slot);
891
+ });
892
+ return instance;
893
+ }
894
+ return createUnknownComponent(name, canInsertInlineComponent).createInstance(this.starter);
895
+ }
896
+ createSlotBySharedSlot(sharedSlot) {
897
+ const content = sharedSlot.get('content');
898
+ const delta = content.toDelta();
899
+ const slot = this.translator.createSlot({
900
+ schema: sharedSlot.get('schema'),
901
+ state: sharedSlot.get('state'),
902
+ formats: {},
903
+ content: []
904
+ });
905
+ for (const action of delta) {
906
+ if (action.insert) {
907
+ if (typeof action.insert === 'string') {
908
+ const blockFormats = [];
909
+ const formats = remoteFormatsToLocal(this.registry, action.attributes).filter(item => {
910
+ if (item[0].type === FormatType.Block) {
911
+ blockFormats.push(item);
912
+ return false;
913
+ }
914
+ return true;
915
+ });
916
+ slot.insert(action.insert, formats);
917
+ const index = slot.index;
918
+ blockFormats.forEach(item => {
919
+ slot.setAttribute(item[0], item[1]);
920
+ });
921
+ slot.retain(index);
922
+ }
923
+ else {
924
+ const sharedComponent = action.insert;
925
+ const canInsertInlineComponent = slot.schema.includes(ContentType.InlineComponent);
926
+ const component = this.createComponentBySharedComponent(sharedComponent, canInsertInlineComponent);
927
+ slot.insert(component, remoteFormatsToLocal(this.registry, action.attributes));
928
+ this.syncSlots(sharedComponent.get('slots'), component);
929
+ this.syncComponent(sharedComponent, component);
930
+ }
931
+ }
932
+ else {
933
+ throw collaborateErrorFn('unexpected delta action.');
934
+ }
935
+ }
936
+ return slot;
937
+ }
938
+ cleanSubscriptionsBySlot(slot) {
939
+ this.contentMap.delete(slot);
940
+ [this.contentSyncCaches.get(slot), this.slotStateSyncCaches.get(slot)].forEach(fn => {
941
+ if (fn) {
942
+ fn();
943
+ }
944
+ });
945
+ slot.sliceContent().forEach(i => {
946
+ if (typeof i !== 'string') {
947
+ this.cleanSubscriptionsByComponent(i);
948
+ }
949
+ });
950
+ }
951
+ cleanSubscriptionsByComponent(component) {
952
+ [this.slotsSyncCaches.get(component), this.componentStateSyncCaches.get(component)].forEach(fn => {
953
+ if (fn) {
954
+ fn();
955
+ }
956
+ });
957
+ component.slots.toArray().forEach(slot => {
958
+ this.cleanSubscriptionsBySlot(slot);
959
+ });
960
+ }
961
+ };
962
+ Collaborate = __decorate([
963
+ Injectable(),
964
+ __param(0, Inject(HISTORY_STACK_SIZE)),
965
+ __metadata("design:paramtypes", [Number, RootComponentRef,
966
+ CollaborateCursor,
967
+ Controller,
968
+ Scheduler,
969
+ Translator,
970
+ Registry,
971
+ Selection,
972
+ Starter])
973
+ ], Collaborate);
974
+ function remoteFormatsToLocal(registry, attrs) {
975
+ const formats = [];
976
+ if (attrs) {
977
+ Object.keys(attrs).forEach(key => {
978
+ const formatter = registry.getFormatter(key);
979
+ if (formatter) {
980
+ formats.push([formatter, attrs[key]]);
981
+ }
982
+ });
983
+ }
984
+ return formats;
982
985
  }
983
986
 
984
- const collaborateModule = {
985
- providers: [
986
- Collaborate,
987
- CollaborateCursor,
988
- {
989
- provide: History,
990
- useClass: Collaborate
991
- }
992
- ]
987
+ const collaborateModule = {
988
+ providers: [
989
+ Collaborate,
990
+ CollaborateCursor,
991
+ {
992
+ provide: History,
993
+ useClass: Collaborate
994
+ }
995
+ ]
993
996
  };
994
997
 
995
998
  export { Collaborate, CollaborateCursor, CollaborateSelectionAwarenessDelegate, collaborateModule };