#events #input-event #ratatui #input

rat-event

ratatui event handler trait for widgets

27 releases (9 breaking)

new 0.26.0 Nov 1, 2024
0.16.1 Sep 11, 2024
0.14.6 Jul 2, 2024

#891 in Command-line interface

Download history 105/week @ 2024-07-08 13/week @ 2024-07-15 14/week @ 2024-07-22 19/week @ 2024-08-12 115/week @ 2024-08-19 241/week @ 2024-08-26 6/week @ 2024-09-02 436/week @ 2024-09-09 116/week @ 2024-09-16 58/week @ 2024-09-23 49/week @ 2024-09-30 213/week @ 2024-10-07 330/week @ 2024-10-14 99/week @ 2024-10-21

699 downloads per month
Used in 11 crates (8 directly)

MIT/Apache

52KB
844 lines

crates.io Documentation License License

This crate is a part of rat-salsa.

Rat-Event

Why?

This crate defines the trait HandleEvent to help with composability of event-handling for ratatui widgets.

Objectives are

  • work for all event-types.
  • allow for multiple handlers per widget
    • to override the key-bindings
    • to have different key-bindings for certain scenarios.
  • have a return type to indicate what state change occured.
    pub trait HandleEvent<Event, Qualifier, Return>
where
    Return: ConsumedEvent
{
    fn handle(
        &mut self,
        event: &Event,
        qualifier: Qualifier
    ) -> Return;
}

Event

Can be anything.

Qualifier

There are predefined qualifiers

  • Regular - Do what is considered 'normal' behaviour. Can vary depending on the actual state of the widget (e.g. focus)

  • MouseOnly - Splitting off mouse interaction helps when you only want to redefine the key bindings. And handling mouse events is usually more involved/complicated/specific.

  • DoubleClick - Double clicks are a bit special for widgets, often it requires a distinct return type and it's not as generally needed as other mouse behaviour.

  • Popup, Dialog - Specialized event-handlers, but they tend to popup again and again.

Return

The return type can be anything at all.

To be useful it is required to implement ConsumedEvent to indicate if the event has been handled by the widget and further event-handling can stop.

To set a baseline for the return type this crate defines the enum Outcome which can indicate if a render is necessary or not.

For interop all return types in rat-salsa are convertible to/from Outcome.

Dependencies

~8–17MB
~239K SLoC