-
-
Notifications
You must be signed in to change notification settings - Fork 620
/
replace.ts
184 lines (162 loc) · 6.38 KB
/
replace.ts
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
/**
* Copyright 2023-present DreamNum Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import type { DocumentDataModel, IAccessor, IDeleteAction, IDocumentBody, IMutationInfo, IRetainAction, ITextRange, ITextRangeParam } from '@univerjs/core';
import { IUniverInstanceService, JSONX, TextX, TextXActionType } from '@univerjs/core';
import type { ITextRangeWithStyle } from '@univerjs/engine-render';
import type { IRichTextEditingMutationParams } from '../commands/mutations/core-editing.mutation';
import { RichTextEditingMutation } from '../commands/mutations/core-editing.mutation';
import { TextSelectionManagerService } from '../services/text-selection-manager.service';
import { getRichTextEditPath } from '../commands/util';
import { isIntersecting, shouldDeleteCustomRange } from './custom-range';
import { getDeleteSelection } from './selection';
// If the selection contains line breaks,
// paragraph information needs to be preserved when performing the CUT operation
// eslint-disable-next-line max-lines-per-function
export function getRetainAndDeleteAndExcludeLineBreak(
selection: ITextRange,
body: IDocumentBody,
segmentId: string = '',
memoryCursor: number = 0,
preserveLineBreak: boolean = true
): Array<IRetainAction | IDeleteAction> {
const { startOffset, endOffset } = getDeleteSelection(selection, body);
const dos: Array<IRetainAction | IDeleteAction> = [];
const { paragraphs = [], dataStream } = body;
const textStart = startOffset - memoryCursor;
const textEnd = endOffset - memoryCursor;
const paragraphInRange = paragraphs?.find(
(p) => p.startIndex - memoryCursor >= textStart && p.startIndex - memoryCursor < textEnd
);
const relativeCustomRanges = body.customRanges?.filter((customRange) => isIntersecting(customRange.startIndex, customRange.endIndex, startOffset, endOffset));
const toDeleteRanges = new Set(relativeCustomRanges?.filter((customRange) => shouldDeleteCustomRange(startOffset, endOffset - startOffset, customRange, dataStream)));
const retainPoints = new Set<number>();
relativeCustomRanges?.forEach((range) => {
if (toDeleteRanges.has(range)) {
return;
}
if (range.startIndex - memoryCursor >= textStart &&
range.startIndex - memoryCursor <= textEnd &&
range.endIndex - memoryCursor > textEnd) {
retainPoints.add(range.startIndex);
}
if (range.endIndex - memoryCursor >= textStart &&
range.endIndex - memoryCursor <= textEnd &&
range.startIndex < textStart) {
retainPoints.add(range.endIndex);
}
});
if (textStart > 0) {
dos.push({
t: TextXActionType.RETAIN,
len: textStart,
segmentId,
});
}
if (preserveLineBreak) {
if (paragraphInRange && paragraphInRange.startIndex - memoryCursor > textStart) {
const paragraphIndex = paragraphInRange.startIndex - memoryCursor;
retainPoints.add(paragraphIndex);
}
}
const sortedRetains = [...retainPoints].sort((pre, aft) => pre - aft);
let cursor = textStart;
sortedRetains.forEach((pos) => {
const len = pos - cursor;
if (len > 0) {
dos.push({
t: TextXActionType.DELETE,
len,
line: 0,
segmentId,
});
}
dos.push({
t: TextXActionType.RETAIN,
len: 1,
segmentId,
});
cursor = pos + 1;
});
if (cursor < textEnd) {
dos.push({
t: TextXActionType.DELETE,
len: textEnd - cursor,
line: 0,
segmentId,
});
}
return dos;
}
export interface IReplaceSelectionFactoryParams {
unitId: string;
selection?: ITextRangeParam;
originBody?: IDocumentBody;
/** Body to be inserted at the given position. */
body: IDocumentBody; // Do not contain `\r\n` at the end.
textRanges?: ITextRangeWithStyle[];
}
export function replaceSelectionFactory(accessor: IAccessor, params: IReplaceSelectionFactoryParams) {
const { unitId, originBody, body: insertBody } = params;
const univerInstanceService = accessor.get(IUniverInstanceService);
const docDataModel = univerInstanceService.getUnit<DocumentDataModel>(unitId);
if (!docDataModel) {
return false;
}
const segmentId = params.selection?.segmentId;
let body: IDocumentBody | undefined;
if (!params.originBody) {
body = docDataModel.getSelfOrHeaderFooterModel(segmentId)?.getBody();
} else {
body = originBody;
}
if (!body) return false;
const textSelectionManagerService = accessor.get(TextSelectionManagerService);
const selection = params.selection ?? textSelectionManagerService.getActiveTextRangeWithStyle();
if (!selection || !body) {
return false;
}
const textRanges = params.textRanges ?? [{
startOffset: selection.startOffset + insertBody.dataStream.length,
endOffset: selection.startOffset + insertBody.dataStream.length,
collapsed: true,
segmentId,
}];
const doMutation: IMutationInfo<IRichTextEditingMutationParams> = {
id: RichTextEditingMutation.id,
params: {
unitId,
actions: [],
textRanges,
debounce: true,
segmentId,
},
};
const textX = new TextX();
const jsonX = JSONX.getInstance();
// delete
textX.push(...getRetainAndDeleteAndExcludeLineBreak(selection, body, segmentId));
// insert
textX.push({
t: TextXActionType.INSERT,
body: insertBody,
len: insertBody.dataStream.length,
line: 0,
segmentId,
});
const path = getRichTextEditPath(docDataModel, segmentId);
doMutation.params.actions = jsonX.editOp(textX.serialize(), path);
return doMutation;
}