cspace-ui
Version:
CollectionSpace user interface for browsers
43 lines (29 loc) • 1.26 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getSystemInfo = exports.getConfig = exports.default = void 0;
var _immutable = _interopRequireDefault(require("immutable"));
var _actionCodes = require("../constants/actionCodes");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var _default = function _default() {
let state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : _immutable.default.Map();
let action = arguments.length > 1 ? arguments[1] : undefined;
switch (action.type) {
case _actionCodes.CSPACE_CONFIGURED:
return state.set('config', _immutable.default.fromJS(action.payload));
case _actionCodes.READ_SYSTEM_INFO_FULFILLED:
return state.set('systemInfo', _immutable.default.fromJS(action.payload.data));
case _actionCodes.READ_SYSTEM_INFO_REJECTED:
return state.set('systemInfo', _immutable.default.fromJS({
error: action.payload
}));
default:
return state;
}
};
exports.default = _default;
const getConfig = state => state.get('config');
exports.getConfig = getConfig;
const getSystemInfo = state => state.get('systemInfo');
exports.getSystemInfo = getSystemInfo;