Refactor out _handleHistoryChange method

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

@ -44,23 +44,24 @@ class QuillController extends ChangeNotifier {
void undo() {
if (document.undo()) {
_handleHistoryChange();
}
}
void _handleHistoryChange() {
if (this.selection.extentOffset >= document.length) {
updateSelection(TextSelection.collapsed(offset: document.length),
ChangeSource.LOCAL);
// 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() {
if (document.redo()) {
if (this.selection.extentOffset >= document.length) {
updateSelection(TextSelection.collapsed(offset: document.length),
ChangeSource.LOCAL);
} else {
notifyListeners();
}
_handleHistoryChange();
}
}

Loading…
Cancel
Save