mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
79 lines
1.7 KiB
Rust
79 lines
1.7 KiB
Rust
use std::time::Duration;
|
|
|
|
use anyhow::Result;
|
|
use tokio::{select, time};
|
|
use yazi_config::popup::ConfirmCfg;
|
|
use yazi_dds::spark::SparkKind;
|
|
use yazi_macro::{emit, succ};
|
|
use yazi_parser::mgr::QuitOpt;
|
|
use yazi_proxy::ConfirmProxy;
|
|
use yazi_shared::{data::Data, event::EventQuit, strand::{Strand, StrandLike, ToStrandJoin}, url::AsUrl};
|
|
|
|
use crate::{Actor, Ctx};
|
|
|
|
pub struct Quit;
|
|
|
|
impl Actor for Quit {
|
|
type Options = QuitOpt;
|
|
|
|
const NAME: &str = "quit";
|
|
|
|
fn act(cx: &mut Ctx, opt: Self::Options) -> Result<Data> {
|
|
let event = opt.into();
|
|
|
|
let ongoing = cx.tasks().ongoing().clone();
|
|
let (left, left_names) = {
|
|
let ongoing = ongoing.lock();
|
|
(ongoing.len(), ongoing.values().take(11).map(|t| t.name.clone()).collect())
|
|
};
|
|
|
|
if left == 0 {
|
|
succ!(emit!(Quit(event)));
|
|
}
|
|
|
|
tokio::spawn(async move {
|
|
let mut i = 0;
|
|
let mut rx = ConfirmProxy::show_rx(ConfirmCfg::quit(left, left_names));
|
|
loop {
|
|
select! {
|
|
_ = time::sleep(Duration::from_millis(50)) => {
|
|
i += 1;
|
|
if i > 40 { break }
|
|
else if ongoing.lock().is_empty() {
|
|
emit!(Quit(event));
|
|
return;
|
|
}
|
|
}
|
|
b = &mut rx => {
|
|
if b.unwrap_or(false) {
|
|
emit!(Quit(event));
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
if rx.await.unwrap_or(false) {
|
|
emit!(Quit(event));
|
|
}
|
|
});
|
|
succ!();
|
|
}
|
|
|
|
fn hook(cx: &Ctx, _opt: &Self::Options) -> Option<SparkKind> {
|
|
Some(SparkKind::KeyQuit).filter(|_| cx.source().is_key())
|
|
}
|
|
}
|
|
|
|
impl Quit {
|
|
pub(super) fn with_selected<I>(selected: I)
|
|
where
|
|
I: IntoIterator,
|
|
I::Item: AsUrl,
|
|
{
|
|
let paths = selected.into_iter().join(Strand::Utf8("\n"));
|
|
if !paths.is_empty() {
|
|
emit!(Quit(EventQuit { selected: Some(paths), ..Default::default() }));
|
|
}
|
|
}
|
|
}
|