|
|
@ -42,8 +42,7 @@ export default function statuses(state = initialState, action) { |
|
|
|
case FAVOURITE_REQUEST: |
|
|
|
return state.setIn([action.status.get('id'), 'favourited'], true); |
|
|
|
case UNFAVOURITE_SUCCESS: |
|
|
|
const favouritesCount = action.status.get('favourites_count'); |
|
|
|
return state.setIn([action.status.get('id'), 'favourites_count'], favouritesCount - 1); |
|
|
|
return state.updateIn([action.status.get('id'), 'favourites_count'], x => Math.max(0, x - 1)); |
|
|
|
case FAVOURITE_FAIL: |
|
|
|
return state.get(action.status.get('id')) === undefined ? state : state.setIn([action.status.get('id'), 'favourited'], false); |
|
|
|
case BOOKMARK_REQUEST: |
|
|
|