forked from facebook/lexical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMarkdownShortcuts.ts
523 lines (448 loc) · 13.7 KB
/
MarkdownShortcuts.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
/**
* 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 {
ElementTransformer,
MultilineElementTransformer,
TextFormatTransformer,
TextMatchTransformer,
Transformer,
} from './MarkdownTransformers';
import type {ElementNode, LexicalEditor, TextNode} from 'lexical';
import {$isCodeNode} from '@lexical/code';
import {
$createRangeSelection,
$getSelection,
$isLineBreakNode,
$isRangeSelection,
$isRootOrShadowRoot,
$isTextNode,
$setSelection,
} from 'lexical';
import invariant from 'shared/invariant';
import {TRANSFORMERS} from '.';
import {canContainTransformableMarkdown} from './importTextTransformers';
import {indexBy, PUNCTUATION_OR_SPACE, transformersByType} from './utils';
function runElementTransformers(
parentNode: ElementNode,
anchorNode: TextNode,
anchorOffset: number,
elementTransformers: ReadonlyArray<ElementTransformer>,
): boolean {
const grandParentNode = parentNode.getParent();
if (
!$isRootOrShadowRoot(grandParentNode) ||
parentNode.getFirstChild() !== anchorNode
) {
return false;
}
const textContent = anchorNode.getTextContent();
// Checking for anchorOffset position to prevent any checks for cases when caret is too far
// from a line start to be a part of block-level markdown trigger.
//
// TODO:
// Can have a quick check if caret is close enough to the beginning of the string (e.g. offset less than 10-20)
// since otherwise it won't be a markdown shortcut, but tables are exception
if (textContent[anchorOffset - 1] !== ' ') {
return false;
}
for (const {regExp, replace} of elementTransformers) {
const match = textContent.match(regExp);
if (
match &&
match[0].length ===
(match[0].endsWith(' ') ? anchorOffset : anchorOffset - 1)
) {
const nextSiblings = anchorNode.getNextSiblings();
const [leadingNode, remainderNode] = anchorNode.splitText(anchorOffset);
leadingNode.remove();
const siblings = remainderNode
? [remainderNode, ...nextSiblings]
: nextSiblings;
if (replace(parentNode, siblings, match, false) !== false) {
return true;
}
}
}
return false;
}
function runMultilineElementTransformers(
parentNode: ElementNode,
anchorNode: TextNode,
anchorOffset: number,
elementTransformers: ReadonlyArray<MultilineElementTransformer>,
): boolean {
const grandParentNode = parentNode.getParent();
if (
!$isRootOrShadowRoot(grandParentNode) ||
parentNode.getFirstChild() !== anchorNode
) {
return false;
}
const textContent = anchorNode.getTextContent();
// Checking for anchorOffset position to prevent any checks for cases when caret is too far
// from a line start to be a part of block-level markdown trigger.
//
// TODO:
// Can have a quick check if caret is close enough to the beginning of the string (e.g. offset less than 10-20)
// since otherwise it won't be a markdown shortcut, but tables are exception
if (textContent[anchorOffset - 1] !== ' ') {
return false;
}
for (const {regExpStart, replace, regExpEnd} of elementTransformers) {
if (
(regExpEnd && !('optional' in regExpEnd)) ||
(regExpEnd && 'optional' in regExpEnd && !regExpEnd.optional)
) {
continue;
}
const match = textContent.match(regExpStart);
if (
match &&
match[0].length ===
(match[0].endsWith(' ') ? anchorOffset : anchorOffset - 1)
) {
const nextSiblings = anchorNode.getNextSiblings();
const [leadingNode, remainderNode] = anchorNode.splitText(anchorOffset);
leadingNode.remove();
const siblings = remainderNode
? [remainderNode, ...nextSiblings]
: nextSiblings;
if (replace(parentNode, siblings, match, null, null, false) !== false) {
return true;
}
}
}
return false;
}
function runTextMatchTransformers(
anchorNode: TextNode,
anchorOffset: number,
transformersByTrigger: Readonly<Record<string, Array<TextMatchTransformer>>>,
): boolean {
let textContent = anchorNode.getTextContent();
const lastChar = textContent[anchorOffset - 1];
const transformers = transformersByTrigger[lastChar];
if (transformers == null) {
return false;
}
// If typing in the middle of content, remove the tail to do
// reg exp match up to a string end (caret position)
if (anchorOffset < textContent.length) {
textContent = textContent.slice(0, anchorOffset);
}
for (const transformer of transformers) {
if (!transformer.replace || !transformer.regExp) {
continue;
}
const match = textContent.match(transformer.regExp);
if (match === null) {
continue;
}
const startIndex = match.index || 0;
const endIndex = startIndex + match[0].length;
let replaceNode;
if (startIndex === 0) {
[replaceNode] = anchorNode.splitText(endIndex);
} else {
[, replaceNode] = anchorNode.splitText(startIndex, endIndex);
}
replaceNode.selectNext(0, 0);
transformer.replace(replaceNode, match);
return true;
}
return false;
}
function $runTextFormatTransformers(
anchorNode: TextNode,
anchorOffset: number,
textFormatTransformers: Readonly<
Record<string, ReadonlyArray<TextFormatTransformer>>
>,
): boolean {
const textContent = anchorNode.getTextContent();
const closeTagEndIndex = anchorOffset - 1;
const closeChar = textContent[closeTagEndIndex];
// Quick check if we're possibly at the end of inline markdown style
const matchers = textFormatTransformers[closeChar];
if (!matchers) {
return false;
}
for (const matcher of matchers) {
const {tag} = matcher;
const tagLength = tag.length;
const closeTagStartIndex = closeTagEndIndex - tagLength + 1;
// If tag is not single char check if rest of it matches with text content
if (tagLength > 1) {
if (
!isEqualSubString(textContent, closeTagStartIndex, tag, 0, tagLength)
) {
continue;
}
}
// Space before closing tag cancels inline markdown
if (textContent[closeTagStartIndex - 1] === ' ') {
continue;
}
// Some tags can not be used within words, hence should have newline/space/punctuation after it
const afterCloseTagChar = textContent[closeTagEndIndex + 1];
if (
matcher.intraword === false &&
afterCloseTagChar &&
!PUNCTUATION_OR_SPACE.test(afterCloseTagChar)
) {
continue;
}
const closeNode = anchorNode;
let openNode = closeNode;
let openTagStartIndex = getOpenTagStartIndex(
textContent,
closeTagStartIndex,
tag,
);
// Go through text node siblings and search for opening tag
// if haven't found it within the same text node as closing tag
let sibling: TextNode | null = openNode;
while (
openTagStartIndex < 0 &&
(sibling = sibling.getPreviousSibling<TextNode>())
) {
if ($isLineBreakNode(sibling)) {
break;
}
if ($isTextNode(sibling)) {
const siblingTextContent = sibling.getTextContent();
openNode = sibling;
openTagStartIndex = getOpenTagStartIndex(
siblingTextContent,
siblingTextContent.length,
tag,
);
}
}
// Opening tag is not found
if (openTagStartIndex < 0) {
continue;
}
// No content between opening and closing tag
if (
openNode === closeNode &&
openTagStartIndex + tagLength === closeTagStartIndex
) {
continue;
}
// Checking longer tags for repeating chars (e.g. *** vs **)
const prevOpenNodeText = openNode.getTextContent();
if (
openTagStartIndex > 0 &&
prevOpenNodeText[openTagStartIndex - 1] === closeChar
) {
continue;
}
// Some tags can not be used within words, hence should have newline/space/punctuation before it
const beforeOpenTagChar = prevOpenNodeText[openTagStartIndex - 1];
if (
matcher.intraword === false &&
beforeOpenTagChar &&
!PUNCTUATION_OR_SPACE.test(beforeOpenTagChar)
) {
continue;
}
// Clean text from opening and closing tags (starting from closing tag
// to prevent any offset shifts if we start from opening one)
const prevCloseNodeText = closeNode.getTextContent();
const closeNodeText =
prevCloseNodeText.slice(0, closeTagStartIndex) +
prevCloseNodeText.slice(closeTagEndIndex + 1);
closeNode.setTextContent(closeNodeText);
const openNodeText =
openNode === closeNode ? closeNodeText : prevOpenNodeText;
openNode.setTextContent(
openNodeText.slice(0, openTagStartIndex) +
openNodeText.slice(openTagStartIndex + tagLength),
);
const selection = $getSelection();
const nextSelection = $createRangeSelection();
$setSelection(nextSelection);
// Adjust offset based on deleted chars
const newOffset =
closeTagEndIndex - tagLength * (openNode === closeNode ? 2 : 1) + 1;
nextSelection.anchor.set(openNode.__key, openTagStartIndex, 'text');
nextSelection.focus.set(closeNode.__key, newOffset, 'text');
// Apply formatting to selected text
for (const format of matcher.format) {
if (!nextSelection.hasFormat(format)) {
nextSelection.formatText(format);
}
}
// Collapse selection up to the focus point
nextSelection.anchor.set(
nextSelection.focus.key,
nextSelection.focus.offset,
nextSelection.focus.type,
);
// Remove formatting from collapsed selection
for (const format of matcher.format) {
if (nextSelection.hasFormat(format)) {
nextSelection.toggleFormat(format);
}
}
if ($isRangeSelection(selection)) {
nextSelection.format = selection.format;
}
return true;
}
return false;
}
function getOpenTagStartIndex(
string: string,
maxIndex: number,
tag: string,
): number {
const tagLength = tag.length;
for (let i = maxIndex; i >= tagLength; i--) {
const startIndex = i - tagLength;
if (
isEqualSubString(string, startIndex, tag, 0, tagLength) && // Space after opening tag cancels transformation
string[startIndex + tagLength] !== ' '
) {
return startIndex;
}
}
return -1;
}
function isEqualSubString(
stringA: string,
aStart: number,
stringB: string,
bStart: number,
length: number,
): boolean {
for (let i = 0; i < length; i++) {
if (stringA[aStart + i] !== stringB[bStart + i]) {
return false;
}
}
return true;
}
export function registerMarkdownShortcuts(
editor: LexicalEditor,
transformers: Array<Transformer> = TRANSFORMERS,
): () => void {
const byType = transformersByType(transformers);
const textFormatTransformersByTrigger = indexBy(
byType.textFormat,
({tag}) => tag[tag.length - 1],
);
const textMatchTransformersByTrigger = indexBy(
byType.textMatch,
({trigger}) => trigger,
);
for (const transformer of transformers) {
const type = transformer.type;
if (
type === 'element' ||
type === 'text-match' ||
type === 'multiline-element'
) {
const dependencies = transformer.dependencies;
for (const node of dependencies) {
if (!editor.hasNode(node)) {
invariant(
false,
'MarkdownShortcuts: missing dependency %s for transformer. Ensure node dependency is included in editor initial config.',
node.getType(),
);
}
}
}
}
const $transform = (
parentNode: ElementNode,
anchorNode: TextNode,
anchorOffset: number,
) => {
if (
runElementTransformers(
parentNode,
anchorNode,
anchorOffset,
byType.element,
)
) {
return;
}
if (
runMultilineElementTransformers(
parentNode,
anchorNode,
anchorOffset,
byType.multilineElement,
)
) {
return;
}
if (
runTextMatchTransformers(
anchorNode,
anchorOffset,
textMatchTransformersByTrigger,
)
) {
return;
}
$runTextFormatTransformers(
anchorNode,
anchorOffset,
textFormatTransformersByTrigger,
);
};
return editor.registerUpdateListener(
({tags, dirtyLeaves, editorState, prevEditorState}) => {
// Ignore updates from collaboration and undo/redo (as changes already calculated)
if (tags.has('collaboration') || tags.has('historic')) {
return;
}
// If editor is still composing (i.e. backticks) we must wait before the user confirms the key
if (editor.isComposing()) {
return;
}
const selection = editorState.read($getSelection);
const prevSelection = prevEditorState.read($getSelection);
// We expect selection to be a collapsed range and not match previous one (as we want
// to trigger transforms only as user types)
if (
!$isRangeSelection(prevSelection) ||
!$isRangeSelection(selection) ||
!selection.isCollapsed() ||
selection.is(prevSelection)
) {
return;
}
const anchorKey = selection.anchor.key;
const anchorOffset = selection.anchor.offset;
const anchorNode = editorState._nodeMap.get(anchorKey);
if (
!$isTextNode(anchorNode) ||
!dirtyLeaves.has(anchorKey) ||
(anchorOffset !== 1 && anchorOffset > prevSelection.anchor.offset + 1)
) {
return;
}
editor.update(() => {
if (!canContainTransformableMarkdown(anchorNode)) {
return;
}
const parentNode = anchorNode.getParent();
if (parentNode === null || $isCodeNode(parentNode)) {
return;
}
$transform(parentNode, anchorNode, selection.anchor.offset);
});
},
);
}