25 lines
580 B
JavaScript
25 lines
580 B
JavaScript
|
import * as types from '../actions/actionsTypes';
|
||
|
|
||
|
const initialState = {
|
||
|
usersTyping: []
|
||
|
};
|
||
|
|
||
|
export default function room(state = initialState, action) {
|
||
|
switch (action.type) {
|
||
|
case types.ROOM.ADD_USER_TYPING:
|
||
|
return {
|
||
|
...state,
|
||
|
usersTyping: [...state.usersTyping.filter(user => user !== action.username), action.username]
|
||
|
};
|
||
|
case types.ROOM.REMOVE_USER_TYPING:
|
||
|
return {
|
||
|
...state,
|
||
|
usersTyping: [...state.usersTyping.filter(user => user !== action.username)]
|
||
|
};
|
||
|
// case types.LOGOUT:
|
||
|
// return initialState;
|
||
|
default:
|
||
|
return state;
|
||
|
}
|
||
|
}
|