jiti-meet/react/features/dropbox/reducer.ts

35 lines
840 B
TypeScript
Raw Normal View History

import PersistenceRegistry from '../base/redux/PersistenceRegistry';
import ReducerRegistry from '../base/redux/ReducerRegistry';
import { UPDATE_DROPBOX_TOKEN } from './actionTypes';
/**
* The redux subtree of this feature.
*/
const STORE_NAME = 'features/dropbox';
export interface IDropboxState {
expireDate?: number;
rToken?: string;
token?: string;
}
/**
* Sets up the persistence of the feature {@code dropbox}.
*/
PersistenceRegistry.register(STORE_NAME);
2022-09-05 09:05:07 +00:00
ReducerRegistry.register<IDropboxState>(STORE_NAME, (state = {}, action): IDropboxState => {
switch (action.type) {
case UPDATE_DROPBOX_TOKEN:
return {
...state,
token: action.token,
rToken: action.rToken,
expireDate: action.expireDate
};
default:
return state;
}
});