MCPcopy Create free account
hub / github.com/Moosync/Moosync / goto_artist

Method goto_artist

src/utils/context_menu.rs:150–160  ·  view source on GitHub ↗
(&self, artist: QueryableArtist)

Source from the content-addressed store, hash-verified

148
149 #[tracing::instrument(level = "debug", skip(self, artist))]
150 pub fn goto_artist(&self, artist: QueryableArtist) {
151 let navigate = use_navigate();
152 navigate(
153 format!(
154 "/main/artists/single?entity={}",
155 url_escape::encode_component(&serde_json::to_string(&artist).unwrap())
156 )
157 .as_str(),
158 NavigateOptions::default(),
159 );
160 }
161
162 pub fn remove_from_playlist(&self) {
163 let params = use_query_map();

Callers 1

get_menu_itemsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected