mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-03 03:11:40 +00:00
Resolves #50. Adds a new set of components for fetching similar songs from the current playing song. For Jellyfin, use the `/items/{itemId}/similar` endpoint (may not work well for small libraries), and for Navidrome/Subsonic use `getSimilarSongs`. _In theory_, this component can be used to get similar songs anywhere.
13 lines
357 B
TypeScript
13 lines
357 B
TypeScript
import { SimilarSongsList } from '/@/renderer/features/similar-songs/components/similar-songs-list';
|
|
import { useCurrentSong } from '/@/renderer/store';
|
|
|
|
export const FullScreenSimilarSongs = () => {
|
|
const currentSong = useCurrentSong();
|
|
|
|
return (
|
|
<SimilarSongsList
|
|
fullScreen
|
|
song={currentSong}
|
|
/>
|
|
);
|
|
};
|