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

export const SUGGESTIONS_FETCH_REQUEST = 'SUGGESTIONS_FETCH_REQUEST';
export const SUGGESTIONS_FETCH_SUCCESS = 'SUGGESTIONS_FETCH_SUCCESS';
export const SUGGESTIONS_FETCH_FAIL    = 'SUGGESTIONS_FETCH_FAIL';

export function fetchSuggestions() {
  return (dispatch, getState) => {
    dispatch(fetchSuggestionsRequest());

    api(getState).get('/api/v1/accounts/suggestions').then(response => {
      dispatch(fetchSuggestionsSuccess(response.data));
    }).catch(error => {
      dispatch(fetchSuggestionsFail(error));
    });
  };
};

export function fetchSuggestionsRequest() {
  return {
    type: SUGGESTIONS_FETCH_REQUEST
  };
};

export function fetchSuggestionsSuccess(accounts) {
  return {
    type: SUGGESTIONS_FETCH_SUCCESS,
    accounts: accounts
  };
};

export function fetchSuggestionsFail(error) {
  return {
    type: SUGGESTIONS_FETCH_FAIL,
    error: error
  };
};