45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
import { Map as ImmutableMap, fromJS } from 'immutable';
|
|
|
|
const importStatus = (state, status) => state.set(status.id, fromJS(status));
|
|
|
|
const importStatuses = (state, statuses) =>
|
|
state.withMutations(mutable => statuses.forEach(status => importStatus(mutable, status)));
|
|
|
|
const deleteStatus = (state, id, references) => {
|
|
references.forEach(ref => {
|
|
state = deleteStatus(state, ref[0], []);
|
|
});
|
|
|
|
return state.delete(id);
|
|
};
|
|
|
|
const initialState = ImmutableMap();
|
|
|
|
export default function statuses(state = initialState, action) {
|
|
switch(action.type) {
|
|
case STATUS_IMPORT:
|
|
return importStatus(state, action.status);
|
|
case STATUSES_IMPORT:
|
|
return importStatuses(state, action.statuses);
|
|
case STATUS_REVEAL:
|
|
return state.withMutations(map => {
|
|
action.ids.forEach(id => {
|
|
if (!(state.get(id) === undefined)) {
|
|
map.setIn([id, 'hidden'], false);
|
|
}
|
|
});
|
|
});
|
|
case STATUS_HIDE:
|
|
return state.withMutations(map => {
|
|
action.ids.forEach(id => {
|
|
if (!(state.get(id) === undefined)) {
|
|
map.setIn([id, 'hidden'], true);
|
|
}
|
|
});
|
|
});
|
|
case TIMELINE_DELETE:
|
|
return deleteStatus(state, action.id, action.references);
|
|
default:
|
|
return state;
|
|
}
|
|
};
|