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