adjust cursor after undo/redo

pull/13/head
li3317 4 years ago
parent 52e08d4a21
commit e475d3b0c9
  1. 4
      lib/models/documents/document.dart
  2. 21
      lib/models/documents/history.dart
  3. 21
      lib/widgets/controller.dart

@ -155,11 +155,11 @@ class Document {
_history.handleDocChange(change); _history.handleDocChange(change);
} }
bool undo() { Tuple2 undo() {
return _history.undo(this); return _history.undo(this);
} }
bool redo() { Tuple2 redo() {
return _history.redo(this); return _history.redo(this);
} }

@ -84,11 +84,22 @@ class History {
} }
} }
bool _change(Document doc, List<Delta> source, List<Delta> dest) { Tuple2 _change(Document doc, List<Delta> source, List<Delta> dest) {
if (source.length == 0) { if (source.length == 0) {
return false; return new Tuple2(false, 0);
} }
Delta delta = source.removeLast(); Delta delta = source.removeLast();
// look for insert or delete
int len = 0;
List<Operation> ops = delta.toList();
for(var i = 0; i < ops.length; i++){
if (ops[i].key == Operation.insertKey){
len = ops[i].length;
}
else if (ops[i].key == Operation.deleteKey){
len = ops[i].length * -1;
}
}
Delta base = Delta.from(doc.toDelta()); Delta base = Delta.from(doc.toDelta());
Delta inverseDelta = delta.invert(base); Delta inverseDelta = delta.invert(base);
dest.add(inverseDelta); dest.add(inverseDelta);
@ -96,14 +107,14 @@ class History {
this.ignoreChange = true; this.ignoreChange = true;
doc.compose(delta, ChangeSource.LOCAL); doc.compose(delta, ChangeSource.LOCAL);
this.ignoreChange = false; this.ignoreChange = false;
return true; return new Tuple2(true, len);
} }
bool undo(Document doc) { Tuple2 undo(Document doc) {
return _change(doc, stack.undo, stack.redo); return _change(doc, stack.undo, stack.redo);
} }
bool redo(Document doc) { Tuple2 redo(Document doc) {
return _change(doc, stack.redo, stack.undo); return _change(doc, stack.redo, stack.undo);
} }
} }

@ -43,16 +43,20 @@ class QuillController extends ChangeNotifier {
} }
void undo() { void undo() {
if (document.undo()) { Tuple2 tup = document.undo();
_handleHistoryChange(); if (tup.item1){
_handleHistoryChange(tup.item2);
} }
} }
void _handleHistoryChange() { void _handleHistoryChange(int len) {
if (this.selection.extentOffset >= document.length) { if (len != 0) {
// cursor exceeds the length of document, position it in the end // 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);
updateSelection( updateSelection(
TextSelection.collapsed(offset: document.length), ChangeSource.LOCAL); TextSelection.collapsed(offset: this.selection.baseOffset + len), ChangeSource.LOCAL);
} else { } else {
// no need to move cursor // no need to move cursor
notifyListeners(); notifyListeners();
@ -60,8 +64,9 @@ class QuillController extends ChangeNotifier {
} }
void redo() { void redo() {
if (document.redo()) { Tuple2 tup = document.redo();
_handleHistoryChange(); if (tup.item1){
_handleHistoryChange(tup.item2);
} }
} }

Loading…
Cancel
Save