mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-23 17:04:14 +01:00
16 lines
429 B
JavaScript
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;
|