-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathFlatStructureUtils.ts
More file actions
307 lines (288 loc) · 8.69 KB
/
Copy pathFlatStructureUtils.ts
File metadata and controls
307 lines (288 loc) · 8.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
import type {CodeHighlightNode} from './CodeHighlightNode';
import type {
CaretDirection,
LexicalNode,
LineBreakNode,
RangeSelection,
SiblingCaret,
TabNode,
TextNode,
} from 'lexical';
import invariant from '@lexical/internal/invariant';
import {
$createLineBreakNode,
$createTabNode,
$getSiblingCaret,
$isElementNode,
$isLineBreakNode,
$isTabNode,
getTextDirection,
tokenizeRawText,
} from 'lexical';
import {
$createCodeHighlightNode,
$isCodeHighlightNode,
} from './CodeHighlightNode';
// The anchor is generic (rather than the narrower
// `CodeHighlightNode | TabNode | LineBreakNode`) because callers may have only
// narrowed as far as TextNode; the matched siblings are always
// CodeHighlightNode/TabNode, and an unmatched anchor is returned unchanged.
function $getLastMatchingCodeNode<
T extends TextNode | LineBreakNode,
D extends CaretDirection,
>(anchor: T, direction: D): T | CodeHighlightNode | TabNode {
let matchingNode: T | CodeHighlightNode | TabNode = anchor;
for (
let caret: null | SiblingCaret<LexicalNode, D> = $getSiblingCaret(
anchor,
direction,
);
caret && ($isCodeHighlightNode(caret.origin) || $isTabNode(caret.origin));
caret = caret.getAdjacentCaret()
) {
matchingNode = caret.origin;
}
return matchingNode;
}
export function $getFirstCodeNodeOfLine<T extends TextNode | LineBreakNode>(
anchor: T,
): T | CodeHighlightNode | TabNode {
return $getLastMatchingCodeNode(anchor, 'previous');
}
export function $getLastCodeNodeOfLine<T extends TextNode | LineBreakNode>(
anchor: T,
): T | CodeHighlightNode | TabNode {
return $getLastMatchingCodeNode(anchor, 'next');
}
/**
* Determines the visual writing direction of a code line.
*
* Scans the line segments (CodeHighlightNode/TabNode) from start to end
* and returns the first strong direction found ("ltr" or "rtl").
* If no strong character is found, falls back to the parent element's
* direction. Returns null if indeterminate.
*/
export function $getCodeLineDirection(
anchor: CodeHighlightNode | TabNode | LineBreakNode,
): 'ltr' | 'rtl' | null {
const start = $getFirstCodeNodeOfLine(anchor);
const end = $getLastCodeNodeOfLine(anchor);
let node: null | LexicalNode = start;
while (node !== null) {
if ($isCodeHighlightNode(node)) {
const direction = getTextDirection(node.getTextContent());
if (direction !== null) {
return direction;
}
}
if (node === end) {
break;
}
node = node.getNextSibling();
}
const parent = start.getParent();
if ($isElementNode(parent)) {
const parentDirection = parent.getDirection();
if (parentDirection === 'ltr' || parentDirection === 'rtl') {
return parentDirection;
}
}
return null;
}
export function $getStartOfCodeInLine(
anchor: CodeHighlightNode | TabNode,
offset: number,
): null | {
node: CodeHighlightNode | TabNode | LineBreakNode;
offset: number;
} {
let last: null | {
node: CodeHighlightNode | TabNode | LineBreakNode;
offset: number;
} = null;
let lastNonBlank: null | {node: CodeHighlightNode; offset: number} = null;
let node: null | CodeHighlightNode | TabNode | LineBreakNode = anchor;
let nodeOffset = offset;
let nodeTextContent = anchor.getTextContent();
while (true) {
if (nodeOffset === 0) {
node = node.getPreviousSibling();
if (node === null) {
break;
}
invariant(
$isCodeHighlightNode(node) ||
$isTabNode(node) ||
$isLineBreakNode(node),
'Expected a valid Code Node: CodeHighlightNode, TabNode, LineBreakNode',
);
if ($isLineBreakNode(node)) {
last = {
node,
offset: 1,
};
break;
}
nodeOffset = Math.max(0, node.getTextContentSize() - 1);
nodeTextContent = node.getTextContent();
} else {
nodeOffset--;
}
const character = nodeTextContent[nodeOffset];
if ($isCodeHighlightNode(node) && character !== ' ') {
lastNonBlank = {
node,
offset: nodeOffset,
};
}
}
// lastNonBlank !== null: anchor in the middle of code; move to line beginning
if (lastNonBlank !== null) {
return lastNonBlank;
}
// Spaces, tabs or nothing ahead of anchor
let codeCharacterAtAnchorOffset = null;
if (offset < anchor.getTextContentSize()) {
if ($isCodeHighlightNode(anchor)) {
codeCharacterAtAnchorOffset = anchor.getTextContent()[offset];
}
} else {
const nextSibling = anchor.getNextSibling();
if ($isCodeHighlightNode(nextSibling)) {
codeCharacterAtAnchorOffset = nextSibling.getTextContent()[0];
}
}
if (
codeCharacterAtAnchorOffset !== null &&
codeCharacterAtAnchorOffset !== ' '
) {
// Borderline whitespace and code, move to line beginning
return last;
} else {
const nextNonBlank = findNextNonBlankInLine(anchor, offset);
if (nextNonBlank !== null) {
return nextNonBlank;
} else {
return last;
}
}
}
function findNextNonBlankInLine(
anchor: LexicalNode,
offset: number,
): null | {node: CodeHighlightNode; offset: number} {
let node: null | LexicalNode = anchor;
let nodeOffset = offset;
let nodeTextContent = anchor.getTextContent();
let nodeTextContentSize = anchor.getTextContentSize();
while (true) {
if (!$isCodeHighlightNode(node) || nodeOffset === nodeTextContentSize) {
node = node.getNextSibling();
if (node === null || $isLineBreakNode(node)) {
return null;
}
if ($isCodeHighlightNode(node)) {
nodeOffset = 0;
nodeTextContent = node.getTextContent();
nodeTextContentSize = node.getTextContentSize();
}
}
if ($isCodeHighlightNode(node)) {
if (nodeTextContent[nodeOffset] !== ' ') {
return {
node,
offset: nodeOffset,
};
}
nodeOffset++;
}
}
}
export function $getEndOfCodeInLine(
anchor: CodeHighlightNode | TabNode,
): CodeHighlightNode | TabNode {
const lastNode = $getLastCodeNodeOfLine(anchor);
invariant(
!$isLineBreakNode(lastNode),
'Unexpected lineBreakNode in getEndOfCodeInLine',
);
return lastNode;
}
/**
* Plain split of code text into CodeHighlightNodes (with no highlight
* type) + LineBreakNodes + TabNodes. Used when the tokenizer opts out
* of a default language so a previously highlighted block still
* renders its `\n` / `\t` as real line breaks / tabs, while staying
* compatible with the indent / shift-lines handlers that only accept
* CodeHighlightNode + TabNode + LineBreakNode inside a CodeNode.
*/
export function $plainifyCodeContent(text: string): LexicalNode[] {
const out: LexicalNode[] = [];
tokenizeRawText(text, {
linebreak: () => out.push($createLineBreakNode()),
tab: () => out.push($createTabNode()),
text: part => out.push($createCodeHighlightNode(part)),
});
return out;
}
/**
* Strip up to `tabSize` leading spaces from a {@link CodeHighlightNode} that
* starts a code line, to support outdenting space-indented code lines (e.g.
* code formatted with prettier). Returns true if any spaces were stripped.
*
* Best-effort: a line with fewer than `tabSize` leading spaces has all of
* them stripped, matching VS Code / IntelliJ behavior.
*
* Selection is preserved relative to line content. Anchor/focus offsets
* pointing into `node` shift left by the number of stripped characters
* (clamped to 0). The underlying TextNode mutation does not adjust
* selection offsets that already point into the old text, so we patch
* them up explicitly.
*/
export function $outdentLeadingSpaces(
node: CodeHighlightNode,
tabSize: number,
selection: RangeSelection,
): boolean {
if (!Number.isInteger(tabSize) || tabSize <= 0) {
return false;
}
const text = node.getTextContent();
const leading = /^ +/.exec(text);
if (!leading) {
return false;
}
const stripCount = Math.min(tabSize, leading[0].length);
const lineKey = node.getKey();
const oldAnchorOffset =
selection.anchor.key === lineKey && selection.anchor.type === 'text'
? selection.anchor.offset
: null;
const oldFocusOffset =
selection.focus.key === lineKey && selection.focus.type === 'text'
? selection.focus.offset
: null;
node.spliceText(0, stripCount, '');
if (oldAnchorOffset !== null) {
selection.anchor.set(
lineKey,
Math.max(0, oldAnchorOffset - stripCount),
'text',
);
}
if (oldFocusOffset !== null) {
selection.focus.set(
lineKey,
Math.max(0, oldFocusOffset - stripCount),
'text',
);
}
return true;
}