Created
October 22, 2016 19:04
-
-
Save bnhansn/1e19b630a428fae0e1ef30fec7483b6c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const initialState = { | |
| channel: null, | |
| currentRoom: {}, | |
| messages: [], | |
| presentUsers: [], | |
| loadingOlderMessages: false, // new line | |
| pagination: { // new line | |
| total_pages: 0, | |
| total_entries: 0, | |
| page_size: 0, | |
| page_number: 0, | |
| }, | |
| }; | |
| export default function (state = initialState, action) { | |
| switch (action.type) { | |
| case 'ROOM_CONNECTED_TO_CHANNEL': | |
| return { | |
| ...state, | |
| channel: action.channel, | |
| currentRoom: action.response.room, | |
| messages: action.response.messages.reverse(), | |
| pagination: action.response.pagination, // new line | |
| }; | |
| case 'USER_LEFT_ROOM': | |
| return initialState; | |
| case 'MESSAGE_CREATED': | |
| return { | |
| ...state, | |
| messages: [ | |
| ...state.messages, | |
| action.message, | |
| ], | |
| }; | |
| case 'ROOM_PRESENCE_UPDATE': | |
| return { | |
| ...state, | |
| presentUsers: action.presentUsers, | |
| }; | |
| case 'FETCH_MESSAGES_REQUEST': // new case | |
| return { | |
| ...state, | |
| loadingOlderMessages: true, | |
| }; | |
| case 'FETCH_MESSAGES_SUCCESS': // new case | |
| return { | |
| ...state, | |
| messages: [ | |
| ...action.response.data.reverse(), | |
| ...state.messages, | |
| ], | |
| pagination: action.response.pagination, | |
| loadingOlderMessages: false, | |
| }; | |
| case 'FETCH_MESSAGES_FAILURE': // new case | |
| return { | |
| ...state, | |
| loadingOlderMessages: false, | |
| }; | |
| default: | |
| return state; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment