Radish alpha
r
Radicle terminal user interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
tui: Remove obsolete event handling
Erik Kundt committed 3 years ago
commit d940b4aa692b167e7a89b48f996a375a80c2e596
parent d29a47af160538b75f3084d1c7f32c98ae532f5c
2 files changed +0 -17
modified radicle-tui/src/app/event.rs
@@ -1,6 +1,5 @@
use radicle::cob::patch::{Patch, PatchId};

-
use tui_realm_stdlib::Phantom;
use tuirealm::command::{Cmd, CmdResult, Direction as MoveDirection};
use tuirealm::event::{Event, Key, KeyEvent};
use tuirealm::{MockComponent, NoUserEvent, State, StateValue};
@@ -131,9 +130,3 @@ impl tuirealm::Component<Message, NoUserEvent> for Widget<Shortcuts> {
        None
    }
}
-

-
impl tuirealm::Component<Message, NoUserEvent> for Phantom {
-
    fn on(&mut self, _event: Event<NoUserEvent>) -> Option<Message> {
-
        None
-
    }
-
}
modified radicle-tui/src/ui/components/common/container.rs
@@ -1,5 +1,3 @@
-
use tui_realm_stdlib::Phantom;
-

use tuirealm::command::{Cmd, CmdResult};
use tuirealm::props::{AttrValue, Attribute, Color, Props, Style};
use tuirealm::tui::layout::{Constraint, Direction, Layout, Rect};
@@ -30,14 +28,6 @@ impl WidgetComponent for GlobalListener {
    }
}

-
/// Some user events need to be handled globally (e.g. user presses key `q` to quit
-
/// the application). This component can be used in conjunction with SubEventClause
-
/// to handle those events.
-
#[derive(Default, MockComponent)]
-
pub struct GlobalPhantom {
-
    component: Phantom,
-
}
-

/// A tab header that displays all labels horizontally aligned and separated
/// by a divider. Highlights the label defined by the current tab index.
#[derive(Clone)]