21 lines
465 B
TypeScript
21 lines
465 B
TypeScript
import { ActiveUser, ApplicationActions } from '../types';
|
|
import { SET_ACTIVE_USERS } from '../actions/actionsTypes';
|
|
|
|
export interface IActiveUsers {
|
|
[key: string]: ActiveUser;
|
|
}
|
|
|
|
const initialState: IActiveUsers = {};
|
|
|
|
export default function activeUsers(state = initialState, action: ApplicationActions): IActiveUsers {
|
|
switch (action.type) {
|
|
case SET_ACTIVE_USERS:
|
|
return {
|
|
...state,
|
|
...action.activeUsers
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
}
|