12345678910111213141516171819202122232425262728293031323334 |
- // @flow
-
- import { assign, ReducerRegistry } from '../../base/redux';
- import { SET_CONFERENCE_TIMESTAMP, SET_SESSION_ID, SET_WATCH_REACHABLE } from './actionTypes';
-
- const INITIAL_STATE = {
- sessionID: new Date().getTime()
- };
-
- /**
- * Reduces the Redux actions of the feature features/mobile/watchos.
- */
- ReducerRegistry.register('features/mobile/watchos', (state = INITIAL_STATE, action) => {
- switch (action.type) {
- case SET_CONFERENCE_TIMESTAMP: {
- return assign(state, {
- conferenceTimestamp: action.conferenceTimestamp
- });
- }
- case SET_SESSION_ID: {
- return assign(state, {
- sessionID: action.sessionID,
- conferenceTimestamp: 0
- });
- }
- case SET_WATCH_REACHABLE: {
- return assign(state, {
- watchReachable: action.watchReachable
- });
- }
- default:
- return state;
- }
- });
|