2016-10-30 10:06:43 -04:00
|
|
|
import {
|
|
|
|
REBLOG_SUCCESS,
|
|
|
|
UNREBLOG_SUCCESS,
|
|
|
|
FAVOURITE_SUCCESS,
|
|
|
|
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,
|
|
|
|
ACCOUNT_TIMELINE_EXPAND_SUCCESS
|
|
|
|
} from '../actions/accounts';
|
|
|
|
import Immutable from 'immutable';
|
|
|
|
|
|
|
|
const normalizeStatus = (state, status) => {
|
2016-11-03 11:57:44 -04:00
|
|
|
status.account = status.account.id;
|
2016-10-30 10:06:43 -04:00
|
|
|
|
2016-11-03 11:57:44 -04:00
|
|
|
if (status.reblog && status.reblog.id) {
|
|
|
|
state = normalizeStatus(state, status.reblog);
|
|
|
|
status.reblog = status.reblog.id;
|
2016-10-30 10:06:43 -04:00
|
|
|
}
|
|
|
|
|
2016-11-03 11:57:44 -04:00
|
|
|
return state.set(status.id, Immutable.fromJS(status));
|
2016-10-30 10:06:43 -04: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);
|
|
|
|
};
|
|
|
|
|
|
|
|
const initialState = Immutable.Map();
|
|
|
|
|
|
|
|
export default function statuses(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
|
|
|
case TIMELINE_UPDATE:
|
|
|
|
case STATUS_FETCH_SUCCESS:
|
2016-11-03 11:57:44 -04:00
|
|
|
return normalizeStatus(state, action.status);
|
2016-10-31 11:59:36 -04:00
|
|
|
case REBLOG_SUCCESS:
|
|
|
|
case UNREBLOG_SUCCESS:
|
|
|
|
case FAVOURITE_SUCCESS:
|
|
|
|
case UNFAVOURITE_SUCCESS:
|
2016-11-03 11:57:44 -04:00
|
|
|
return normalizeStatus(state, action.response);
|
2016-10-30 10:06:43 -04:00
|
|
|
case TIMELINE_REFRESH_SUCCESS:
|
|
|
|
case TIMELINE_EXPAND_SUCCESS:
|
|
|
|
case ACCOUNT_TIMELINE_FETCH_SUCCESS:
|
|
|
|
case ACCOUNT_TIMELINE_EXPAND_SUCCESS:
|
|
|
|
case CONTEXT_FETCH_SUCCESS:
|
2016-11-03 11:57:44 -04:00
|
|
|
return normalizeStatuses(state, action.statuses);
|
2016-10-30 10:06:43 -04:00
|
|
|
case TIMELINE_DELETE:
|
|
|
|
return deleteStatus(state, action.id, action.references);
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|