jiti-meet/react/features/base/jwt/reducer.ts

36 lines
974 B
TypeScript
Raw Normal View History

import ReducerRegistry from '../redux/ReducerRegistry';
import { equals } from '../redux/functions';
2017-04-21 10:00:50 +00:00
2018-06-26 22:56:22 +00:00
import { SET_JWT } from './actionTypes';
2017-04-21 10:00:50 +00:00
export interface IJwtState {
jwt?: string;
}
2017-04-21 10:00:50 +00:00
/**
* Reduces redux actions which affect the JSON Web Token (JWT) stored in the
* redux store.
*
* @param {Object} state - The current redux state.
* @param {Object} action - The redux action to reduce.
* @returns {Object} The next redux state which is the result of reducing the
* specified {@code action}.
*/
2017-10-05 22:54:13 +00:00
ReducerRegistry.register(
2017-10-12 19:59:11 +00:00
'features/base/jwt',
(state: IJwtState = {}, action) => {
2017-10-12 19:59:11 +00:00
switch (action.type) {
case SET_JWT: {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
2017-10-12 19:59:11 +00:00
const { type, ...payload } = action;
const nextState = {
...payload
};
return equals(state, nextState) ? state : nextState;
}
}
return state;
});