Favouriting works, reblogging is a little broken because of <Status>
This commit is contained in:
parent
c2a4d70265
commit
595c8dda60
10 changed files with 145 additions and 19 deletions
|
@ -1,16 +1,30 @@
|
|||
import { TIMELINE_SET, TIMELINE_UPDATE } from '../actions/timelines';
|
||||
import Immutable from 'immutable';
|
||||
import { TIMELINE_SET, TIMELINE_UPDATE } from '../actions/timelines';
|
||||
import { REBLOG_SUCCESS, FAVOURITE_SUCCESS } from '../actions/interactions';
|
||||
import Immutable from 'immutable';
|
||||
|
||||
const initialState = Immutable.Map();
|
||||
|
||||
function updateMatchingStatuses(state, needle, callback) {
|
||||
return state.map(function (list) {
|
||||
return list.map(function (status) {
|
||||
if (status.get('id') === needle.get('id')) {
|
||||
return callback(status);
|
||||
}
|
||||
|
||||
return status;
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
export default function timelines(state = initialState, action) {
|
||||
switch(action.type) {
|
||||
case TIMELINE_SET:
|
||||
return state.set(action.timeline, Immutable.fromJS(action.statuses));
|
||||
case TIMELINE_UPDATE:
|
||||
return state.update(action.timeline, function (list) {
|
||||
return list.unshift(Immutable.fromJS(action.status));
|
||||
});
|
||||
return state.update(action.timeline, list => list.unshift(Immutable.fromJS(action.status)));
|
||||
case REBLOG_SUCCESS:
|
||||
case FAVOURITE_SUCCESS:
|
||||
return updateMatchingStatuses(state, action.status, () => Immutable.fromJS(action.response));
|
||||
default:
|
||||
return state;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue