about summary refs log tree commit diff
path: root/app/assets/javascripts/components/reducers/notifications.jsx
blob: a1d99f0e108354e4a76720f9627d9aff00216137 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { COMPOSE_SUBMIT_FAIL, COMPOSE_UPLOAD_FAIL } from '../actions/compose';
import { FOLLOW_SUBMIT_FAIL }                       from '../actions/follow';
import { REBLOG_FAIL, FAVOURITE_FAIL }              from '../actions/interactions';
import { TIMELINE_REFRESH_FAIL }                    from '../actions/timelines';
import { NOTIFICATION_DISMISS, NOTIFICATION_CLEAR } from '../actions/notifications';
import Immutable                                    from 'immutable';

const initialState = Immutable.List();

function notificationFromError(state, error) {
  let n = Immutable.Map({
    key: state.size > 0 ? state.last().get('key') + 1 : 0,
    message: ''
  });

  if (error.response) {
    n = n.withMutations(map => {
      map.set('message', error.response.statusText);
      map.set('title', `${error.response.status}`);
    });
  } else {
    n = n.set('message', `${error}`);
  }

  return state.push(n);
};

export default function notifications(state = initialState, action) {
  switch(action.type) {
    case COMPOSE_SUBMIT_FAIL:
    case COMPOSE_UPLOAD_FAIL:
    case FOLLOW_SUBMIT_FAIL:
    case REBLOG_FAIL:
    case FAVOURITE_FAIL:
    case TIMELINE_REFRESH_FAIL:
      return notificationFromError(state, action.error);
    case NOTIFICATION_DISMISS:
      return state.filterNot(item => item.get('key') === action.notification.key);
    case NOTIFICATION_CLEAR:
      return state.clear();
    default:
      return state;
  }
};