fm-tui 0.2.3

FM : a file manager inspired by ranger and dired{n}{n}Config files ~/.config/fm/{n}Documentation https://github.com/qkzk/fm{n}
Documentation
use std::path::{Path, PathBuf};

use crate::io::DrawMenu;
use crate::{impl_content, impl_selectable};

/// A stack of visited paths.
/// We save the last folder and the selected file every time a `PatchContent` is updated.
/// We also ensure not to save the same pair multiple times.
#[derive(Default, Clone)]
pub struct History {
    pub content: Vec<PathBuf>,
    pub index: usize,
}

impl History {
    /// Creates a new history with the starting path.
    pub fn new(start_dir: &std::path::Path) -> Self {
        Self {
            content: vec![start_dir.to_path_buf()],
            index: 0,
        }
    }

    /// Add a new path and a selected file in the stack, without duplicates, and select the last
    /// one.
    pub fn push(&mut self, file: &Path) {
        if !self.content.contains(&file.to_path_buf()) {
            self.content.push(file.to_owned());
            self.index = self.len() - 1;
        }
        // TODO! Else ... ?
    }

    /// Drop the last visited paths from the stack, after the selected one.
    /// Used to go back a few steps in time.
    pub fn drop_queue(&mut self) {
        if self.is_empty() {
            return;
        }
        let final_length = self.len() - self.index + 1;
        self.content.truncate(final_length);
        if self.is_empty() {
            self.index = 0;
        } else {
            self.index = self.len() - 1;
        }
    }

    /// True iff the last element of the stack has the same
    /// path as the one given.
    /// Doesn't check the associated file.
    /// false if the stack is empty.
    #[must_use]
    pub fn is_this_the_last(&self, path: &Path) -> bool {
        if self.is_empty() {
            return false;
        }
        self.content[self.len() - 1] == path
    }
}

impl_content!(History, PathBuf);

impl DrawMenu<PathBuf> for History {}