aboutsummaryrefslogtreecommitdiff
path: root/src/tui/popup.rs
diff options
context:
space:
mode:
authorTrim Bresilla2024-12-03 01:45:29 +0100
committerlukeflo2024-12-23 21:03:19 +0100
commit86d48aa48b9951b6cbc471113844d16683051f8f (patch)
tree91a1af8050312f5646170da00fab6972903fce12 /src/tui/popup.rs
parenteadd906fc25125a61811247262836b9afe8adee1 (diff)
downloadbibiman-86d48aa48b9951b6cbc471113844d16683051f8f.tar.gz
bibiman-86d48aa48b9951b6cbc471113844d16683051f8f.zip
feat: implement entry management in Bibiman TUI
- Add `.devbox` to the `.gitignore` file - Create a new backup file `devbox.json.back` with package and shell initialization configurations - Introduce a new method `add_entry` in the Bibiman struct to manage adding entries - Implement functionality to handle new entry submissions using `doi2bib` - Update command actions to include `AddEntry` - Add `AddEntry` as a new popup type in the TUI for creating entries - Enhance the UI rendering to support the new entry popup with input fields and cursor positioning
Diffstat (limited to 'src/tui/popup.rs')
-rw-r--r--src/tui/popup.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tui/popup.rs b/src/tui/popup.rs
index 890e5c8..9b91801 100644
--- a/src/tui/popup.rs
+++ b/src/tui/popup.rs
@@ -29,6 +29,7 @@ pub enum PopupKind {
MessageConfirm,
MessageError,
Selection,
+ AddEntry,
}
#[derive(Debug, Default)]
@@ -39,6 +40,8 @@ pub struct PopupArea {
pub popup_scroll_pos: u16,
pub popup_list: Vec<String>,
pub popup_state: ListState,
+ pub add_entry_input: String,
+ pub add_entry_cursor_position: usize,
}
impl PopupArea {
@@ -48,6 +51,7 @@ impl PopupArea {
("TAB: ", "Toggle areas (Entries, Keywords)"),
("/|Ctrl+f: ", "Enter search mode"),
("q|Ctrl+c: ", "Quit bibiman"),
+ ("a: ", "Add new entry"),
("?: ", "Show help"),
("Entry Table", "sub"),
("j,k|↓,↑: ", "Select next/previous entry"),