@textbus/collaborate 2.0.0-alpha.38 → 2.0.0-alpha.41
Sign up to get free protection for your applications and to get access to all the features.
- package/bundles/collab/_api.d.ts +0 -1
- package/bundles/collab/_api.js +0 -1
- package/bundles/collab/_api.js.map +1 -1
- package/bundles/collab/collaborate-cursor.d.ts +13 -1
- package/bundles/collab/collaborate-cursor.js +182 -36
- package/bundles/collab/collaborate-cursor.js.map +1 -1
- package/bundles/collab/local-to-remote.d.ts +10 -2
- package/bundles/collab/local-to-remote.js +139 -157
- package/bundles/collab/local-to-remote.js.map +1 -1
- package/bundles/collab/remote-to-local.d.ts +10 -1
- package/bundles/collab/remote-to-local.js +136 -112
- package/bundles/collab/remote-to-local.js.map +1 -1
- package/bundles/collaborate.d.ts +22 -6
- package/bundles/collaborate.js +180 -24
- package/bundles/collaborate.js.map +1 -1
- package/bundles/public-api.js.map +1 -1
- package/package.json +4 -4
- package/src/collab/_api.ts +0 -1
- package/src/collab/collaborate-cursor.ts +147 -21
- package/src/collab/local-to-remote.ts +136 -159
- package/src/collab/remote-to-local.ts +127 -108
- package/src/collaborate.ts +60 -14
- package/tsconfig-build.json +2 -0
- package/bundles/collab/collaborate-history.d.ts +0 -22
- package/bundles/collab/collaborate-history.js +0 -53
- package/bundles/collab/collaborate-history.js.map +0 -1
- package/src/collab/collaborate-history.ts +0 -55
@@ -1,176 +1,158 @@
|
|
1
|
-
import {
|
2
|
-
import { Array as YArray, Map as YMap } from 'yjs';
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
1
|
+
import { makeError } from '@textbus/core';
|
2
|
+
import { Array as YArray, Map as YMap, Text as YText } from 'yjs';
|
3
|
+
const collaborateErrorFn = makeError('Collaborate');
|
4
|
+
export class LocalToRemote {
|
5
|
+
transform(operation, root) {
|
6
|
+
const path = [...operation.path];
|
7
|
+
path.shift();
|
8
|
+
if (path.length) {
|
9
|
+
const componentIndex = path.shift();
|
10
|
+
const sharedComponent = this.getSharedComponentByIndex(root, componentIndex);
|
11
|
+
if (sharedComponent) {
|
12
|
+
this.applyComponentOperationToSharedComponent(path, operation.apply, sharedComponent);
|
13
|
+
}
|
14
|
+
return;
|
15
|
+
}
|
16
|
+
this.mergeActionsToSharedSlot(root, operation.apply);
|
10
17
|
}
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
18
|
+
applyComponentOperationToSharedComponent(path, actions, componentYMap) {
|
19
|
+
const sharedSlots = componentYMap.get('slots');
|
20
|
+
if (path.length) {
|
21
|
+
const slotIndex = path.shift();
|
22
|
+
const sharedSlot = sharedSlots.get(slotIndex);
|
23
|
+
this.applySlotOperationToSharedSlot(path, actions, sharedSlot);
|
24
|
+
return;
|
25
|
+
}
|
26
|
+
let index;
|
27
|
+
actions.forEach(action => {
|
28
|
+
switch (action.type) {
|
29
|
+
case 'retain':
|
30
|
+
index = action.offset;
|
31
|
+
break;
|
32
|
+
case 'insertSlot':
|
33
|
+
sharedSlots.insert(index, [this.makeSharedSlotBySlotLiteral(action.slot)]);
|
34
|
+
index++;
|
35
|
+
break;
|
36
|
+
case 'apply':
|
37
|
+
componentYMap.set('state', action.value);
|
38
|
+
break;
|
39
|
+
case 'delete':
|
40
|
+
sharedSlots.delete(index, action.count);
|
41
|
+
break;
|
42
|
+
}
|
43
|
+
});
|
20
44
|
}
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
sharedSlots.insert(index, [makeSharedSlotBySlotLiteral(action.slot)]);
|
29
|
-
break;
|
30
|
-
case 'apply':
|
31
|
-
componentYMap.set('state', action.value);
|
32
|
-
break;
|
33
|
-
case 'delete':
|
34
|
-
sharedSlots.delete(index, action.count);
|
35
|
-
break;
|
45
|
+
applySlotOperationToSharedSlot(path, actions, slotYMap) {
|
46
|
+
if (path.length) {
|
47
|
+
const componentIndex = path.shift();
|
48
|
+
const sharedContent = slotYMap.get('content');
|
49
|
+
const sharedComponent = this.getSharedComponentByIndex(sharedContent, componentIndex);
|
50
|
+
this.applyComponentOperationToSharedComponent(path, actions, sharedComponent);
|
51
|
+
return;
|
36
52
|
}
|
37
|
-
|
38
|
-
|
39
|
-
function applySlotOperationToSharedSlot(path, actions, slotYMap) {
|
40
|
-
if (path.length) {
|
41
|
-
const componentIndex = path.shift();
|
42
|
-
const sharedContent = slotYMap.get('content');
|
43
|
-
const sharedComponent = sharedContent.get(componentIndex);
|
44
|
-
applyComponentOperationToSharedComponent(path, actions, sharedComponent);
|
45
|
-
return;
|
53
|
+
const content = slotYMap.get('content');
|
54
|
+
this.mergeActionsToSharedSlot(content, actions, slotYMap);
|
46
55
|
}
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
56
|
+
mergeActionsToSharedSlot(content, actions, slotYMap) {
|
57
|
+
let index;
|
58
|
+
let length;
|
59
|
+
actions.forEach(action => {
|
60
|
+
var _a;
|
61
|
+
if (action.type === 'retain') {
|
53
62
|
if (action.formats) {
|
54
|
-
|
63
|
+
content.format(index, action.offset, action.formats);
|
64
|
+
}
|
65
|
+
else {
|
66
|
+
index = action.offset;
|
55
67
|
}
|
56
|
-
|
57
|
-
|
58
|
-
|
68
|
+
}
|
69
|
+
else if (action.type === 'insert') {
|
70
|
+
const delta = content.toDelta();
|
71
|
+
const isEmpty = delta.length === 1 && delta[0].insert === '\n';
|
59
72
|
if (typeof action.content === 'string') {
|
60
|
-
|
61
|
-
content.insert(index, action.content
|
73
|
+
length = action.content.length;
|
74
|
+
content.insert(index, action.content);
|
62
75
|
}
|
63
76
|
else {
|
64
|
-
|
65
|
-
content.
|
77
|
+
length = 1;
|
78
|
+
content.insertEmbed(index, this.makeSharedComponentByComponentLiteral(action.content));
|
66
79
|
}
|
67
80
|
if (action.formats) {
|
68
|
-
|
81
|
+
content.format(index, length, action.formats);
|
69
82
|
}
|
70
|
-
|
71
|
-
|
72
|
-
if (content.length === 0) {
|
73
|
-
// 当内容为空时,slot 实例内容为 ['\n'],触发删除会导致长度溢出
|
74
|
-
return;
|
83
|
+
if (isEmpty && index === 0) {
|
84
|
+
content.delete(content.length - 1, 1);
|
75
85
|
}
|
86
|
+
index += length;
|
87
|
+
}
|
88
|
+
else if (action.type === 'delete') {
|
89
|
+
const delta = content.toDelta();
|
76
90
|
content.delete(index, action.count);
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
}
|
84
|
-
function insertSharedFormats(index, distance, formats, sharedSlots) {
|
85
|
-
const sharedFormats = sharedSlots.get('formats');
|
86
|
-
const keys = Array.from(sharedFormats.keys());
|
87
|
-
const expandedValues = Array.from({ length: distance });
|
88
|
-
keys.forEach(key => {
|
89
|
-
const formatRanges = sharedFormats.get(key);
|
90
|
-
const values = Format.tileRanges(formatRanges);
|
91
|
-
values.splice(index, 0, ...expandedValues);
|
92
|
-
const newRanges = Format.toRanges(values);
|
93
|
-
sharedFormats.set(key, newRanges);
|
94
|
-
});
|
95
|
-
mergeSharedFormats(index, index + distance, formats, sharedSlots);
|
96
|
-
}
|
97
|
-
function mergeSharedFormats(startIndex, endIndex, formats, sharedSlots) {
|
98
|
-
const sharedFormats = sharedSlots.get('formats');
|
99
|
-
Object.keys(formats).forEach(key => {
|
100
|
-
if (!sharedFormats.has(key)) {
|
101
|
-
sharedFormats.set(key, [{
|
102
|
-
startIndex,
|
103
|
-
endIndex,
|
104
|
-
value: formats[key]
|
105
|
-
}]);
|
106
|
-
}
|
107
|
-
const oldFormatRanges = sharedFormats.get(key);
|
108
|
-
const formatRanges = Format.normalizeFormatRange(oldFormatRanges, {
|
109
|
-
startIndex,
|
110
|
-
endIndex,
|
111
|
-
value: formats[key]
|
91
|
+
if (content.length === 0) {
|
92
|
+
content.insert(0, '\n', (_a = delta[0]) === null || _a === void 0 ? void 0 : _a.attributes);
|
93
|
+
}
|
94
|
+
}
|
95
|
+
else if (action.type === 'apply') {
|
96
|
+
slotYMap === null || slotYMap === void 0 ? void 0 : slotYMap.set('state', action.value);
|
97
|
+
}
|
112
98
|
});
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
index
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
99
|
+
}
|
100
|
+
makeSharedSlotBySlotLiteral(slotLiteral) {
|
101
|
+
const content = new YText();
|
102
|
+
let index = 0;
|
103
|
+
slotLiteral.content.forEach(i => {
|
104
|
+
let size;
|
105
|
+
if (typeof i === 'string') {
|
106
|
+
size = i.length;
|
107
|
+
content.insert(index, i);
|
108
|
+
}
|
109
|
+
else {
|
110
|
+
size = 1;
|
111
|
+
content.insertEmbed(index, this.makeSharedComponentByComponentLiteral(i));
|
112
|
+
}
|
113
|
+
index += size;
|
114
|
+
});
|
115
|
+
const formats = slotLiteral.formats;
|
116
|
+
Object.keys(formats).forEach(key => {
|
117
|
+
const formatRanges = formats[key];
|
118
|
+
formatRanges.forEach(formatRange => {
|
119
|
+
content.format(formatRange.startIndex, formatRange.endIndex - formatRange.startIndex, {
|
120
|
+
[key]: formatRange.value
|
121
|
+
});
|
122
|
+
});
|
123
|
+
});
|
124
|
+
const sharedSlot = new YMap();
|
125
|
+
sharedSlot.set('content', content);
|
126
|
+
sharedSlot.set('schema', slotLiteral.schema);
|
127
|
+
sharedSlot.set('state', slotLiteral.state);
|
128
|
+
return sharedSlot;
|
129
|
+
}
|
130
|
+
makeSharedComponentByComponentLiteral(componentLiteral) {
|
131
|
+
const slots = new YArray();
|
132
|
+
componentLiteral.slots.forEach(item => {
|
133
|
+
slots.push([this.makeSharedSlotBySlotLiteral(item)]);
|
134
|
+
});
|
135
|
+
const sharedComponent = new YMap();
|
136
|
+
sharedComponent.set('name', componentLiteral.name);
|
137
|
+
sharedComponent.set('slots', slots);
|
138
|
+
sharedComponent.set('state', componentLiteral.state);
|
139
|
+
return sharedComponent;
|
140
|
+
}
|
141
|
+
getSharedComponentByIndex(host, index) {
|
142
|
+
const delta = host.toDelta();
|
143
|
+
let i = 0;
|
144
|
+
for (const action of delta) {
|
145
|
+
if (action.insert) {
|
146
|
+
if (i === index) {
|
147
|
+
return action.insert instanceof YMap ? action.insert : null;
|
131
148
|
}
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
});
|
138
|
-
}
|
139
|
-
function makeSharedSlotBySlotLiteral(slotLiteral) {
|
140
|
-
const content = new YArray();
|
141
|
-
let index = 0;
|
142
|
-
slotLiteral.content.forEach(i => {
|
143
|
-
let size;
|
144
|
-
if (typeof i === 'string') {
|
145
|
-
size = i.length;
|
146
|
-
content.insert(index, [i]);
|
149
|
+
i += action.insert instanceof YMap ? 1 : action.insert.length;
|
150
|
+
}
|
151
|
+
else {
|
152
|
+
throw collaborateErrorFn('Unexpected delta action.');
|
153
|
+
}
|
147
154
|
}
|
148
|
-
|
149
|
-
|
150
|
-
content.insert(index, [makeSharedComponentByComponentLiteral(i)]);
|
151
|
-
}
|
152
|
-
index += size;
|
153
|
-
});
|
154
|
-
const formats = new YMap();
|
155
|
-
Object.keys(slotLiteral.formats).forEach(key => {
|
156
|
-
formats.set(key, slotLiteral.formats[key]);
|
157
|
-
});
|
158
|
-
const sharedSlot = new YMap();
|
159
|
-
sharedSlot.set('state', slotLiteral.state);
|
160
|
-
sharedSlot.set('content', content);
|
161
|
-
sharedSlot.set('schema', slotLiteral.schema);
|
162
|
-
sharedSlot.set('formats', formats);
|
163
|
-
return sharedSlot;
|
164
|
-
}
|
165
|
-
function makeSharedComponentByComponentLiteral(componentLiteral) {
|
166
|
-
const slots = new YArray();
|
167
|
-
componentLiteral.slots.forEach(item => {
|
168
|
-
slots.push([makeSharedSlotBySlotLiteral(item)]);
|
169
|
-
});
|
170
|
-
const sharedComponent = new YMap();
|
171
|
-
sharedComponent.set('name', componentLiteral.name);
|
172
|
-
sharedComponent.set('slots', slots);
|
173
|
-
sharedComponent.set('state', componentLiteral.state);
|
174
|
-
return sharedComponent;
|
155
|
+
return null;
|
156
|
+
}
|
175
157
|
}
|
176
158
|
//# sourceMappingURL=local-to-remote.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"local-to-remote.js","sourceRoot":"","sources":["../../src/collab/local-to-remote.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"local-to-remote.js","sourceRoot":"","sources":["../../src/collab/local-to-remote.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoD,SAAS,EAAE,MAAM,eAAe,CAAA;AAC3F,OAAO,EAAE,KAAK,IAAI,MAAM,EAAE,GAAG,IAAI,IAAI,EAAE,IAAI,IAAI,KAAK,EAAE,MAAM,KAAK,CAAA;AAEjE,MAAM,kBAAkB,GAAG,SAAS,CAAC,aAAa,CAAC,CAAA;AAEnD,MAAM,OAAO,aAAa;IACxB,SAAS,CAAC,SAAoB,EAAE,IAAW;QACzC,MAAM,IAAI,GAAG,CAAC,GAAG,SAAS,CAAC,IAAI,CAAC,CAAA;QAChC,IAAI,CAAC,KAAK,EAAE,CAAA;QACZ,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,MAAM,cAAc,GAAG,IAAI,CAAC,KAAK,EAAG,CAAA;YACpC,MAAM,eAAe,GAAG,IAAI,CAAC,yBAAyB,CAAC,IAAI,EAAE,cAAc,CAAC,CAAA;YAC5E,IAAI,eAAe,EAAE;gBACnB,IAAI,CAAC,wCAAwC,CAAC,IAAI,EAAE,SAAS,CAAC,KAAK,EAAE,eAAe,CAAC,CAAA;aACtF;YACD,OAAM;SACP;QACD,IAAI,CAAC,wBAAwB,CAAC,IAAI,EAAE,SAAS,CAAC,KAAK,CAAC,CAAA;IACtD,CAAC;IAEO,wCAAwC,CAAC,IAAc,EAAE,OAAiB,EAAE,aAAwB;QAC1G,MAAM,WAAW,GAAG,aAAa,CAAC,GAAG,CAAC,OAAO,CAAgB,CAAA;QAC7D,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,MAAM,SAAS,GAAG,IAAI,CAAC,KAAK,EAAG,CAAA;YAC/B,MAAM,UAAU,GAAG,WAAW,CAAC,GAAG,CAAC,SAAS,CAAC,CAAA;YAC7C,IAAI,CAAC,8BAA8B,CAAC,IAAI,EAAE,OAAO,EAAE,UAAU,CAAC,CAAA;YAC9D,OAAM;SACP;QACD,IAAI,KAAa,CAAA;QACjB,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;YACvB,QAAQ,MAAM,CAAC,IAAI,EAAE;gBACnB,KAAK,QAAQ;oBACX,KAAK,GAAG,MAAM,CAAC,MAAM,CAAA;oBACrB,MAAK;gBACP,KAAK,YAAY;oBACf,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,2BAA2B,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;oBAC1E,KAAK,EAAE,CAAA;oBACP,MAAK;gBACP,KAAK,OAAO;oBACV,aAAa,CAAC,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,KAAK,CAAC,CAAA;oBACxC,MAAK;gBACP,KAAK,QAAQ;oBACX,WAAW,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,CAAA;oBACvC,MAAK;aACR;QACH,CAAC,CAAC,CAAA;IACJ,CAAC;IAEO,8BAA8B,CAAC,IAAc,EAAE,OAAiB,EAAE,QAAmB;QAC3F,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,MAAM,cAAc,GAAG,IAAI,CAAC,KAAK,EAAG,CAAA;YACpC,MAAM,aAAa,GAAG,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAU,CAAA;YACtD,MAAM,eAAe,GAAG,IAAI,CAAC,yBAAyB,CAAC,aAAa,EAAE,cAAc,CAAE,CAAA;YACtF,IAAI,CAAC,wCAAwC,CAAC,IAAI,EAAE,OAAO,EAAE,eAAe,CAAC,CAAA;YAC7E,OAAM;SACP;QACD,MAAM,OAAO,GAAG,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAU,CAAA;QAEhD,IAAI,CAAC,wBAAwB,CAAC,OAAO,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAA;IAC3D,CAAC;IAEO,wBAAwB,CAAC,OAAc,EAAE,OAAiB,EAAE,QAAoB;QACtF,IAAI,KAAa,CAAA;QACjB,IAAI,MAAc,CAAA;QAElB,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;;YACvB,IAAI,MAAM,CAAC,IAAI,KAAK,QAAQ,EAAE;gBAC5B,IAAI,MAAM,CAAC,OAAO,EAAE;oBAClB,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,OAAO,CAAC,CAAA;iBACrD;qBAAM;oBACL,KAAK,GAAG,MAAM,CAAC,MAAM,CAAA;iBACtB;aACF;iBAAM,IAAI,MAAM,CAAC,IAAI,KAAK,QAAQ,EAAE;gBACnC,MAAM,KAAK,GAAG,OAAO,CAAC,OAAO,EAAE,CAAA;gBAC/B,MAAM,OAAO,GAAG,KAAK,CAAC,MAAM,KAAK,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,IAAI,CAAA;gBAE9D,IAAI,OAAO,MAAM,CAAC,OAAO,KAAK,QAAQ,EAAE;oBACtC,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAA;oBAC9B,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,OAAO,CAAC,CAAA;iBACtC;qBAAM;oBACL,MAAM,GAAG,CAAC,CAAA;oBACV,OAAO,CAAC,WAAW,CAAC,KAAK,EAAE,IAAI,CAAC,qCAAqC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAA;iBACvF;gBACD,IAAI,MAAM,CAAC,OAAO,EAAE;oBAClB,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC,OAAO,CAAC,CAAA;iBAC9C;gBACD,IAAI,OAAO,IAAI,KAAK,KAAK,CAAC,EAAE;oBAC1B,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,CAAC,CAAA;iBACtC;gBACD,KAAK,IAAI,MAAM,CAAA;aAChB;iBAAM,IAAI,MAAM,CAAC,IAAI,KAAK,QAAQ,EAAE;gBACnC,MAAM,KAAK,GAAG,OAAO,CAAC,OAAO,EAAE,CAAA;gBAC/B,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,CAAA;gBACnC,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;oBACxB,OAAO,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,EAAE,MAAA,KAAK,CAAC,CAAC,CAAC,0CAAE,UAAU,CAAC,CAAA;iBAC9C;aACF;iBAAM,IAAI,MAAM,CAAC,IAAI,KAAK,OAAO,EAAE;gBAClC,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,GAAG,CAAC,OAAO,EAAE,MAAM,CAAC,KAAK,CAAC,CAAA;aACrC;QACH,CAAC,CAAC,CAAA;IACJ,CAAC;IAEO,2BAA2B,CAAC,WAAwB;QAC1D,MAAM,OAAO,GAAG,IAAI,KAAK,EAAE,CAAA;QAC3B,IAAI,KAAK,GAAG,CAAC,CAAA;QACb,WAAW,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE;YAC9B,IAAI,IAAY,CAAA;YAChB,IAAI,OAAO,CAAC,KAAK,QAAQ,EAAE;gBACzB,IAAI,GAAG,CAAC,CAAC,MAAM,CAAA;gBACf,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAA;aACzB;iBAAM;gBACL,IAAI,GAAG,CAAC,CAAA;gBACR,OAAO,CAAC,WAAW,CAAC,KAAK,EAAE,IAAI,CAAC,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAA;aAC1E;YACD,KAAK,IAAI,IAAI,CAAA;QACf,CAAC,CAAC,CAAA;QACF,MAAM,OAAO,GAAG,WAAW,CAAC,OAAO,CAAA;QACnC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YACjC,MAAM,YAAY,GAAG,OAAO,CAAC,GAAG,CAAC,CAAA;YACjC,YAAY,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE;gBACjC,OAAO,CAAC,MAAM,CAAC,WAAW,CAAC,UAAU,EAAE,WAAW,CAAC,QAAQ,GAAG,WAAW,CAAC,UAAU,EAAE;oBACpF,CAAC,GAAG,CAAC,EAAE,WAAW,CAAC,KAAK;iBACzB,CAAC,CAAA;YACJ,CAAC,CAAC,CAAA;QACJ,CAAC,CAAC,CAAA;QAEF,MAAM,UAAU,GAAG,IAAI,IAAI,EAAE,CAAA;QAC7B,UAAU,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;QAClC,UAAU,CAAC,GAAG,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC,CAAA;QAC5C,UAAU,CAAC,GAAG,CAAC,OAAO,EAAE,WAAW,CAAC,KAAK,CAAC,CAAA;QAC1C,OAAO,UAAU,CAAA;IACnB,CAAC;IAEO,qCAAqC,CAAC,gBAAkC;QAC9E,MAAM,KAAK,GAAG,IAAI,MAAM,EAAE,CAAA;QAC1B,gBAAgB,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;YACpC,KAAK,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,2BAA2B,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;QACtD,CAAC,CAAC,CAAA;QACF,MAAM,eAAe,GAAG,IAAI,IAAI,EAAE,CAAA;QAClC,eAAe,CAAC,GAAG,CAAC,MAAM,EAAE,gBAAgB,CAAC,IAAI,CAAC,CAAA;QAClD,eAAe,CAAC,GAAG,CAAC,OAAO,EAAE,KAAK,CAAC,CAAA;QACnC,eAAe,CAAC,GAAG,CAAC,OAAO,EAAE,gBAAgB,CAAC,KAAK,CAAC,CAAA;QACpD,OAAO,eAAe,CAAA;IACxB,CAAC;IAEO,yBAAyB,CAAC,IAAW,EAAE,KAAa;QAC1D,MAAM,KAAK,GAAG,IAAI,CAAC,OAAO,EAAE,CAAA;QAC5B,IAAI,CAAC,GAAG,CAAC,CAAA;QACT,KAAK,MAAM,MAAM,IAAI,KAAK,EAAE;YAC1B,IAAI,MAAM,CAAC,MAAM,EAAE;gBACjB,IAAI,CAAC,KAAK,KAAK,EAAE;oBACf,OAAO,MAAM,CAAC,MAAM,YAAY,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAA;iBAC5D;gBACD,CAAC,IAAI,MAAM,CAAC,MAAM,YAAY,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAA;aAC9D;iBAAM;gBACL,MAAM,kBAAkB,CAAC,0BAA0B,CAAC,CAAA;aACrD;SACF;QACD,OAAO,IAAI,CAAA;IACb,CAAC;CACF","sourcesContent":["import { Action, Operation, SlotLiteral, ComponentLiteral, makeError } from '@textbus/core'\nimport { Array as YArray, Map as YMap, Text as YText } from 'yjs'\n\nconst collaborateErrorFn = makeError('Collaborate')\n\nexport class LocalToRemote {\n transform(operation: Operation, root: YText) {\n const path = [...operation.path]\n path.shift()\n if (path.length) {\n const componentIndex = path.shift()!\n const sharedComponent = this.getSharedComponentByIndex(root, componentIndex)\n if (sharedComponent) {\n this.applyComponentOperationToSharedComponent(path, operation.apply, sharedComponent)\n }\n return\n }\n this.mergeActionsToSharedSlot(root, operation.apply)\n }\n\n private applyComponentOperationToSharedComponent(path: number[], actions: Action[], componentYMap: YMap<any>) {\n const sharedSlots = componentYMap.get('slots') as YArray<any>\n if (path.length) {\n const slotIndex = path.shift()!\n const sharedSlot = sharedSlots.get(slotIndex)\n this.applySlotOperationToSharedSlot(path, actions, sharedSlot)\n return\n }\n let index: number\n actions.forEach(action => {\n switch (action.type) {\n case 'retain':\n index = action.offset\n break\n case 'insertSlot':\n sharedSlots.insert(index, [this.makeSharedSlotBySlotLiteral(action.slot)])\n index++\n break\n case 'apply':\n componentYMap.set('state', action.value)\n break\n case 'delete':\n sharedSlots.delete(index, action.count)\n break\n }\n })\n }\n\n private applySlotOperationToSharedSlot(path: number[], actions: Action[], slotYMap: YMap<any>) {\n if (path.length) {\n const componentIndex = path.shift()!\n const sharedContent = slotYMap.get('content') as YText\n const sharedComponent = this.getSharedComponentByIndex(sharedContent, componentIndex)!\n this.applyComponentOperationToSharedComponent(path, actions, sharedComponent)\n return\n }\n const content = slotYMap.get('content') as YText\n\n this.mergeActionsToSharedSlot(content, actions, slotYMap)\n }\n\n private mergeActionsToSharedSlot(content: YText, actions: Action[], slotYMap?: YMap<any>) {\n let index: number\n let length: number\n\n actions.forEach(action => {\n if (action.type === 'retain') {\n if (action.formats) {\n content.format(index, action.offset, action.formats)\n } else {\n index = action.offset\n }\n } else if (action.type === 'insert') {\n const delta = content.toDelta()\n const isEmpty = delta.length === 1 && delta[0].insert === '\\n'\n\n if (typeof action.content === 'string') {\n length = action.content.length\n content.insert(index, action.content)\n } else {\n length = 1\n content.insertEmbed(index, this.makeSharedComponentByComponentLiteral(action.content))\n }\n if (action.formats) {\n content.format(index, length, action.formats)\n }\n if (isEmpty && index === 0) {\n content.delete(content.length - 1, 1)\n }\n index += length\n } else if (action.type === 'delete') {\n const delta = content.toDelta()\n content.delete(index, action.count)\n if (content.length === 0) {\n content.insert(0, '\\n', delta[0]?.attributes)\n }\n } else if (action.type === 'apply') {\n slotYMap?.set('state', action.value)\n }\n })\n }\n\n private makeSharedSlotBySlotLiteral(slotLiteral: SlotLiteral): YMap<any> {\n const content = new YText()\n let index = 0\n slotLiteral.content.forEach(i => {\n let size: number\n if (typeof i === 'string') {\n size = i.length\n content.insert(index, i)\n } else {\n size = 1\n content.insertEmbed(index, this.makeSharedComponentByComponentLiteral(i))\n }\n index += size\n })\n const formats = slotLiteral.formats\n Object.keys(formats).forEach(key => {\n const formatRanges = formats[key]\n formatRanges.forEach(formatRange => {\n content.format(formatRange.startIndex, formatRange.endIndex - formatRange.startIndex, {\n [key]: formatRange.value\n })\n })\n })\n\n const sharedSlot = new YMap()\n sharedSlot.set('content', content)\n sharedSlot.set('schema', slotLiteral.schema)\n sharedSlot.set('state', slotLiteral.state)\n return sharedSlot\n }\n\n private makeSharedComponentByComponentLiteral(componentLiteral: ComponentLiteral): YMap<any> {\n const slots = new YArray()\n componentLiteral.slots.forEach(item => {\n slots.push([this.makeSharedSlotBySlotLiteral(item)])\n })\n const sharedComponent = new YMap()\n sharedComponent.set('name', componentLiteral.name)\n sharedComponent.set('slots', slots)\n sharedComponent.set('state', componentLiteral.state)\n return sharedComponent\n }\n\n private getSharedComponentByIndex(host: YText, index: number): YMap<any> | null {\n const delta = host.toDelta()\n let i = 0\n for (const action of delta) {\n if (action.insert) {\n if (i === index) {\n return action.insert instanceof YMap ? action.insert : null\n }\n i += action.insert instanceof YMap ? 1 : action.insert.length\n } else {\n throw collaborateErrorFn('Unexpected delta action.')\n }\n }\n return null\n }\n}\n"]}
|
@@ -1,3 +1,12 @@
|
|
1
1
|
import { YEvent } from 'yjs';
|
2
2
|
import { Registry, Slot, Translator } from '@textbus/core';
|
3
|
-
export declare
|
3
|
+
export declare class RemoteToLocal {
|
4
|
+
private translator;
|
5
|
+
private registry;
|
6
|
+
constructor(translator: Translator, registry: Registry);
|
7
|
+
transform(events: YEvent[], slot: Slot): void;
|
8
|
+
private applySharedComponentToComponent;
|
9
|
+
private applySharedSlotToSlot;
|
10
|
+
private createComponentBySharedComponent;
|
11
|
+
private createSlotBySharedSlot;
|
12
|
+
}
|
@@ -1,107 +1,121 @@
|
|
1
|
-
import { YArrayEvent, YMapEvent } from 'yjs';
|
2
|
-
import {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
const component = slot.getContentAtIndex(componentIndex);
|
12
|
-
applySharedComponentToComponent(ev, path, component, translator, registry);
|
13
|
-
return;
|
14
|
-
}
|
15
|
-
apply(ev, slot, translator);
|
16
|
-
});
|
17
|
-
}
|
18
|
-
function applySharedComponentToComponent(ev, path, component, translator, registry) {
|
19
|
-
if (path.length) {
|
20
|
-
const childPath = path.shift();
|
21
|
-
const slot = component.slots.get(childPath[0]);
|
22
|
-
applySharedSlotToSlot(ev, path, slot, translator, registry, childPath[1] === 'formats');
|
23
|
-
return;
|
24
|
-
}
|
25
|
-
if (ev instanceof YMapEvent) {
|
26
|
-
ev.keysChanged.forEach(key => {
|
27
|
-
if (key === 'state') {
|
28
|
-
const state = ev.target.get('state');
|
29
|
-
component.updateState(draft => {
|
30
|
-
Object.assign(draft, state);
|
31
|
-
});
|
32
|
-
}
|
1
|
+
import { YArrayEvent, YMapEvent, YTextEvent } from 'yjs';
|
2
|
+
import { makeError } from '@textbus/core';
|
3
|
+
const collaborateErrorFn = makeError('Collaborate');
|
4
|
+
export class RemoteToLocal {
|
5
|
+
constructor(translator, registry) {
|
6
|
+
Object.defineProperty(this, "translator", {
|
7
|
+
enumerable: true,
|
8
|
+
configurable: true,
|
9
|
+
writable: true,
|
10
|
+
value: translator
|
33
11
|
});
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
slots.retain(action.retain);
|
40
|
-
}
|
41
|
-
else if (action.insert) {
|
42
|
-
action.insert.forEach(item => {
|
43
|
-
slots.insert(translator.createSlot(item.toJSON()));
|
44
|
-
});
|
45
|
-
}
|
46
|
-
else if (action.delete) {
|
47
|
-
slots.retain(slots.index);
|
48
|
-
slots.delete(action.delete);
|
49
|
-
}
|
12
|
+
Object.defineProperty(this, "registry", {
|
13
|
+
enumerable: true,
|
14
|
+
configurable: true,
|
15
|
+
writable: true,
|
16
|
+
value: registry
|
50
17
|
});
|
51
18
|
}
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
applySharedComponentToComponent(ev, path, component, translator, registry);
|
58
|
-
return;
|
59
|
-
}
|
60
|
-
if (ev instanceof YArrayEvent) {
|
61
|
-
ev.delta.forEach(action => {
|
62
|
-
if (Reflect.has(action, 'retain')) {
|
63
|
-
slot.retain(action.retain);
|
64
|
-
}
|
65
|
-
else if (action.insert) {
|
66
|
-
action.insert.forEach(item => {
|
67
|
-
if (typeof item === 'string') {
|
68
|
-
slot.insert(item);
|
69
|
-
}
|
70
|
-
else {
|
71
|
-
slot.insert(translator.createComponent(item.toJSON()));
|
72
|
-
}
|
73
|
-
});
|
19
|
+
transform(events, slot) {
|
20
|
+
events.forEach(ev => {
|
21
|
+
const path = [];
|
22
|
+
for (let i = 0; i < ev.path.length; i += 2) {
|
23
|
+
path.push(ev.path.slice(i, i + 2));
|
74
24
|
}
|
75
|
-
|
76
|
-
|
77
|
-
slot.
|
25
|
+
if (path.length) {
|
26
|
+
const componentIndex = path.shift()[0];
|
27
|
+
const component = slot.getContentAtIndex(componentIndex);
|
28
|
+
this.applySharedComponentToComponent(ev, path, component);
|
29
|
+
return;
|
78
30
|
}
|
31
|
+
this.applySharedSlotToSlot(ev, path, slot);
|
79
32
|
});
|
80
33
|
}
|
81
|
-
|
82
|
-
if (
|
83
|
-
const
|
34
|
+
applySharedComponentToComponent(ev, path, component) {
|
35
|
+
if (path.length) {
|
36
|
+
const childPath = path.shift();
|
37
|
+
const slot = component.slots.get(childPath[0]);
|
38
|
+
this.applySharedSlotToSlot(ev, path, slot);
|
39
|
+
return;
|
40
|
+
}
|
41
|
+
if (ev instanceof YMapEvent) {
|
84
42
|
ev.keysChanged.forEach(key => {
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
startIndex: 0,
|
90
|
-
endIndex: slot.length,
|
91
|
-
value: null
|
43
|
+
if (key === 'state') {
|
44
|
+
const state = ev.target.get('state');
|
45
|
+
component.updateState(draft => {
|
46
|
+
Object.assign(draft, state);
|
92
47
|
});
|
93
48
|
}
|
94
|
-
|
95
|
-
|
96
|
-
|
49
|
+
});
|
50
|
+
}
|
51
|
+
else if (ev instanceof YArrayEvent) {
|
52
|
+
const slots = component.slots;
|
53
|
+
ev.delta.forEach(action => {
|
54
|
+
if (Reflect.has(action, 'retain')) {
|
55
|
+
slots.retain(action.retain);
|
56
|
+
}
|
57
|
+
else if (action.insert) {
|
58
|
+
action.insert.forEach(item => {
|
59
|
+
slots.insert(this.createSlotBySharedSlot(item));
|
60
|
+
});
|
61
|
+
}
|
62
|
+
else if (action.delete) {
|
63
|
+
slots.retain(slots.index);
|
64
|
+
slots.delete(action.delete);
|
65
|
+
}
|
66
|
+
});
|
67
|
+
}
|
68
|
+
}
|
69
|
+
applySharedSlotToSlot(ev, path, slot) {
|
70
|
+
if (path.length) {
|
71
|
+
path.shift();
|
72
|
+
const delta = ev.target.parent.toDelta();
|
73
|
+
let componentIndex = 0;
|
74
|
+
for (let i = 0; i < delta.length; i++) {
|
75
|
+
const action = delta[i];
|
76
|
+
if (action.insert === ev.target) {
|
77
|
+
break;
|
78
|
+
}
|
79
|
+
componentIndex += typeof action.insert === 'string' ? action.insert.length : 1;
|
80
|
+
}
|
81
|
+
const component = slot.getContentAtIndex(componentIndex);
|
82
|
+
this.applySharedComponentToComponent(ev, path, component);
|
83
|
+
return;
|
84
|
+
}
|
85
|
+
if (ev instanceof YTextEvent) {
|
86
|
+
slot.retain(0);
|
87
|
+
ev.delta.forEach(action => {
|
88
|
+
if (Reflect.has(action, 'retain')) {
|
89
|
+
if (action.attributes) {
|
90
|
+
slot.retain(action.retain, Object.keys(action.attributes).map(key => {
|
91
|
+
return [this.registry.getFormatter(key), action.attributes[key]];
|
92
|
+
}));
|
93
|
+
}
|
94
|
+
slot.retain(action.retain);
|
95
|
+
}
|
96
|
+
else if (action.insert) {
|
97
|
+
if (typeof action.insert === 'string') {
|
98
|
+
slot.insert(action.insert, action.attributes ? Object.keys(action.attributes).map(key => {
|
99
|
+
return [this.registry.getFormatter(key), action.attributes[key]];
|
100
|
+
}) : []);
|
97
101
|
}
|
98
102
|
else {
|
99
|
-
|
103
|
+
const component = this.createComponentBySharedComponent(action.insert);
|
104
|
+
slot.insert(component);
|
100
105
|
}
|
101
|
-
}
|
106
|
+
}
|
107
|
+
else if (action.delete) {
|
108
|
+
slot.retain(slot.index);
|
109
|
+
slot.delete(action.delete);
|
110
|
+
}
|
111
|
+
else if (action.attributes) {
|
112
|
+
slot.updateState(draft => {
|
113
|
+
Object.assign(draft, action.attributes);
|
114
|
+
});
|
115
|
+
}
|
102
116
|
});
|
103
117
|
}
|
104
|
-
else {
|
118
|
+
else if (ev instanceof YMapEvent) {
|
105
119
|
ev.keysChanged.forEach(key => {
|
106
120
|
if (key === 'state') {
|
107
121
|
const state = ev.target.get('state');
|
@@ -112,32 +126,42 @@ function applySharedSlotToSlot(ev, path, slot, translator, registry, isUpdateFor
|
|
112
126
|
});
|
113
127
|
}
|
114
128
|
}
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
129
|
+
createComponentBySharedComponent(yMap) {
|
130
|
+
const slots = yMap.get('slots');
|
131
|
+
const componentLiteral = {
|
132
|
+
state: yMap.get('state'),
|
133
|
+
name: yMap.get('name'),
|
134
|
+
slots: slots.map(sharedSlot => {
|
135
|
+
return this.createSlotBySharedSlot(sharedSlot).toJSON();
|
136
|
+
})
|
137
|
+
};
|
138
|
+
return this.translator.createComponent(componentLiteral);
|
139
|
+
}
|
140
|
+
createSlotBySharedSlot(sharedSlot) {
|
141
|
+
const content = sharedSlot.get('content');
|
142
|
+
const delta = content.toDelta();
|
143
|
+
const slot = this.translator.createSlot({
|
144
|
+
schema: sharedSlot.get('schema'),
|
145
|
+
state: sharedSlot.get('state'),
|
146
|
+
formats: {},
|
147
|
+
content: []
|
148
|
+
});
|
149
|
+
for (const action of delta) {
|
121
150
|
if (action.insert) {
|
122
|
-
action.insert
|
123
|
-
|
124
|
-
|
125
|
-
}
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
}
|
131
|
-
});
|
132
|
-
}
|
133
|
-
else if (Reflect.has(action, 'retain')) {
|
134
|
-
slot.retain(action.retain);
|
151
|
+
if (typeof action.insert === 'string') {
|
152
|
+
slot.insert(action.insert, action.attributes ? Object.keys(action.attributes).map(key => {
|
153
|
+
return [this.registry.getFormatter(key), action.attributes[key]];
|
154
|
+
}) : []);
|
155
|
+
}
|
156
|
+
else {
|
157
|
+
slot.insert(this.createComponentBySharedComponent(action.insert));
|
158
|
+
}
|
135
159
|
}
|
136
|
-
else
|
137
|
-
|
138
|
-
slot.delete(action.delete);
|
160
|
+
else {
|
161
|
+
throw collaborateErrorFn('Unexpected delta action.');
|
139
162
|
}
|
140
|
-
}
|
163
|
+
}
|
164
|
+
return slot;
|
141
165
|
}
|
142
166
|
}
|
143
167
|
//# sourceMappingURL=remote-to-local.js.map
|