zarumet 1.5.14

A terminal-based mpd client with album display
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
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
use crate::App;
use crate::app::{
    MenuMode, PanelFocus,
    mpd_handler::MPDAction,
    ui::{
        DisplayItem, compute_album_display_list, compute_albums_display_list_genres,
        compute_albums_display_list_years,
    },
};
use mpd_client::Client;

impl App {
    /// Handle scrolling by 15 items at a time
    pub async fn handle_scroll(&mut self, action: MPDAction, client: &Client) {
        match self.menu_mode {
            MenuMode::Queue => {
                if !self.queue.is_empty() {
                    let current = self.queue_list_state.selected().unwrap_or(0);
                    let new_index = match action {
                        MPDAction::ScrollUp => {
                            let potential = current.saturating_sub(15);
                            if potential == 0 && current == 0 {
                                // Already at top, wrap to bottom
                                self.queue.len().saturating_sub(1)
                            } else {
                                potential
                            }
                        }
                        MPDAction::ScrollDown => {
                            let potential =
                                std::cmp::min(current + 15, self.queue.len().saturating_sub(1));
                            if potential == self.queue.len().saturating_sub(1)
                                && current == self.queue.len().saturating_sub(1)
                            {
                                // Already at bottom, wrap to top
                                0
                            } else {
                                potential
                            }
                        }
                        _ => current,
                    };
                    self.queue_list_state.select(Some(new_index));
                    self.selected_queue_index = self.queue_list_state.selected();
                }
            }
            MenuMode::Artists => {
                // Handle scrolling based on current panel focus
                match self.panel_focus {
                    PanelFocus::Artists => {
                        if let Some(ref library) = self.library
                            && !library.artists.is_empty()
                        {
                            let current = self.artist_list_state.selected().unwrap_or(0);
                            let new_index = match action {
                                MPDAction::ScrollUp => {
                                    let potential = current.saturating_sub(15);
                                    if potential == 0 && current == 0 {
                                        // Already at top, wrap to bottom
                                        library.artists.len().saturating_sub(1)
                                    } else {
                                        potential
                                    }
                                }
                                MPDAction::ScrollDown => {
                                    let potential = std::cmp::min(
                                        current + 15,
                                        library.artists.len().saturating_sub(1),
                                    );
                                    if potential == library.artists.len().saturating_sub(1)
                                        && current == library.artists.len().saturating_sub(1)
                                    {
                                        // Already at bottom, wrap to top
                                        0
                                    } else {
                                        potential
                                    }
                                }
                                _ => current,
                            };
                            self.artist_list_state.select(Some(new_index));
                            // Clear album selection when scrolling artists
                            self.album_list_state.select(None);
                            self.album_display_list_state.select(None);

                            // Lazy load the newly selected artist's albums
                            if let Some(ref mut library) = self.library
                                && let Err(e) = library.load_artist(client, new_index).await
                            {
                                log::warn!("Failed to load artist: {}", e);
                            }
                        }
                    }
                    PanelFocus::Albums => {
                        if let (Some(library), Some(selected_artist_index)) =
                            (&self.library, self.artist_list_state.selected())
                            && let Some(selected_artist) = library.get_artist(selected_artist_index)
                        {
                            // Compute display list to get total count
                            let (display_items, _album_indices) =
                                compute_album_display_list(&selected_artist, &self.expanded_albums);
                            if !display_items.is_empty() {
                                let current = self.album_display_list_state.selected().unwrap_or(0);
                                let new_index = match action {
                                    MPDAction::ScrollUp => {
                                        let potential = current.saturating_sub(15);
                                        if potential == 0 && current == 0 {
                                            // Already at top, wrap to bottom
                                            display_items.len().saturating_sub(1)
                                        } else {
                                            potential
                                        }
                                    }
                                    MPDAction::ScrollDown => {
                                        let potential = std::cmp::min(
                                            current + 15,
                                            display_items.len().saturating_sub(1),
                                        );
                                        if potential == display_items.len().saturating_sub(1)
                                            && current == display_items.len().saturating_sub(1)
                                        {
                                            // Wrap around to top
                                            0
                                        } else {
                                            potential
                                        }
                                    }
                                    _ => current,
                                };
                                self.album_display_list_state.select(Some(new_index));

                                // Update the legacy album_list_state to point to the current album if on album
                                if let Some(DisplayItem::Album(_)) = display_items.get(new_index) {
                                    // Find which album this corresponds to
                                    let mut album_count = 0;
                                    for (i, item) in display_items.iter().enumerate() {
                                        if matches!(item, DisplayItem::Album(_)) {
                                            if i == new_index {
                                                self.album_list_state.select(Some(album_count));
                                                break;
                                            }
                                            album_count += 1;
                                        }
                                    }
                                }
                            }
                        }
                    }
                    _ => {
                        // Not applicable in Artists mode
                    }
                }
            }
            MenuMode::Albums => {
                // Handle scrolling based on current panel focus in Albums mode
                match self.panel_focus {
                    PanelFocus::AlbumList => {
                        if let Some(ref library) = self.library
                            && !library.all_albums.is_empty()
                        {
                            let current = self.all_albums_list_state.selected().unwrap_or(0);
                            let new_index = match action {
                                MPDAction::ScrollUp => {
                                    let potential = current.saturating_sub(15);
                                    if potential == 0 && current == 0 {
                                        library.all_albums.len().saturating_sub(1)
                                    } else {
                                        potential
                                    }
                                }
                                MPDAction::ScrollDown => {
                                    let potential = std::cmp::min(
                                        current + 15,
                                        library.all_albums.len().saturating_sub(1),
                                    );
                                    if potential == library.all_albums.len().saturating_sub(1)
                                        && current == library.all_albums.len().saturating_sub(1)
                                    {
                                        0
                                    } else {
                                        potential
                                    }
                                }
                                _ => current,
                            };
                            self.all_albums_list_state.select(Some(new_index));
                            self.album_tracks_list_state.select(Some(0));
                        }
                    }
                    PanelFocus::AlbumTracks => {
                        if let Some(ref library) = self.library
                            && let Some(selected_album_index) =
                                self.all_albums_list_state.selected()
                            && let Some((_, album)) = library.all_albums.get(selected_album_index)
                            && !album.tracks.is_empty()
                        {
                            let current = self.album_tracks_list_state.selected().unwrap_or(0);
                            let new_index = match action {
                                MPDAction::ScrollUp => {
                                    let potential = current.saturating_sub(15);
                                    if potential == 0 && current == 0 {
                                        album.tracks.len().saturating_sub(1)
                                    } else {
                                        potential
                                    }
                                }
                                MPDAction::ScrollDown => {
                                    let potential = std::cmp::min(
                                        current + 15,
                                        album.tracks.len().saturating_sub(1),
                                    );
                                    if potential == album.tracks.len().saturating_sub(1)
                                        && current == album.tracks.len().saturating_sub(1)
                                    {
                                        0
                                    } else {
                                        potential
                                    }
                                }
                                _ => current,
                            };
                            self.album_tracks_list_state.select(Some(new_index));
                        }
                    }
                    _ => {
                        // Not applicable in Albums mode
                    }
                }
            }
            MenuMode::Years => {
                // Handle scrolling based on current panel focus
                match self.panel_focus {
                    PanelFocus::YearList => {
                        if let Some(ref library) = self.library
                            && !library.albums_by_year.is_empty()
                        {
                            let current = self.year_list_state.selected().unwrap_or(0);
                            let new_index = match action {
                                MPDAction::ScrollUp => {
                                    let potential = current.saturating_sub(15);
                                    if potential == 0 && current == 0 {
                                        // Already at top, wrap to bottom
                                        library.albums_by_year.len().saturating_sub(1)
                                    } else {
                                        potential
                                    }
                                }
                                MPDAction::ScrollDown => {
                                    let potential = std::cmp::min(
                                        current + 15,
                                        library.albums_by_year.len().saturating_sub(1),
                                    );
                                    if potential == library.albums_by_year.len().saturating_sub(1)
                                        && current == library.albums_by_year.len().saturating_sub(1)
                                    {
                                        // Already at bottom, wrap to top
                                        0
                                    } else {
                                        potential
                                    }
                                }
                                _ => current,
                            };
                            self.year_list_state.select(Some(new_index));
                            // Clear album selection when scrolling years
                            self.year_album_list_state.select(None);
                            self.year_album_display_list_state.select(None);
                        }
                    }
                    PanelFocus::YearAlbums => {
                        if let (Some(library), Some(selected_year_index)) =
                            (&self.library, self.year_list_state.selected())
                            && let Some(selected_year) =
                                library.albums_by_year.get(selected_year_index)
                        {
                            // Compute display list to get total count
                            let (display_items, _album_indices) = compute_albums_display_list_years(
                                &selected_year.1,
                                &self.expanded_albums_years,
                            );
                            if !display_items.is_empty() {
                                let current =
                                    self.year_album_display_list_state.selected().unwrap_or(0);
                                let new_index = match action {
                                    MPDAction::ScrollUp => {
                                        let potential = current.saturating_sub(15);
                                        if potential == 0 && current == 0 {
                                            // Already at top, wrap to bottom
                                            display_items.len().saturating_sub(1)
                                        } else {
                                            potential
                                        }
                                    }
                                    MPDAction::ScrollDown => {
                                        let potential = std::cmp::min(
                                            current + 15,
                                            display_items.len().saturating_sub(1),
                                        );
                                        if potential == display_items.len().saturating_sub(1)
                                            && current == display_items.len().saturating_sub(1)
                                        {
                                            // Wrap around to top
                                            0
                                        } else {
                                            potential
                                        }
                                    }
                                    _ => current,
                                };
                                self.year_album_display_list_state.select(Some(new_index));

                                // Update the legacy year_album_list_state to point to the current album if on album
                                if let Some(DisplayItem::Album(_)) = display_items.get(new_index) {
                                    // Find which album this corresponds to
                                    let mut album_count = 0;
                                    for (i, item) in display_items.iter().enumerate() {
                                        if matches!(item, DisplayItem::Album(_)) {
                                            if i == new_index {
                                                self.year_album_list_state
                                                    .select(Some(album_count));
                                                break;
                                            }
                                            album_count += 1;
                                        }
                                    }
                                }
                            }
                        }
                    }
                    _ => {
                        // Not applicable in Years mode
                    }
                }
            }
            MenuMode::Genres => {
                // Handle scrolling based on current panel focus
                match self.panel_focus {
                    PanelFocus::GenreList => {
                        if let Some(ref library) = self.library
                            && !library.albums_by_genre.is_empty()
                        {
                            let current = self.genre_list_state.selected().unwrap_or(0);
                            let new_index = match action {
                                MPDAction::ScrollUp => {
                                    let potential = current.saturating_sub(15);
                                    if potential == 0 && current == 0 {
                                        // Already at top, wrap to bottom
                                        library.albums_by_genre.len().saturating_sub(1)
                                    } else {
                                        potential
                                    }
                                }
                                MPDAction::ScrollDown => {
                                    let potential = std::cmp::min(
                                        current + 15,
                                        library.albums_by_genre.len().saturating_sub(1),
                                    );
                                    if potential == library.albums_by_genre.len().saturating_sub(1)
                                        && current
                                            == library.albums_by_genre.len().saturating_sub(1)
                                    {
                                        // Already at bottom, wrap to top
                                        0
                                    } else {
                                        potential
                                    }
                                }
                                _ => current,
                            };
                            self.genre_list_state.select(Some(new_index));
                            // Clear album selection when scrolling years
                            self.genre_album_list_state.select(None);
                            self.genre_album_display_list_state.select(None);
                        }
                    }
                    PanelFocus::GenreAlbums => {
                        if let (Some(library), Some(selected_genre_index)) =
                            (&self.library, self.genre_list_state.selected())
                            && let Some(selected_genre) =
                                library.albums_by_genre.get(selected_genre_index)
                        {
                            // Compute display list to get total count
                            let (display_items, _album_indices) =
                                compute_albums_display_list_genres(
                                    &selected_genre.1,
                                    &self.expanded_albums_genres,
                                );
                            if !display_items.is_empty() {
                                let current =
                                    self.genre_album_display_list_state.selected().unwrap_or(0);
                                let new_index = match action {
                                    MPDAction::ScrollUp => {
                                        let potential = current.saturating_sub(15);
                                        if potential == 0 && current == 0 {
                                            // Already at top, wrap to bottom
                                            display_items.len().saturating_sub(1)
                                        } else {
                                            potential
                                        }
                                    }
                                    MPDAction::ScrollDown => {
                                        let potential = std::cmp::min(
                                            current + 15,
                                            display_items.len().saturating_sub(1),
                                        );
                                        if potential == display_items.len().saturating_sub(1)
                                            && current == display_items.len().saturating_sub(1)
                                        {
                                            // Wrap around to top
                                            0
                                        } else {
                                            potential
                                        }
                                    }
                                    _ => current,
                                };
                                self.genre_album_display_list_state.select(Some(new_index));

                                // Update the legacy genre_list_state to point to the current album if on album
                                if let Some(DisplayItem::Album(_)) = display_items.get(new_index) {
                                    // Find which album this corresponds to
                                    let mut album_count = 0;
                                    for (i, item) in display_items.iter().enumerate() {
                                        if matches!(item, DisplayItem::Album(_)) {
                                            if i == new_index {
                                                self.genre_album_list_state
                                                    .select(Some(album_count));
                                                break;
                                            }
                                            album_count += 1;
                                        }
                                    }
                                }
                            }
                        }
                    }
                    _ => {
                        // Not applicable in Genres mode
                    }
                }
            }
        }
        // Mark appropriate dirty flags for scrolling
        match self.menu_mode {
            MenuMode::Queue => self.dirty.mark_queue_selection(),
            MenuMode::Artists | MenuMode::Albums | MenuMode::Years | MenuMode::Genres => {
                self.dirty.mark_library()
            }
        }
    }

    /// Handle jumping to the top or bottom of the current list
    pub async fn handle_go_to_edge(&mut self, action: MPDAction, client: &Client) {
        match self.menu_mode {
            MenuMode::Queue => {
                if !self.queue.is_empty() {
                    let new_index = match action {
                        MPDAction::GoToTop => 0,
                        MPDAction::GoToBottom => self.queue.len().saturating_sub(1),
                        _ => return,
                    };
                    self.queue_list_state.select(Some(new_index));
                    self.selected_queue_index = self.queue_list_state.selected();
                }
            }
            MenuMode::Artists => {
                match self.panel_focus {
                    PanelFocus::Artists => {
                        if let Some(ref library) = self.library
                            && !library.artists.is_empty()
                        {
                            let new_index = match action {
                                MPDAction::GoToTop => 0,
                                MPDAction::GoToBottom => library.artists.len().saturating_sub(1),
                                _ => return,
                            };
                            self.artist_list_state.select(Some(new_index));
                            // Clear album selection when jumping in artists list
                            self.album_list_state.select(None);
                            self.album_display_list_state.select(None);

                            // Lazy load the newly selected artist's albums
                            if let Some(ref mut library) = self.library
                                && let Err(e) = library.load_artist(client, new_index).await
                            {
                                log::warn!("Failed to load artist: {}", e);
                            }
                        }
                    }
                    PanelFocus::Albums => {
                        if let (Some(library), Some(selected_artist_index)) =
                            (&self.library, self.artist_list_state.selected())
                            && let Some(selected_artist) = library.get_artist(selected_artist_index)
                        {
                            let (display_items, _album_indices) =
                                compute_album_display_list(&selected_artist, &self.expanded_albums);
                            if !display_items.is_empty() {
                                let new_index = match action {
                                    MPDAction::GoToTop => 0,
                                    MPDAction::GoToBottom => display_items.len().saturating_sub(1),
                                    _ => return,
                                };
                                self.album_display_list_state.select(Some(new_index));

                                // Update the legacy album_list_state if on an album
                                if let Some(DisplayItem::Album(_)) = display_items.get(new_index) {
                                    let mut album_count = 0;
                                    for (i, item) in display_items.iter().enumerate() {
                                        if matches!(item, DisplayItem::Album(_)) {
                                            if i == new_index {
                                                self.album_list_state.select(Some(album_count));
                                                break;
                                            }
                                            album_count += 1;
                                        }
                                    }
                                }
                            }
                        }
                    }
                    _ => {
                        // Not applicable in Artists mode
                    }
                }
            }
            MenuMode::Albums => {
                match self.panel_focus {
                    PanelFocus::AlbumList => {
                        if let Some(ref library) = self.library
                            && !library.all_albums.is_empty()
                        {
                            let new_index = match action {
                                MPDAction::GoToTop => 0,
                                MPDAction::GoToBottom => library.all_albums.len().saturating_sub(1),
                                _ => return,
                            };
                            self.all_albums_list_state.select(Some(new_index));
                            self.album_tracks_list_state.select(Some(0));
                        }
                    }
                    PanelFocus::AlbumTracks => {
                        if let Some(ref library) = self.library
                            && let Some(selected_album_index) =
                                self.all_albums_list_state.selected()
                            && let Some((_, album)) = library.all_albums.get(selected_album_index)
                            && !album.tracks.is_empty()
                        {
                            let new_index = match action {
                                MPDAction::GoToTop => 0,
                                MPDAction::GoToBottom => album.tracks.len().saturating_sub(1),
                                _ => return,
                            };
                            self.album_tracks_list_state.select(Some(new_index));
                        }
                    }
                    _ => {
                        // Not applicable in Albums mode
                    }
                }
            }
            MenuMode::Years => {
                match self.panel_focus {
                    PanelFocus::YearList => {
                        if let Some(ref library) = self.library
                            && !library.albums_by_year.is_empty()
                        {
                            let new_index = match action {
                                MPDAction::GoToTop => 0,
                                MPDAction::GoToBottom => {
                                    library.albums_by_year.len().saturating_sub(1)
                                }
                                _ => return,
                            };
                            self.year_list_state.select(Some(new_index));
                            // Clear album selection when jumping in year list
                            self.year_album_list_state.select(None);
                            self.year_album_display_list_state.select(None);
                        }
                    }
                    PanelFocus::YearAlbums => {
                        if let (Some(library), Some(selected_year_index)) =
                            (&self.library, self.year_list_state.selected())
                            && let Some(selected_year) =
                                library.albums_by_year.get(selected_year_index)
                        {
                            let (display_items, _album_indices) = compute_albums_display_list_years(
                                &selected_year.1,
                                &self.expanded_albums_years,
                            );
                            if !display_items.is_empty() {
                                let new_index = match action {
                                    MPDAction::GoToTop => 0,
                                    MPDAction::GoToBottom => display_items.len().saturating_sub(1),
                                    _ => return,
                                };
                                self.year_album_display_list_state.select(Some(new_index));

                                // Update the legacy year_album_list_state if on an album
                                if let Some(DisplayItem::Album(_)) = display_items.get(new_index) {
                                    let mut album_count = 0;
                                    for (i, item) in display_items.iter().enumerate() {
                                        if matches!(item, DisplayItem::Album(_)) {
                                            if i == new_index {
                                                self.year_album_list_state
                                                    .select(Some(album_count));
                                                break;
                                            }
                                            album_count += 1;
                                        }
                                    }
                                }
                            }
                        }
                    }
                    _ => {
                        // Not applicable in Years mode
                    }
                }
            }
            MenuMode::Genres => {
                match self.panel_focus {
                    PanelFocus::GenreList => {
                        if let Some(ref library) = self.library
                            && !library.albums_by_genre.is_empty()
                        {
                            let new_index = match action {
                                MPDAction::GoToTop => 0,
                                MPDAction::GoToBottom => {
                                    library.albums_by_genre.len().saturating_sub(1)
                                }
                                _ => return,
                            };
                            self.genre_list_state.select(Some(new_index));
                            // Clear album selection when jumping in year list
                            self.genre_album_list_state.select(None);
                            self.genre_album_display_list_state.select(None);
                        }
                    }
                    PanelFocus::GenreAlbums => {
                        if let (Some(library), Some(selected_genre_index)) =
                            (&self.library, self.genre_list_state.selected())
                            && let Some(selected_genre) =
                                library.albums_by_genre.get(selected_genre_index)
                        {
                            let (display_items, _album_indices) =
                                compute_albums_display_list_genres(
                                    &selected_genre.1,
                                    &self.expanded_albums_genres,
                                );
                            if !display_items.is_empty() {
                                let new_index = match action {
                                    MPDAction::GoToTop => 0,
                                    MPDAction::GoToBottom => display_items.len().saturating_sub(1),
                                    _ => return,
                                };
                                self.genre_album_display_list_state.select(Some(new_index));

                                // Update the legacy genre_album_list_state if on an album
                                if let Some(DisplayItem::Album(_)) = display_items.get(new_index) {
                                    let mut album_count = 0;
                                    for (i, item) in display_items.iter().enumerate() {
                                        if matches!(item, DisplayItem::Album(_)) {
                                            if i == new_index {
                                                self.genre_album_list_state
                                                    .select(Some(album_count));
                                                break;
                                            }
                                            album_count += 1;
                                        }
                                    }
                                }
                            }
                        }
                    }
                    _ => {
                        // Not applicable in Years mode
                    }
                }
            }
        }
        // Mark appropriate dirty flags for go to edge
        match self.menu_mode {
            MenuMode::Queue => self.dirty.mark_queue_selection(),
            MenuMode::Artists | MenuMode::Albums | MenuMode::Years | MenuMode::Genres => {
                self.dirty.mark_library()
            }
        }
    }
}