about summary refs log tree commit diff
path: root/app/assets/javascripts/components/actions/timelines.jsx
blob: 383b727e9ea92924e190b7fef05c66901af270de (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import api from '../api'

export const TIMELINE_SET     = 'TIMELINE_SET';
export const TIMELINE_UPDATE  = 'TIMELINE_UPDATE';
export const TIMELINE_DELETE  = 'TIMELINE_DELETE';

export const TIMELINE_REFRESH_REQUEST = 'TIMELINE_REFRESH_REQUEST';
export const TIMELINE_REFRESH_SUCCESS = 'TIMELINE_REFRESH_SUCCESS';
export const TIMELINE_REFRESH_FAIL    = 'TIMELINE_REFRESH_FAIL';

export function setTimeline(timeline, statuses) {
  return {
    type: TIMELINE_SET,
    timeline: timeline,
    statuses: statuses
  };
}

export function updateTimeline(timeline, status) {
  return {
    type: TIMELINE_UPDATE,
    timeline: timeline,
    status: status
  };
}

export function deleteFromTimelines(id) {
  return {
    type: TIMELINE_DELETE,
    id: id
  };
}

export function refreshTimelineRequest(timeline) {
  return {
    type: TIMELINE_REFRESH_REQUEST,
    timeline: timeline
  };
}

export function refreshTimeline(timeline) {
  return function (dispatch, getState) {
    dispatch(refreshTimelineRequest(timeline));

    api(getState).get(`/api/statuses/${timeline}`).then(function (response) {
      dispatch(refreshTimelineSuccess(timeline, response.data));
    }).catch(function (error) {
      dispatch(refreshTimelineFail(timeline, error));
    });
  };
}

export function refreshTimelineSuccess(timeline, statuses) {
  return function (dispatch) {
    dispatch(setTimeline(timeline, statuses));
  };
}

export function refreshTimelineFail(timeline, error) {
  return {
    type: TIMELINE_REFRESH_FAIL,
    timeline: timeline,
    error: error
  };
}