Fixed: Infinite spinner when toggling seasons on multiple series from season pass

pull/3268/head
Mark McDowall 5 years ago
parent ec6d407fbb
commit 665d536481

@ -17,7 +17,7 @@ import { updateItem } from './baseActions';
const MONITOR_TIMEOUT = 1000;
const seasonsToUpdate = {};
let seasonMonitorToggleTimeout = null;
const seasonMonitorToggleTimeouts = {};
//
// Variables
@ -271,16 +271,19 @@ export const actionHandlers = handleThunks({
},
[TOGGLE_SEASON_MONITORED]: function(getState, payload, dispatch) {
if (seasonMonitorToggleTimeout) {
seasonMonitorToggleTimeout = clearTimeout(seasonMonitorToggleTimeout);
}
const {
seriesId: id,
seasonNumber,
monitored
} = payload;
const seasonMonitorToggleTimeout = seasonMonitorToggleTimeouts[id];
if (seasonMonitorToggleTimeout) {
clearTimeout(seasonMonitorToggleTimeout);
delete seasonMonitorToggleTimeouts[id];
}
const series = getState().series.items.find((s) => s.id === id);
const seasons = _.cloneDeep(series.seasons);
const season = seasons.find((s) => s.seasonNumber === seasonNumber);
@ -296,7 +299,7 @@ export const actionHandlers = handleThunks({
seasonsToUpdate[seasonNumber] = monitored;
season.monitored = monitored;
seasonMonitorToggleTimeout = setTimeout(() => {
seasonMonitorToggleTimeouts[id] = setTimeout(() => {
createAjaxRequest({
url: `/series/${id}`,
method: 'PUT',

Loading…
Cancel
Save