This repository has been archived on 2026-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
rmptui/src/browser.rs

104 lines
3.0 KiB
Rust
Executable File

use crate::{app::AppResult, connection::Connection};
#[derive(Debug)]
pub struct FileBrowser {
pub filetree: Vec<(String, String)>,
pub selected: usize,
pub prev_selected: usize,
pub path: String,
pub prev_path: String,
}
impl FileBrowser {
pub fn new() -> FileBrowser {
FileBrowser {
filetree: Vec::new(),
selected: 0,
prev_selected: 0,
path: ".".to_string(),
prev_path: ".".to_string(),
}
}
pub fn update_directory(&mut self, conn: &mut Connection) -> AppResult<()> {
self.filetree.clear();
self.filetree = conn
.conn
.listfiles(self.path.as_str())?
.into_iter()
.filter(|(f, _)| f == "directory" || f == "file")
.collect::<Vec<(String, String)>>();
Ok(())
}
// Go to next item in filetree
pub fn next(&mut self) {
// if self.selected < self.filetree.len() - 1 {
// self.selected += 1;
// }
if self.selected == self.filetree.len() - 1 {
self.selected = 0;
} else {
self.selected += 1;
}
}
/// Go to previous item in filetree
pub fn prev(&mut self) {
if self.selected == 0 {
self.selected = self.filetree.len() - 1;
} else {
self.selected -= 1;
}
}
pub fn handle_enter(&mut self, conn: &mut Connection) -> AppResult<()> {
let (t, path) = self.filetree.get(self.selected).unwrap();
if t == "directory" {
if path != "." {
self.prev_path = self.path.clone();
self.path = self.prev_path.clone() + "/" + path;
self.update_directory(conn)?;
self.prev_selected = self.selected;
self.selected = 0;
// println!("self.path: {}", self.path);
// println!("self.prev_pat: {}", self.prev_path);
}
} else {
// let list = conn
// .songs_filenames
// .iter()
// .map(|f| f.as_str())
// .collect::<Vec<&str>>();
// let (filename, _) = rust_fuzzy_search::fuzzy_search_sorted(&path, &list)
// .get(0)
// .unwrap()
// .clone();
for filename in conn.songs_filenames.clone().iter() {
if filename.contains(path) {
let song = conn.get_song_with_only_filename(filename);
conn.push(&song)?;
}
}
}
Ok(())
}
pub fn handle_go_back(&mut self, conn: &mut Connection) -> AppResult<()> {
if self.prev_path != "." {
let r = self.path.rfind("/").unwrap();
self.path = self.path.as_str()[..r].to_string();
self.update_directory(conn)?;
} else {
self.path = self.prev_path.clone();
self.update_directory(conn)?;
}
self.selected = self.prev_selected;
Ok(())
}
}