(&self)
| 101 | |
| 102 | #[tracing::instrument(level = "debug", skip(self))] |
| 103 | pub fn play_next(&self) { |
| 104 | let player_store = use_context::<RwSignal<PlayerStore>>().unwrap(); |
| 105 | player_store.update(|store| store.play_next_multiple(self.current_or_list())); |
| 106 | } |
| 107 | |
| 108 | #[tracing::instrument(level = "debug", skip(self))] |
| 109 | pub fn clear_queue_and_play(&self) { |
nothing calls this directly
no test coverage detected