47 lines
1011 B
TypeScript
47 lines
1011 B
TypeScript
import ReducerRegistry from '../base/redux/ReducerRegistry';
|
|
|
|
import {
|
|
UPDATE_BREAKOUT_ROOMS,
|
|
_RESET_BREAKOUT_ROOMS,
|
|
_UPDATE_ROOM_COUNTER
|
|
} from './actionTypes';
|
|
import { FEATURE_KEY } from './constants';
|
|
import { IRooms } from './types';
|
|
|
|
const DEFAULT_STATE = {
|
|
rooms: {},
|
|
roomCounter: 0
|
|
};
|
|
|
|
export interface IBreakoutRoomsState {
|
|
roomCounter: number;
|
|
rooms: IRooms;
|
|
}
|
|
|
|
/**
|
|
* Listen for actions for the breakout-rooms feature.
|
|
*/
|
|
ReducerRegistry.register<IBreakoutRoomsState>(FEATURE_KEY, (state = DEFAULT_STATE, action): IBreakoutRoomsState => {
|
|
switch (action.type) {
|
|
case _UPDATE_ROOM_COUNTER:
|
|
return {
|
|
...state,
|
|
roomCounter: action.roomCounter
|
|
};
|
|
case UPDATE_BREAKOUT_ROOMS: {
|
|
const { roomCounter, rooms } = action;
|
|
|
|
return {
|
|
...state,
|
|
roomCounter,
|
|
rooms
|
|
};
|
|
}
|
|
case _RESET_BREAKOUT_ROOMS: {
|
|
return DEFAULT_STATE;
|
|
}
|
|
}
|
|
|
|
return state;
|
|
});
|