about summary refs log tree commit diff
path: root/app/assets/javascripts/components/actions/follow.jsx
blob: 8eb4407894428ec395d7ee5283e05505cc8842ff (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
import api from '../api'

export const FOLLOW_CHANGE         = 'FOLLOW_CHANGE';
export const FOLLOW_SUBMIT_REQUEST = 'FOLLOW_SUBMIT_REQUEST';
export const FOLLOW_SUBMIT_SUCCESS = 'FOLLOW_SUBMIT_SUCCESS';
export const FOLLOW_SUBMIT_FAIL    = 'FOLLOW_SUBMIT_FAIL';

export function changeFollow(text) {
  return {
    type: FOLLOW_CHANGE,
    text: text
  };
};

export function submitFollow(router) {
  return function (dispatch, getState) {
    dispatch(submitFollowRequest());

    api(getState).post('/api/v1/follows', {
      uri: getState().getIn(['follow', 'text'])
    }).then(function (response) {
      dispatch(submitFollowSuccess(response.data));
      router.push(`/accounts/${response.data.id}`);
    }).catch(function (error) {
      dispatch(submitFollowFail(error));
    });
  };
};

export function submitFollowRequest() {
  return {
    type: FOLLOW_SUBMIT_REQUEST
  };
};

export function submitFollowSuccess(account) {
  return {
    type: FOLLOW_SUBMIT_SUCCESS,
    account: account
  };
};

export function submitFollowFail(error) {
  return {
    type: FOLLOW_SUBMIT_FAIL,
    error: error
  };
};