1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
use crossterm::event::{self, KeyCode};
use tracing::{error, info};
use crate::error::Error;
use super::*;
use rand::seq::SliceRandom;
use rand::thread_rng;
impl App {
/// Handle artists page keys
pub(super) async fn handle_artists_key(&mut self, key: event::KeyEvent) -> Result<(), Error> {
use crate::ui::pages::artists::{build_tree_items, TreeItem};
let mut state = self.state.write().await;
// Handle filter input mode
if state.artists.filter_active {
match key.code {
KeyCode::Esc => {
state.artists.filter_active = false;
state.artists.filter.clear();
}
KeyCode::Enter => {
state.artists.filter_active = false;
}
KeyCode::Backspace => {
state.artists.filter.pop();
}
KeyCode::Char(c) => {
state.artists.filter.push(c);
}
_ => {}
}
return Ok(());
}
match key.code {
KeyCode::Char('/') => {
state.artists.filter_active = true;
}
KeyCode::Esc => {
state.artists.filter.clear();
state.artists.expanded.clear();
state.artists.selected_index = Some(0);
}
KeyCode::Tab => {
state.artists.focus = (state.artists.focus + 1) % 2;
}
KeyCode::Left => {
state.artists.focus = 0;
}
KeyCode::Right => {
// Move focus to songs (right pane)
if !state.artists.songs.is_empty() {
state.artists.focus = 1;
if state.artists.selected_song.is_none() {
state.artists.selected_song = Some(0);
}
}
}
KeyCode::Up | KeyCode::Char('k') => {
if state.artists.focus == 0 {
// Tree navigation
let tree_items = build_tree_items(&state);
if let Some(sel) = state.artists.selected_index {
if sel > 0 {
state.artists.selected_index = Some(sel - 1);
}
} else if !tree_items.is_empty() {
state.artists.selected_index = Some(0);
}
// Preview album songs in right pane
let album_id = state
.artists
.selected_index
.and_then(|i| tree_items.get(i))
.and_then(|item| match item {
TreeItem::Album { album } => Some(album.id.clone()),
_ => None,
});
if let Some(album_id) = album_id {
drop(state);
if let Some(ref client) = self.subsonic {
if let Ok((_album, songs)) = client.get_album(&album_id).await {
let mut state = self.state.write().await;
state.artists.songs = songs;
state.artists.selected_song = Some(0);
}
}
return Ok(());
}
} else {
// Song list
if let Some(sel) = state.artists.selected_song {
if sel > 0 {
state.artists.selected_song = Some(sel - 1);
}
} else if !state.artists.songs.is_empty() {
state.artists.selected_song = Some(0);
}
}
}
KeyCode::Down | KeyCode::Char('j') => {
if state.artists.focus == 0 {
// Tree navigation
let tree_items = build_tree_items(&state);
let max = tree_items.len().saturating_sub(1);
if let Some(sel) = state.artists.selected_index {
if sel < max {
state.artists.selected_index = Some(sel + 1);
}
} else if !tree_items.is_empty() {
state.artists.selected_index = Some(0);
}
// Preview album songs in right pane
let album_id = state
.artists
.selected_index
.and_then(|i| tree_items.get(i))
.and_then(|item| match item {
TreeItem::Album { album } => Some(album.id.clone()),
_ => None,
});
if let Some(album_id) = album_id {
drop(state);
if let Some(ref client) = self.subsonic {
if let Ok((_album, songs)) = client.get_album(&album_id).await {
let mut state = self.state.write().await;
state.artists.songs = songs;
state.artists.selected_song = Some(0);
}
}
return Ok(());
}
} else {
// Song list
let max = state.artists.songs.len().saturating_sub(1);
if let Some(sel) = state.artists.selected_song {
if sel < max {
state.artists.selected_song = Some(sel + 1);
}
} else if !state.artists.songs.is_empty() {
state.artists.selected_song = Some(0);
}
}
}
KeyCode::Char('s') => {
if state.artists.focus == 0 {
let tree_items = build_tree_items(&state);
if let Some(idx) = state.artists.selected_index {
if let Some(item) = tree_items.get(idx) {
match item {
TreeItem::Artist {
artist,
expanded: _,
} => {
let artist_id = artist.id.clone();
let artist_name = artist.name.clone();
drop(state);
if let Some(ref client) = self.subsonic {
match client.get_artist(&artist_id).await {
Ok((_artist, albums)) => {
let mut artists_songs: Vec<_> = Vec::new();
for (_i, album) in albums.into_iter().enumerate() {
match client.get_album(&album.id).await {
Ok((_album, songs)) => {
artists_songs.extend(songs);
}
Err(e) => {
// Skip failed album and shuffle the
// rest. Could be handled better.
error!("Failed to load: {}", e);
}
}
}
if artists_songs.is_empty() {
let mut state = self.state.write().await;
state.notify_error(format!(
"No songs found for {}",
artist_name,
));
return Ok(());
}
artists_songs.shuffle(&mut thread_rng());
let song_count = artists_songs.len();
let mut state = self.state.write().await;
state.queue.clear();
state.queue.extend(artists_songs);
state.queue_position = Some(0);
state.notify(format!(
"Shuffling {} songs by {}",
song_count, artist_name
));
drop(state);
return self.play_queue_position(0).await;
}
Err(e) => {
let mut state = self.state.write().await;
state
.notify_error(format!("Failed to load: {}", e));
}
}
}
}
TreeItem::Album { album } => {
let album_id = album.id.clone();
let album_name = album.name.clone();
drop(state);
if let Some(ref client) = self.subsonic {
match client.get_album(&album_id).await {
Ok((_album, songs)) => {
if songs.is_empty() {
let mut state = self.state.write().await;
state.notify_error("Album has no songs");
return Ok(());
}
let mut shuffled_songs: Vec<_> = Vec::from(songs);
shuffled_songs.shuffle(&mut thread_rng());
let mut state = self.state.write().await;
state.queue.clear();
state.queue.extend(shuffled_songs);
state.queue_position = Some(0);
state.notify(format!("Shuffling {}", album_name));
drop(state);
return self.play_queue_position(0).await;
}
Err(e) => {
let mut state = self.state.write().await;
state
.notify_error(format!("Failed to load: {}", e));
}
}
}
}
}
}
}
}
}
KeyCode::Char('f') => {
if state.artists.focus == 0 {
let tree_items = build_tree_items(&state);
if let Some(idx) = state.artists.selected_index {
if let Some(item) = tree_items.get(idx) {
match item {
TreeItem::Artist { artist, .. } => {
let id = artist.id.clone();
let is_starred = artist.starred.is_some();
if is_starred {
if let Some(a) =
state.artists.artists.iter_mut().find(|a| a.id == id)
{
a.starred = None;
}
} else {
if let Some(a) =
state.artists.artists.iter_mut().find(|a| a.id == id)
{
a.starred = Some("starred".to_string());
}
}
state.songs.is_starred_dirty = true;
drop(state);
if is_starred {
self.unstar_artist(id).await;
} else {
self.star_artist(id).await;
}
}
TreeItem::Album { album } => {
let album_id = album.id.clone();
let artist_id = album.artist_id.clone();
let is_starred = album.starred.is_some();
if let Some(ref aid) = artist_id {
if let Some(albums) =
state.artists.albums_cache.get_mut(aid)
{
if let Some(a) =
albums.iter_mut().find(|a| a.id == album_id)
{
if is_starred {
a.starred = None;
} else {
a.starred = Some("starred".to_string());
}
state.songs.is_starred_dirty = true;
}
}
}
drop(state);
if is_starred {
self.unstar_album(album_id).await;
} else {
self.star_album(album_id).await;
}
}
}
}
}
} else {
if let Some(idx) = state.artists.selected_song {
if idx < state.artists.songs.len() {
let song = &mut state.artists.songs[idx];
let song_id = song.id.clone();
let is_starred = song.starred.is_some();
if is_starred {
song.starred = None;
} else {
song.starred = Some("starred".to_string());
}
state.songs.is_starred_dirty = true;
drop(state);
if is_starred {
self.unstar_song(song_id).await;
} else {
self.star_song(song_id).await;
}
}
}
}
}
KeyCode::Enter => {
if state.artists.focus == 0 {
// Get current tree item
let tree_items = build_tree_items(&state);
if let Some(idx) = state.artists.selected_index {
if let Some(item) = tree_items.get(idx) {
match item {
TreeItem::Artist { artist, expanded } => {
let artist_id = artist.id.clone();
let artist_name = artist.name.clone();
let was_expanded = *expanded;
if was_expanded {
state.artists.expanded.remove(&artist_id);
} else if !state.artists.albums_cache.contains_key(&artist_id) {
drop(state);
if let Some(ref client) = self.subsonic {
match client.get_artist(&artist_id).await {
Ok((_artist, albums)) => {
let mut state = self.state.write().await;
let count = albums.len();
state
.artists
.albums_cache
.insert(artist_id.clone(), albums);
state.artists.expanded.insert(artist_id);
info!(
"Loaded {} albums for {}",
count, artist_name
);
}
Err(e) => {
let mut state = self.state.write().await;
state.notify_error(format!(
"Failed to load: {}",
e
));
}
}
}
return Ok(());
} else {
state.artists.expanded.insert(artist_id);
}
}
TreeItem::Album { album } => {
let album_id = album.id.clone();
let album_name = album.name.clone();
drop(state);
if let Some(ref client) = self.subsonic {
match client.get_album(&album_id).await {
Ok((_album, songs)) => {
if songs.is_empty() {
let mut state = self.state.write().await;
state.notify_error("Album has no songs");
return Ok(());
}
let first_song = songs[0].clone();
let stream_url =
client.get_stream_url(&first_song.id);
let mut state = self.state.write().await;
let count = songs.len();
state.queue.clear();
state.queue.extend(songs.clone());
state.queue_position = Some(0);
state.artists.songs = songs;
state.artists.selected_song = Some(0);
state.artists.focus = 1;
state.now_playing.song = Some(first_song.clone());
state.now_playing.state = PlaybackState::Playing;
state.now_playing.position = 0.0;
state.now_playing.duration =
first_song.duration.unwrap_or(0) as f64;
state.now_playing.sample_rate = None;
state.now_playing.bit_depth = None;
state.now_playing.format = None;
state.now_playing.channels = None;
state.notify(format!(
"Playing album: {} ({} songs)",
album_name, count
));
drop(state);
match stream_url {
Ok(url) => {
if self.mpv.is_paused().unwrap_or(false) {
let _ = self.mpv.resume();
}
if let Err(e) = self.mpv.loadfile(&url) {
error!("Failed to play: {}", e);
}
}
Err(e) => {
error!("Failed to get stream URL: {}", e);
}
}
}
Err(e) => {
let mut state = self.state.write().await;
state.notify_error(format!(
"Failed to load album: {}",
e
));
}
}
}
return Ok(());
}
}
}
}
} else {
// Play selected song from current position
if let Some(idx) = state.artists.selected_song {
if idx < state.artists.songs.len() {
let song = state.artists.songs[idx].clone();
let songs = state.artists.songs.clone();
state.queue.clear();
state.queue.extend(songs);
state.queue_position = Some(idx);
state.now_playing.song = Some(song.clone());
state.now_playing.state = PlaybackState::Playing;
state.now_playing.position = 0.0;
state.now_playing.duration = song.duration.unwrap_or(0) as f64;
state.now_playing.sample_rate = None;
state.now_playing.bit_depth = None;
state.now_playing.format = None;
state.now_playing.channels = None;
state.notify(format!("Playing: {}", song.title));
drop(state);
if let Some(ref client) = self.subsonic {
match client.get_stream_url(&song.id) {
Ok(url) => {
if self.mpv.is_paused().unwrap_or(false) {
let _ = self.mpv.resume();
}
if let Err(e) = self.mpv.loadfile(&url) {
error!("Failed to play: {}", e);
}
}
Err(e) => {
error!("Failed to get stream URL: {}", e);
}
}
}
return Ok(());
}
}
}
}
KeyCode::Backspace => {
if state.artists.focus == 1 {
state.artists.focus = 0;
}
}
KeyCode::Char('e') => {
if state.artists.focus == 1 {
if let Some(idx) = state.artists.selected_song {
if let Some(song) = state.artists.songs.get(idx).cloned() {
let title = song.title.clone();
state.queue.push(song);
state.notify(format!("Added to queue: {}", title));
}
}
} else if !state.artists.songs.is_empty() {
let count = state.artists.songs.len();
let songs = state.artists.songs.clone();
state.queue.extend(songs);
state.notify(format!("Added {} songs to queue", count));
}
}
KeyCode::Char('n') => {
let insert_pos = state.queue_position.map(|p| p + 1).unwrap_or(0);
if state.artists.focus == 1 {
if let Some(idx) = state.artists.selected_song {
if let Some(song) = state.artists.songs.get(idx).cloned() {
let title = song.title.clone();
state.queue.insert(insert_pos, song);
state.notify(format!("Playing next: {}", title));
let queue_position = state.queue_position;
drop(state);
if let Some(pos) = queue_position {
let _ = self.mpv.playlist_remove(1); // remove stale preloaded track
self.preload_next_track(pos).await;
}
}
}
} else if !state.artists.songs.is_empty() {
let count = state.artists.songs.len();
let songs: Vec<_> = state.artists.songs.to_vec();
for (i, song) in songs.into_iter().enumerate() {
state.queue.insert(insert_pos + i, song);
}
state.notify(format!("Playing {} songs next", count));
}
}
_ => {}
}
Ok(())
}
}