Skip to content

Commit 90f4fe0

Browse files
[SuperEditor]- Make getDocumentPositionAfterExpandedDeletion return null for collapsed selections (Resolves #2431) (#2436)
1 parent d1a173d commit 90f4fe0

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

super_editor/lib/src/default_editor/common_editor_operations.dart

+7
Original file line numberDiff line numberDiff line change
@@ -1396,6 +1396,13 @@ class CommonEditorOperations {
13961396
}) {
13971397
// Figure out where the caret should appear after the
13981398
// deletion.
1399+
1400+
if (selection.isCollapsed) {
1401+
// There is no expanded deletion when the selection is collapsed. Therefore,
1402+
// no selection change is expected.
1403+
return null;
1404+
}
1405+
13991406
// TODO: This calculation depends upon the first
14001407
// selected node still existing after the deletion. This
14011408
// is a fragile expectation and should be revisited.

super_editor/test/super_editor/infrastructure/common_editor_operations_test.dart

+23
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,29 @@ void main() {
186186
);
187187
});
188188
});
189+
190+
group('getDocumentPositionAfterExpandedDeletion', () {
191+
test('returns null for collapsed selection', () {
192+
final node = HorizontalRuleNode(
193+
id: "1",
194+
);
195+
196+
expect(
197+
CommonEditorOperations.getDocumentPositionAfterExpandedDeletion(
198+
document: MutableDocument(nodes: [
199+
node,
200+
]),
201+
selection: DocumentSelection.collapsed(
202+
position: DocumentPosition(
203+
nodeId: node.id,
204+
nodePosition: node.endPosition,
205+
),
206+
),
207+
),
208+
isNull,
209+
);
210+
});
211+
});
189212
});
190213
}
191214

0 commit comments

Comments
 (0)