diff --git a/Cargo.toml b/Cargo.toml index f838a44..2368979 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "ghost-eye" authors = ["str3tch "] description = "Application for interacting with Casper/Ghost nodes that are exposing RPC only to the localhost" -version = "0.3.51" +version = "0.3.52" edition = "2021" homepage = "https://git.ghostchain.io/ghostchain" repository = "https://git.ghostchain.io/ghostchain/ghost-eye" diff --git a/src/components/validator/bond_popup.rs b/src/components/validator/bond_popup.rs index 325bb5b..0c9139f 100644 --- a/src/components/validator/bond_popup.rs +++ b/src/components/validator/bond_popup.rs @@ -50,9 +50,14 @@ impl BondPopup { palette: StylePalette::default(), } } -} -impl BondPopup { + fn close_popup(&mut self) { + self.is_active = false; + if let Some(action_tx) = &self.action_tx { + let _ = action_tx.send(Action::ClosePopup); + } + } + fn log_event(&mut self, message: String, level: ActionLevel) { if let Some(action_tx) = &self.action_tx { let _ = action_tx.send( @@ -148,7 +153,7 @@ impl Component for BondPopup { KeyCode::Backspace => self.delete_char(), KeyCode::Left => self.move_cursor_left(), KeyCode::Right => self.move_cursor_right(), - KeyCode::Esc => self.is_active = false, + KeyCode::Esc => self.close_popup(), _ => {}, }; } diff --git a/src/components/validator/chill_popup.rs b/src/components/validator/chill_popup.rs index 0510064..ec439f5 100644 --- a/src/components/validator/chill_popup.rs +++ b/src/components/validator/chill_popup.rs @@ -41,6 +41,13 @@ impl ChillPopup { } } + fn close_popup(&mut self) { + self.is_active = false; + if let Some(action_tx) = &self.action_tx { + let _ = action_tx.send(Action::ClosePopup); + } + } + fn submit_message(&mut self) { if let Some(network_tx) = &self.network_tx { let _ = network_tx.send(Action::ChillFrom(self.secret_seed)); @@ -85,7 +92,7 @@ impl Component for ChillPopup { if self.is_active && key.kind == KeyEventKind::Press { match key.code { KeyCode::Enter => self.submit_message(), - KeyCode::Esc => self.is_active = false, + KeyCode::Esc => self.close_popup(), _ => {}, }; } diff --git a/src/components/validator/mod.rs b/src/components/validator/mod.rs index 745f3cd..46b3938 100644 --- a/src/components/validator/mod.rs +++ b/src/components/validator/mod.rs @@ -171,18 +171,10 @@ impl Component for Validator { CurrentTab::UnbondPopup | CurrentTab::RebondPopup | CurrentTab::WithdrawPopup | - CurrentTab::PayoutPopup => match key.code { - KeyCode::Esc => { - self.current_tab = self.previous_tab; - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } - }, - _ => { + CurrentTab::PayoutPopup => { for component in self.components.iter_mut() { component.handle_key_event(key)?; } - } }, _ => match key.code { KeyCode::Esc => { @@ -193,86 +185,49 @@ impl Component for Validator { } return Ok(Some(Action::SetActiveScreen(Mode::Menu))); }, - KeyCode::Char('l') | KeyCode::Right => { - self.move_right(); - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } - }, - KeyCode::Char('h') | KeyCode::Left => { - self.move_left(); - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } - }, KeyCode::Char('R') => { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::RotatePopup; - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } }, KeyCode::Char('V') => { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::ValidatePopup; - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } }, KeyCode::Char('U') => { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::UnbondPopup; - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } }, KeyCode::Char('C') => { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::ChillPopup; - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } }, KeyCode::Char('B') => { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::BondPopup; - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } }, KeyCode::Char('E') => { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::RebondPopup; - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } }, KeyCode::Char('W') => { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::WithdrawPopup; - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } }, KeyCode::Char('L') => { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::ListenAddresses; - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } }, KeyCode::Char('I') => { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::PayeePopup; - for component in self.components.iter_mut() { - component.set_active(self.current_tab.clone()); - } }, + KeyCode::Char('l') | KeyCode::Right => self.move_right(), + KeyCode::Char('h') | KeyCode::Left => self.move_left(), _ => { for component in self.components.iter_mut() { component.handle_key_event(key)?; } - } + }, } } Ok(None) @@ -282,15 +237,14 @@ impl Component for Validator { match action { Action::SetActiveScreen(Mode::Validator) => { self.is_active = true; + self.previous_tab = CurrentTab::NominatorsByValidator; self.current_tab = CurrentTab::NominatorsByValidator; } Action::PayoutValidatorPopup(_, _) => { self.previous_tab = self.current_tab; self.current_tab = CurrentTab::PayoutPopup; } - Action::ClosePopup => { - self.current_tab = self.previous_tab; - }, + Action::ClosePopup => self.current_tab = self.previous_tab, _ => {}, } for component in self.components.iter_mut() { diff --git a/src/components/validator/payout_popup.rs b/src/components/validator/payout_popup.rs index 2960618..df68075 100644 --- a/src/components/validator/payout_popup.rs +++ b/src/components/validator/payout_popup.rs @@ -52,9 +52,14 @@ impl PayoutPopup { self.is_claimed = is_claimed; self.era_index = era_index; } -} -impl PayoutPopup { + fn close_popup(&mut self) { + self.is_active = false; + if let Some(action_tx) = &self.action_tx { + let _ = action_tx.send(Action::ClosePopup); + } + } + fn start_payout(&mut self) { if self.is_claimed { if let Some(action_tx) = &self.action_tx { @@ -111,7 +116,7 @@ impl Component for PayoutPopup { if self.is_active && key.kind == KeyEventKind::Press { match key.code { KeyCode::Enter => self.start_payout(), - KeyCode::Esc => self.is_active = false, + KeyCode::Esc => self.close_popup(), _ => {}, }; } diff --git a/src/components/validator/rebond_popup.rs b/src/components/validator/rebond_popup.rs index f32e63c..cdf740f 100644 --- a/src/components/validator/rebond_popup.rs +++ b/src/components/validator/rebond_popup.rs @@ -44,9 +44,14 @@ impl RebondPopup { palette: StylePalette::default(), } } -} -impl RebondPopup { + fn close_popup(&mut self) { + self.is_active = false; + if let Some(action_tx) = &self.action_tx { + let _ = action_tx.send(Action::ClosePopup); + } + } + fn log_event(&mut self, message: String, level: ActionLevel) { if let Some(action_tx) = &self.action_tx { let _ = action_tx.send( @@ -137,7 +142,7 @@ impl Component for RebondPopup { KeyCode::Backspace => self.delete_char(), KeyCode::Left => self.move_cursor_left(), KeyCode::Right => self.move_cursor_right(), - KeyCode::Esc => self.is_active = false, + KeyCode::Esc => self.close_popup(), _ => {}, }; } diff --git a/src/components/validator/rotate_popup.rs b/src/components/validator/rotate_popup.rs index 8ada4f0..f6e4873 100644 --- a/src/components/validator/rotate_popup.rs +++ b/src/components/validator/rotate_popup.rs @@ -44,6 +44,13 @@ impl RotatePopup { } } + fn close_popup(&mut self) { + self.is_active = false; + if let Some(action_tx) = &self.action_tx { + let _ = action_tx.send(Action::ClosePopup); + } + } + fn rotate_keys(&mut self) { if !self.cached_keys.is_empty() && self.cached_keys.len() == 258 { if let Some(network_tx) = &self.network_tx { @@ -123,7 +130,7 @@ impl Component for RotatePopup { if self.is_active && key.kind == KeyEventKind::Press { match key.code { KeyCode::Enter => self.rotate_keys(), - KeyCode::Esc => self.is_active = false, + KeyCode::Esc => self.close_popup(), _ => {}, }; } diff --git a/src/components/validator/unbond_popup.rs b/src/components/validator/unbond_popup.rs index e9bed00..dca4840 100644 --- a/src/components/validator/unbond_popup.rs +++ b/src/components/validator/unbond_popup.rs @@ -49,6 +49,13 @@ impl UnbondPopup { } } + fn close_popup(&mut self) { + self.is_active = false; + if let Some(action_tx) = &self.action_tx { + let _ = action_tx.send(Action::ClosePopup); + } + } + fn log_event(&mut self, message: String, level: ActionLevel) { if let Some(action_tx) = &self.action_tx { let _ = action_tx.send( @@ -146,7 +153,7 @@ impl Component for UnbondPopup { KeyCode::Backspace => self.delete_char(), KeyCode::Left => self.move_cursor_left(), KeyCode::Right => self.move_cursor_right(), - KeyCode::Esc => self.is_active = false, + KeyCode::Esc => self.close_popup(), _ => {}, }; } diff --git a/src/components/validator/validate_popup.rs b/src/components/validator/validate_popup.rs index 19f5d9b..a8e4e1f 100644 --- a/src/components/validator/validate_popup.rs +++ b/src/components/validator/validate_popup.rs @@ -44,9 +44,14 @@ impl ValidatePopup { palette: StylePalette::default(), } } -} -impl ValidatePopup { + fn close_popup(&mut self) { + self.is_active = false; + if let Some(action_tx) = &self.action_tx { + let _ = action_tx.send(Action::ClosePopup); + } + } + fn log_event(&mut self, message: String, level: ActionLevel) { if let Some(action_tx) = &self.action_tx { let _ = action_tx.send( @@ -137,7 +142,7 @@ impl Component for ValidatePopup { KeyCode::Backspace => self.delete_char(), KeyCode::Left => self.move_cursor_left(), KeyCode::Right => self.move_cursor_right(), - KeyCode::Esc => self.is_active = false, + KeyCode::Esc => self.close_popup(), _ => {}, }; } diff --git a/src/components/validator/withdraw_popup.rs b/src/components/validator/withdraw_popup.rs index cc34e4b..ce81003 100644 --- a/src/components/validator/withdraw_popup.rs +++ b/src/components/validator/withdraw_popup.rs @@ -52,6 +52,13 @@ impl WithdrawPopup { } } + fn close_popup(&mut self) { + self.is_active = false; + if let Some(action_tx) = &self.action_tx { + let _ = action_tx.send(Action::ClosePopup); + } + } + fn stash_should_be_killed(&self) -> bool { self.unlocking_is_empty && self.active_balance < self.existential_deposit } @@ -112,7 +119,7 @@ impl Component for WithdrawPopup { if self.is_active && key.kind == KeyEventKind::Press { match key.code { KeyCode::Enter => self.proceed(), - KeyCode::Esc => self.is_active = false, + KeyCode::Esc => self.close_popup(), _ => {}, }; }