2016-10-31 01:06:43 +11:00
|
|
|
import {
|
2016-11-24 09:34:12 +11:00
|
|
|
REBLOG_REQUEST,
|
2016-10-31 01:06:43 +11:00
|
|
|
REBLOG_SUCCESS,
|
2016-11-24 09:34:12 +11:00
|
|
|
REBLOG_FAIL,
|
2016-10-31 01:06:43 +11:00
|
|
|
UNREBLOG_SUCCESS,
|
2016-11-24 09:34:12 +11:00
|
|
|
FAVOURITE_REQUEST,
|
2016-10-31 01:06:43 +11:00
|
|
|
FAVOURITE_SUCCESS,
|
2016-11-24 09:34:12 +11:00
|
|
|
FAVOURITE_FAIL,
|
2016-10-31 01:06:43 +11:00
|
|
|
UNFAVOURITE_SUCCESS
|
|
|
|
} from '../actions/interactions';
|
|
|
|
import {
|
|
|
|
STATUS_FETCH_SUCCESS,
|
|
|
|
CONTEXT_FETCH_SUCCESS
|
|
|
|
} from '../actions/statuses';
|
|
|
|
import {
|
|
|
|
TIMELINE_REFRESH_SUCCESS,
|
|
|
|
TIMELINE_UPDATE,
|
|
|
|
TIMELINE_DELETE,
|
|
|
|
TIMELINE_EXPAND_SUCCESS
|
|
|
|
} from '../actions/timelines';
|
|
|
|
import {
|
|
|
|
ACCOUNT_TIMELINE_FETCH_SUCCESS,
|
2016-11-24 08:57:57 +11:00
|
|
|
ACCOUNT_TIMELINE_EXPAND_SUCCESS,
|
|
|
|
ACCOUNT_BLOCK_SUCCESS
|
2016-10-31 01:06:43 +11:00
|
|
|
} from '../actions/accounts';
|
2016-11-21 05:39:18 +11:00
|
|
|
import {
|
|
|
|
NOTIFICATIONS_UPDATE,
|
|
|
|
NOTIFICATIONS_REFRESH_SUCCESS,
|
|
|
|
NOTIFICATIONS_EXPAND_SUCCESS
|
|
|
|
} from '../actions/notifications';
|
2017-01-16 23:27:58 +11:00
|
|
|
import {
|
|
|
|
FAVOURITED_STATUSES_FETCH_SUCCESS,
|
|
|
|
FAVOURITED_STATUSES_EXPAND_SUCCESS
|
|
|
|
} from '../actions/favourites';
|
2017-03-22 14:09:09 +11:00
|
|
|
import { SEARCH_SUGGESTIONS_READY } from '../actions/search';
|
2016-10-31 01:06:43 +11:00
|
|
|
import Immutable from 'immutable';
|
|
|
|
|
|
|
|
const normalizeStatus = (state, status) => {
|
2016-11-21 05:39:18 +11:00
|
|
|
if (!status) {
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2017-02-27 09:06:27 +11:00
|
|
|
const normalStatus = { ...status };
|
|
|
|
normalStatus.account = status.account.id;
|
2016-10-31 01:06:43 +11:00
|
|
|
|
2016-11-04 02:57:44 +11:00
|
|
|
if (status.reblog && status.reblog.id) {
|
2017-02-27 09:06:27 +11:00
|
|
|
state = normalizeStatus(state, status.reblog);
|
|
|
|
normalStatus.reblog = status.reblog.id;
|
2016-10-31 01:06:43 +11:00
|
|
|
}
|
|
|
|
|
2017-02-27 09:06:27 +11:00
|
|
|
return state.update(status.id, Immutable.Map(), map => map.mergeDeep(Immutable.fromJS(normalStatus)));
|
2016-10-31 01:06:43 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
const normalizeStatuses = (state, statuses) => {
|
|
|
|
statuses.forEach(status => {
|
|
|
|
state = normalizeStatus(state, status);
|
|
|
|
});
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
|
|
|
const deleteStatus = (state, id, references) => {
|
|
|
|
references.forEach(ref => {
|
|
|
|
state = deleteStatus(state, ref[0], []);
|
|
|
|
});
|
|
|
|
|
|
|
|
return state.delete(id);
|
|
|
|
};
|
|
|
|
|
2016-11-24 08:57:57 +11:00
|
|
|
const filterStatuses = (state, relationship) => {
|
|
|
|
state.forEach(status => {
|
|
|
|
if (status.get('account') !== relationship.id) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
state = deleteStatus(state, status.get('id'), state.filter(item => item.get('reblog') === status.get('id')));
|
|
|
|
});
|
|
|
|
|
|
|
|
return state;
|
|
|
|
};
|
|
|
|
|
2016-10-31 01:06:43 +11:00
|
|
|
const initialState = Immutable.Map();
|
|
|
|
|
|
|
|
export default function statuses(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-01-16 23:27:58 +11:00
|
|
|
case TIMELINE_UPDATE:
|
|
|
|
case STATUS_FETCH_SUCCESS:
|
|
|
|
case NOTIFICATIONS_UPDATE:
|
|
|
|
return normalizeStatus(state, action.status);
|
|
|
|
case REBLOG_SUCCESS:
|
|
|
|
case UNREBLOG_SUCCESS:
|
|
|
|
case FAVOURITE_SUCCESS:
|
|
|
|
case UNFAVOURITE_SUCCESS:
|
|
|
|
return normalizeStatus(state, action.response);
|
|
|
|
case FAVOURITE_REQUEST:
|
|
|
|
return state.setIn([action.status.get('id'), 'favourited'], true);
|
|
|
|
case FAVOURITE_FAIL:
|
|
|
|
return state.setIn([action.status.get('id'), 'favourited'], false);
|
|
|
|
case REBLOG_REQUEST:
|
|
|
|
return state.setIn([action.status.get('id'), 'reblogged'], true);
|
|
|
|
case REBLOG_FAIL:
|
|
|
|
return state.setIn([action.status.get('id'), 'reblogged'], false);
|
|
|
|
case TIMELINE_REFRESH_SUCCESS:
|
|
|
|
case TIMELINE_EXPAND_SUCCESS:
|
|
|
|
case ACCOUNT_TIMELINE_FETCH_SUCCESS:
|
|
|
|
case ACCOUNT_TIMELINE_EXPAND_SUCCESS:
|
|
|
|
case CONTEXT_FETCH_SUCCESS:
|
|
|
|
case NOTIFICATIONS_REFRESH_SUCCESS:
|
|
|
|
case NOTIFICATIONS_EXPAND_SUCCESS:
|
|
|
|
case FAVOURITED_STATUSES_FETCH_SUCCESS:
|
|
|
|
case FAVOURITED_STATUSES_EXPAND_SUCCESS:
|
2017-03-22 14:09:09 +11:00
|
|
|
case SEARCH_SUGGESTIONS_READY:
|
2017-01-16 23:27:58 +11:00
|
|
|
return normalizeStatuses(state, action.statuses);
|
|
|
|
case TIMELINE_DELETE:
|
|
|
|
return deleteStatus(state, action.id, action.references);
|
|
|
|
case ACCOUNT_BLOCK_SUCCESS:
|
|
|
|
return filterStatuses(state, action.relationship);
|
|
|
|
default:
|
|
|
|
return state;
|
2016-10-31 01:06:43 +11:00
|
|
|
}
|
|
|
|
};
|