yazi-shared 26.5.6

Yazi shared library
Documentation
use crossterm::event::{KeyEvent, MouseEvent};
use tokio::sync::mpsc;
use yazi_shim::cell::RoCell;

use super::ActionCow;

static TX: RoCell<mpsc::UnboundedSender<Event>> = RoCell::new();
static RX: RoCell<mpsc::UnboundedReceiver<Event>> = RoCell::new();

#[derive(Debug)]
pub enum Event {
	Call(ActionCow),
	Seq(Vec<ActionCow>),
	Render(bool),
	Key(KeyEvent),
	Mouse(MouseEvent),
	Resize,
	Focus,
	Paste(String),
}

impl Event {
	#[inline]
	pub fn init() {
		let (tx, rx) = mpsc::unbounded_channel();
		TX.init(tx);
		RX.init(rx);
	}

	#[inline]
	pub fn take() -> mpsc::UnboundedReceiver<Self> { RX.drop() }

	#[inline]
	pub fn emit(self) { TX.send(self).ok(); }
}