Fix report dialog crashing when a toot gets deleted

Fixes #1155
master
Thibaut Girka 5 years ago committed by ThibG
parent fce885f271
commit 0baaee495f
  1. 13
      app/javascript/flavours/glitch/reducers/reports.js

@ -8,6 +8,9 @@ import {
REPORT_COMMENT_CHANGE,
REPORT_FORWARD_CHANGE,
} from 'flavours/glitch/actions/reports';
import {
TIMELINE_DELETE,
} from 'flavours/glitch/actions/timelines';
import { Map as ImmutableMap, Set as ImmutableSet } from 'immutable';
const initialState = ImmutableMap({
@ -20,6 +23,14 @@ const initialState = ImmutableMap({
}),
});
const deleteStatus = (state, id, references) => {
references.forEach(ref => {
state = deleteStatus(state, ref[0], []);
});
return state.updateIn(['new', 'status_ids'], ImmutableSet(), set => set.remove(id));
};
export default function reports(state = initialState, action) {
switch(action.type) {
case REPORT_INIT:
@ -58,6 +69,8 @@ export default function reports(state = initialState, action) {
map.setIn(['new', 'comment'], '');
map.setIn(['new', 'isSubmitting'], false);
});
case TIMELINE_DELETE:
return deleteStatus(state, action.id, action.references);
default:
return state;
}

Loading…
Cancel
Save