fix(editor): implement editor shortcut action for home and end keys to fix exception about unimplemented ScrollToDocumentBoundaryIntent (#1937)

* fix(editor): implement editor shortcut action for home and end keys to fix thrown exception about unimplemented ScrollToDocumentBoundaryIntent action
pull/1954/head
Ellet 10 months ago committed by GitHub
parent 7d6731ca40
commit 5d9ad020c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 26
      lib/src/widgets/raw_editor/raw_editor_actions.dart
  2. 15
      lib/src/widgets/raw_editor/raw_editor_state.dart

@ -580,3 +580,29 @@ class QuillEditorInsertEmbedIntent extends Intent {
final Attribute type;
}
class NavigateToDocumentBoundaryAction
extends ContextAction<ScrollToDocumentBoundaryIntent> {
NavigateToDocumentBoundaryAction(this.state);
final QuillRawEditorState state;
@override
Object? invoke(
ScrollToDocumentBoundaryIntent intent, [
BuildContext? context,
]) {
return Actions.invoke(
context!,
UpdateSelectionIntent(
state.textEditingValue,
intent.forward
? TextSelection.collapsed(
offset: state.controller.plainTextEditingValue.text.length,
)
: const TextSelection.collapsed(offset: 0),
SelectionChangedCause.keyboard,
),
);
}
}

@ -701,6 +701,18 @@ class QuillRawEditorState extends EditorState
control: !isDesktopMacOS,
meta: isDesktopMacOS,
): const OpenSearchIntent(),
// Navigate to the start or end of the document
SingleActivator(
LogicalKeyboardKey.home,
control: !isDesktopMacOS,
meta: isDesktopMacOS,
): const ScrollToDocumentBoundaryIntent(forward: false),
SingleActivator(
LogicalKeyboardKey.end,
control: !isDesktopMacOS,
meta: isDesktopMacOS,
): const ScrollToDocumentBoundaryIntent(forward: true),
}, {
...?widget.configurations.customShortcuts
}),
@ -1674,7 +1686,8 @@ class QuillRawEditorState extends EditorState
IndentSelectionIntent: _indentSelectionAction,
QuillEditorApplyHeaderIntent: _applyHeaderAction,
QuillEditorApplyCheckListIntent: _applyCheckListAction,
QuillEditorApplyLinkIntent: QuillEditorApplyLinkAction(this)
QuillEditorApplyLinkIntent: QuillEditorApplyLinkAction(this),
ScrollToDocumentBoundaryIntent: NavigateToDocumentBoundaryAction(this)
};
@override

Loading…
Cancel
Save