Files
furumi_tui/src/app/event.rs
T

110 lines
3.5 KiB
Rust
Raw Normal View History

2026-06-10 16:11:09 +01:00
use std::sync::Arc;
use crate::art::ArtImage;
2026-07-16 20:29:51 +03:00
use crate::library::models::{
ArtistDetail, ArtistsPage, PlaylistCard, PlaylistDetail, ReleaseDetail, SearchResults,
TrackItem,
};
2026-06-10 16:11:09 +01:00
2026-07-16 20:29:51 +03:00
/// Events delivered to the main loop by background tasks (library queries,
/// the playback engine, imports). Tasks never touch AppState directly.
2026-06-10 16:11:09 +01:00
#[derive(Debug)]
pub enum AppEvent {
StatusMessage(String),
2026-07-16 20:29:51 +03:00
/// A page of the artists list arrived (or failed).
2026-06-10 16:11:09 +01:00
ArtistsLoaded(Result<ArtistsPage, String>),
2026-07-16 20:29:51 +03:00
/// A full reload after a library change: replaces the loaded artist
/// list wholesale, so the grid never flashes empty.
ArtistsReloaded {
page: ArtistsPage,
limit: i64,
},
2026-06-10 16:11:09 +01:00
ArtistViewLoaded {
id: i64,
result: Result<ArtistDetail, String>,
},
ReleaseViewLoaded {
id: i64,
result: Result<ReleaseDetail, String>,
},
/// Live search results; `seq` drops responses that are already stale.
SearchLoaded {
seq: u64,
result: Result<SearchResults, String>,
},
2026-07-16 20:29:51 +03:00
/// Artwork loaded and decoded for the shared art cache.
2026-06-10 16:11:09 +01:00
ArtLoaded {
key: String,
art: Option<Arc<ArtImage>>,
},
Player(crate::player::PlayerEvent),
/// A command from the OS media keys.
Media(crate::media::MediaCommand),
2026-07-16 20:29:51 +03:00
/// Gapless prefetch could not open the file; the normal track-switch
2026-06-10 16:11:09 +01:00
/// path takes over when the current track ends.
PrefetchFailed {
pos: usize,
},
PlaylistsLoaded(Result<Vec<PlaylistCard>, String>),
PlaylistViewLoaded {
id: i64,
result: Result<PlaylistDetail, String>,
},
/// Liked track ids for the ♥ markers.
LikesLoaded(Result<Vec<i64>, String>),
LikeToggled {
track_id: i64,
liked: bool,
},
/// A release fetched for queueing (a / shift-a on a release).
EnqueueTracks {
tracks: Vec<TrackItem>,
next: bool,
},
PlaylistCreated {
result: Result<PlaylistCard, String>,
/// Add this track to the new playlist right away (Shift-P flow).
add_track: Option<TrackItem>,
},
PlaylistTracksAdded {
playlist_id: i64,
playlist_title: String,
result: Result<(), String>,
},
2026-07-16 20:29:51 +03:00
/// The library was mutated (import, edit, delete): cached views must be
/// dropped and reloaded lazily.
LibraryChanged {
message: Option<String>,
},
/// Progress of a running import, shown in the status bar.
ImportProgress {
done: usize,
total: usize,
current: String,
},
/// Fresh copies of the queued tracks after a library change. Tracks
/// missing from the result were deleted and leave the queue.
QueueTracksRefreshed {
tracks: Vec<TrackItem>,
},
/// A status snapshot for the Federation tab.
FederationStatus(crate::federation::FedStatus),
2026-07-17 01:17:54 +03:00
/// Federated live-search results (artists a card can be opened for,
/// plus matching tracks).
2026-07-16 20:29:51 +03:00
FedSearchLoaded {
seq: u64,
2026-07-17 01:17:54 +03:00
result: Result<crate::federation::FedSearchResults, String>,
},
/// A federated artist card finished assembling.
FedArtistLoaded {
name: String,
result: Result<crate::federation::FedArtistCard, String>,
2026-07-16 20:29:51 +03:00
},
/// A federated track finished downloading and is ready to play.
FedPlayReady {
result: Result<crate::federation::FedPlayable, String>,
},
/// This peer's connection ticket, requested from the Federation tab.
FedTicket(Result<String, String>),
2026-06-10 16:11:09 +01:00
}