You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Utilities/Album/updateAlbums.js

23 lines
484 B

/* eslint max-params: 0 */
import _ from 'lodash';
import { update } from 'Store/Actions/baseActions';
function updateAlbums(dispatch, section, episodes, albumIds, options) {
const data = _.reduce(episodes, (result, item) => {
if (albumIds.indexOf(item.id) > -1) {
result.push({
...item,
...options
});
} else {
result.push(item);
}
return result;
}, []);
dispatch(update({ section, data }));
}
export default updateAlbums;