From 880669c0e501e9cb90621bcfb2a770b60d385400 Mon Sep 17 00:00:00 2001 From: Vincent Chan Date: Thu, 8 Sep 2022 16:39:53 +0800 Subject: [PATCH] feat: handle paste multi lines --- .../copy_paste_handler.dart | 29 +++++++++---------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/copy_paste_handler.dart b/frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/copy_paste_handler.dart index a1d88c26f7..c2e1e8e16d 100644 --- a/frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/copy_paste_handler.dart +++ b/frontend/app_flowy/packages/appflowy_editor/lib/src/service/internal_key_event_handlers/copy_paste_handler.dart @@ -16,19 +16,11 @@ Selection _computeSelectionAfterPasteMultipleNodes( EditorState editorState, List nodes) { final currentSelection = editorState.cursorSelection!; final currentCursor = currentSelection.start; - final currentNode = editorState.document.nodeAtPath(currentCursor.path)!; final currentPath = [...currentCursor.path]; - if (currentNode is TextNode) { - currentPath[currentPath.length - 1] += nodes.length; - int lenOfLastNode = _textLengthOfNode(nodes.last); - return Selection.collapsed( - Position(path: currentPath, offset: lenOfLastNode)); - } else { - currentPath[currentPath.length - 1] += nodes.length; - int lenOfLastNode = _textLengthOfNode(nodes.last); - return Selection.collapsed( - Position(path: currentPath, offset: lenOfLastNode)); - } + currentPath[currentPath.length - 1] += nodes.length; + int lenOfLastNode = _textLengthOfNode(nodes.last); + return Selection.collapsed( + Position(path: currentPath, offset: lenOfLastNode)); } _handleCopy(EditorState editorState) async { @@ -105,11 +97,8 @@ _pasteHTML(EditorState editorState, String html) { _pasteMultipleLinesInText(editorState, path, selection.start.offset, nodes); } -_pasteMultipleLinesInText( +void _pasteMultipleLinesInText( EditorState editorState, List path, int offset, List nodes) { - final afterSelection = - _computeSelectionAfterPasteMultipleNodes(editorState, nodes); - final tb = TransactionBuilder(editorState); final firstNode = nodes[0]; @@ -131,6 +120,10 @@ _pasteMultipleLinesInText( final tailNodes = nodes.sublist(1); path[path.length - 1]++; + + final afterSelection = + _computeSelectionAfterPasteMultipleNodes(editorState, tailNodes); + if (tailNodes.isNotEmpty) { if (tailNodes.last.type == "text") { final tailTextNode = tailNodes.last as TextNode; @@ -148,7 +141,11 @@ _pasteMultipleLinesInText( return; } + final afterSelection = + _computeSelectionAfterPasteMultipleNodes(editorState, nodes); + path[path.length - 1]++; + tb.setAfterSelection(afterSelection); tb.insertNodes(path, nodes); tb.commit(); }