feat: advanced filtering

Allow filtering by name, image name, status, or a combination of all of the three
This commit is contained in:
Jack Wills
2024-07-24 14:20:29 +00:00
parent 91b451c6a3
commit 26a2cf55d2
5 changed files with 390 additions and 55 deletions
+6
View File
@@ -401,6 +401,12 @@ impl InputHandler {
KeyCode::Char(x) => {
self.app_data.lock().filter_term_push(x);
}
KeyCode::Right => {
self.app_data.lock().filter_by_next();
}
KeyCode::Left => {
self.app_data.lock().filter_by_prev();
}
_ => (),
}
}