-
Notifications
You must be signed in to change notification settings - Fork 6k
TextEditingDelta Support for the Web #28527
Changes from 1 commit
86885dd
9ef2c43
b93b043
d3201a1
9f99a66
8d69317
3ba145c
728055a
efbdf5b
1c330f3
0dd249a
37b757e
fd1396f
cb6ef96
4f610e0
f772bf1
f6e4d32
704d4f9
577aa59
0dcf1f2
a2e5525
95fe97b
5921215
a2a8b9d
1fbab86
928f186
03d63c3
51eabc8
125580e
26668cb
5a33dbf
e47a3ed
04020c2
13ca351
73c1411
be578c3
2df95b0
5e2b294
ac3407b
fa1d886
6ced401
15868f6
059fe74
26e676a
9196226
38bc244
cc0bb16
b7a91da
a600e9e
98fad47
786a528
3f260ce
b9db35a
41765f8
8ff4f2d
f4a858a
cbb6b6b
b596600
5a8a5f7
6645a0b
da90e99
6217ea9
b5e0b55
7a5aff9
c4c9cf6
9d97c88
0fc279d
fc823e9
6bf2ca7
acbc0de
7722380
0bb7f30
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -531,7 +531,10 @@ class TextEditingDeltaState { | |
| // 1. Find all matches for deltaText. | ||
| // 2. Apply matches/replacement to oldText until oldText matches the | ||
| // new editing state's text value. | ||
| final RegExp deltaTextPattern = RegExp(r'' + newTextEditingDeltaState.deltaText + r''); | ||
| final bool isPeriodInsertion = newTextEditingDeltaState.deltaText == '. '; | ||
| final RegExp deltaTextPattern = isPeriodInsertion? | ||
| RegExp(r'\' + newTextEditingDeltaState.deltaText + r'') | ||
| : RegExp(r'' + newTextEditingDeltaState.deltaText + r''); | ||
|
||
| for (final Match match in deltaTextPattern.allMatches(newEditingState.text!)) { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So in the example of double space inserting a period, the matches here will be all periods in the text, and you're trying to find the one that is new?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. in the case of double space inserting a period the When we have the matched ranges we iterate through them and apply the |
||
| String textAfterMatch; | ||
| int actualEnd; | ||
|
|
@@ -547,7 +550,7 @@ class TextEditingDeltaState { | |
| ), | ||
| ); | ||
| } else { | ||
| actualEnd = match.end - 1; | ||
| actualEnd = actualEnd = isPeriodInsertion? match.end - 1 : match.end; | ||
| textAfterMatch = _replace( | ||
| newTextEditingDeltaState.oldText, | ||
| newTextEditingDeltaState.deltaText, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does
deltaTextcontain unescaped user-supplied text? If so, thenRegExpwill parse it like a regular expression. For example, what happens if the user enters.*?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it does contain unescaped text. I think a better solution here would be to use
RegExp.escape(deltaText)which will give us an escaped version of the given text.