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

23 lines
485 B
JavaScript

import _ from 'lodash';
function getSectionState(state, section, isFullStateTree = false) {
if (isFullStateTree) {
return _.get(state, section);
}
const [, subSection] = section.split('.');
if (subSection) {
return Object.assign({}, state[subSection]);
}
// TODO: Remove in favour of using subSection
if (state.hasOwnProperty(section)) {
return Object.assign({}, state[section]);
}
return Object.assign({}, state);
}
export default getSectionState;