feat: server-side shuffle and add-to-playlist for album view

- Album shuffle fetches max 500 random songs server-side instead of
  loading all songs client-side, preventing browser freeze on large
  albums. Respects SkipLowRatingInShuffle setting.
- Add to Playlist sends albumIds to server API instead of fetching
  all song IDs client-side. Server resolves album to tracks.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Finomosec 2026-06-02 16:55:10 +02:00
parent 0f686a301c
commit e7e4fb7ddd
4 changed files with 22 additions and 19 deletions

View File

@ -29,9 +29,10 @@ export const closeShareMenu = () => ({
type: SHARE_MENU_CLOSE,
})
export const openAddToPlaylist = ({ selectedIds, onSuccess }) => ({
export const openAddToPlaylist = ({ selectedIds, albumIds, onSuccess }) => ({
type: ADD_TO_PLAYLIST_OPEN,
selectedIds,
albumIds,
onSuccess,
})

View File

@ -21,7 +21,6 @@ import {
playNext,
addTracks,
playTracks,
shuffleTracks,
openAddToPlaylist,
openDownloadMenu,
DOWNLOAD_MENU_ALBUM,
@ -99,29 +98,30 @@ const AlbumActions = ({
}, [getAllSongsAndDispatch])
const handleShuffle = React.useCallback(() => {
getAllSongsAndDispatch(shuffleTracks)
}, [getAllSongsAndDispatch])
const handleAddToPlaylist = React.useCallback(() => {
if (ids && ids.length === record.songCount) {
const selectedIds = ids.filter((id) => !data[id].missing)
return dispatch(openAddToPlaylist({ selectedIds }))
const filter = { album_id: record.id }
if (config.skipLowRatingInShuffle) {
filter.not_disliked = true
}
dataProvider
.getList('song', {
pagination: { page: 1, perPage: 0 },
sort: { field: 'album', order: 'ASC' },
filter: { album_id: record.id },
pagination: { page: 1, perPage: 500 },
sort: { field: 'random', order: 'ASC' },
filter,
})
.then((res) => {
const selectedIds = res.data
.filter((s) => !s.missing)
.map((s) => s.id)
dispatch(openAddToPlaylist({ selectedIds }))
const allData = res.data.reduce(
(acc, curr) => ({ ...acc, [curr.id]: curr }),
{},
)
dispatch(playTracks(allData))
})
.catch(() => {
notify('ra.page.error', 'warning')
})
}, [dataProvider, dispatch, record, notify])
const handleAddToPlaylist = React.useCallback(() => {
dispatch(openAddToPlaylist({ albumIds: [record.id] }))
}, [dataProvider, dispatch, record, data, ids, notify])
const handleShare = React.useCallback(() => {

View File

@ -39,7 +39,7 @@ const useStyles = makeStyles({
export const AddToPlaylistDialog = () => {
const classes = useStyles()
const { open, selectedIds, onSuccess, duplicateSong, duplicateIds } =
const { open, selectedIds, albumIds, onSuccess, duplicateSong, duplicateIds } =
useSelector((state) => state.addToPlaylistDialog)
const dispatch = useDispatch()
const translate = useTranslate()
@ -61,10 +61,11 @@ export const AddToPlaylistDialog = () => {
const addToPlaylist = (playlistId, distinctIds) => {
const trackIds = Array.isArray(distinctIds) ? distinctIds : selectedIds
if (trackIds.length) {
const data = albumIds?.length ? { albumIds } : { ids: trackIds }
if (albumIds?.length || trackIds.length) {
dataProvider
.create('playlistTrack', {
data: { ids: trackIds },
data,
filter: { playlist_id: playlistId },
})
.then(() => {

View File

@ -63,6 +63,7 @@ export const addToPlaylistDialogReducer = (
...previousState,
open: true,
selectedIds: payload.selectedIds,
albumIds: payload.albumIds,
onSuccess: payload.onSuccess,
}
case ADD_TO_PLAYLIST_CLOSE: