fix follow_to_index exception

This commit is contained in:
yggverse 2025-02-15 19:45:15 +02:00
parent 30142cf5e0
commit 2a535c7c60

View file

@ -23,14 +23,17 @@ impl Memory {
/// Create new record in the navigation memory /// Create new record in the navigation memory
pub fn add(&self, value: GString, follow_to_index: bool) { pub fn add(&self, value: GString, follow_to_index: bool) {
if follow_to_index { // borrow subject in r/w mode
// request index recording
let mut index = self.index.borrow_mut(); let mut index = self.index.borrow_mut();
if follow_to_index {
// drop forward history if the user continue navigation // drop forward history if the user continue navigation
// from the previous history position // from the previous history position
if let Some(next) = self.cursor.borrow().next(index.len()) { if let Some(next) = self.cursor.borrow_mut().next(index.len()) {
index.truncate(next); index.truncate(next);
} }
}
// prevent duplicates at the last history position // prevent duplicates at the last history position
// e.g. on page reload with `follow_to_index` enabled // e.g. on page reload with `follow_to_index` enabled
match index.last() { match index.last() {
@ -41,6 +44,8 @@ impl Memory {
} }
None => index.push(value), None => index.push(value),
} }
if follow_to_index {
// set cursor on to the last record // set cursor on to the last record
self.cursor.borrow_mut().go_last(index.len()); self.cursor.borrow_mut().go_last(index.len());
} }