2022-08-10 09:56:24 +00:00
|
|
|
import ReducerRegistry from '../base/redux/ReducerRegistry';
|
2021-06-25 13:28:54 +00:00
|
|
|
|
|
|
|
import {
|
|
|
|
SET_DETAILS
|
|
|
|
} from './actionTypes';
|
|
|
|
import { STATUSES } from './constants';
|
|
|
|
|
|
|
|
const DEFAULT_STATE = {
|
|
|
|
disabledFeatures: [],
|
|
|
|
status: STATUSES.ACTIVE
|
|
|
|
};
|
|
|
|
|
2022-08-10 09:56:24 +00:00
|
|
|
export interface IJaaSState {
|
2022-09-08 09:52:36 +00:00
|
|
|
[key: string]: any;
|
2022-08-10 09:56:24 +00:00
|
|
|
}
|
|
|
|
|
2021-06-25 13:28:54 +00:00
|
|
|
/**
|
2021-11-04 21:10:43 +00:00
|
|
|
* Listen for actions that mutate the billing-counter state.
|
2021-06-25 13:28:54 +00:00
|
|
|
*/
|
2022-09-05 09:05:07 +00:00
|
|
|
ReducerRegistry.register<IJaaSState>(
|
|
|
|
'features/jaas', (state = DEFAULT_STATE, action): IJaaSState => {
|
2021-06-25 13:28:54 +00:00
|
|
|
switch (action.type) {
|
|
|
|
|
|
|
|
case SET_DETAILS: {
|
|
|
|
return action.payload;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
2021-11-04 21:10:43 +00:00
|
|
|
}
|
2021-06-25 13:28:54 +00:00
|
|
|
);
|