Refactor out _handleHistoryChange method

pull/13/head
singerdmx 4 years ago
parent 0ac6a11f28
commit acc779d394
  1. 25
      lib/widgets/controller.dart

@ -44,23 +44,24 @@ class QuillController extends ChangeNotifier {
void undo() { void undo() {
if (document.undo()) { if (document.undo()) {
if (this.selection.extentOffset >= document.length) { _handleHistoryChange();
updateSelection(TextSelection.collapsed(offset: document.length), }
ChangeSource.LOCAL); }
} else {
notifyListeners(); void _handleHistoryChange() {
} if (this.selection.extentOffset >= document.length) {
// cursor exceeds the length of document, position it in the end
updateSelection(
TextSelection.collapsed(offset: document.length), ChangeSource.LOCAL);
} else {
// no need to move cursor
notifyListeners();
} }
} }
void redo() { void redo() {
if (document.redo()) { if (document.redo()) {
if (this.selection.extentOffset >= document.length) { _handleHistoryChange();
updateSelection(TextSelection.collapsed(offset: document.length),
ChangeSource.LOCAL);
} else {
notifyListeners();
}
} }
} }

Loading…
Cancel
Save