mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-19 00:27:48 +00:00
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
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,
|
|
userContextCache: {}
|
|
};
|
|
|
|
export interface IBreakoutRoomsState {
|
|
roomCounter: number;
|
|
rooms: IRooms;
|
|
userContextCache: {
|
|
[participantId: string]: {
|
|
id?: string;
|
|
name?: string;
|
|
};
|
|
};
|
|
}
|
|
|
|
/**
|
|
* 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, userContextCache } = action;
|
|
|
|
return {
|
|
...state,
|
|
roomCounter,
|
|
rooms,
|
|
userContextCache: userContextCache || state.userContextCache
|
|
};
|
|
}
|
|
case _RESET_BREAKOUT_ROOMS: {
|
|
return DEFAULT_STATE;
|
|
}
|
|
}
|
|
|
|
return state;
|
|
});
|