Prowlarr/frontend/src/Utilities/State/updateSectionState.js
2019-06-11 22:06:43 -04:00

16 lines
429 B
JavaScript

function updateSectionState(state, section, newState) {
const [, subSection] = section.split('.');
if (subSection) {
return Object.assign({}, state, { [subSection]: newState });
}
// TODO: Remove in favour of using subSection
if (state.hasOwnProperty(section)) {
return Object.assign({}, state, { [section]: newState });
}
return Object.assign({}, state, newState);
}
export default updateSectionState;