Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. const initialState = {
  2. channel: null,
  3. currentRoom: {},
  4. };
  5.  
  6. export default function (state = initialState, action) {
  7. switch (action.type) {
  8. case 'ROOM_CONNECTED_TO_CHANNEL':
  9. return {
  10. ...state,
  11. channel: action.channel,
  12. currentRoom: action.response.room,
  13. };
  14. case 'USER_LEFT_ROOM':
  15. return initialState;
  16. default:
  17. return state;
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement