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

export const SEARCH_CHANGE            = 'SEARCH_CHANGE';
export const SEARCH_SUGGESTIONS_CLEAR = 'SEARCH_SUGGESTIONS_CLEAR';
export const SEARCH_SUGGESTIONS_READY = 'SEARCH_SUGGESTIONS_READY';
export const SEARCH_RESET             = 'SEARCH_RESET';

export function changeSearch(value) {
  return {
    type: SEARCH_CHANGE,
    value
  };
};

export function clearSearchSuggestions() {
  return {
    type: SEARCH_SUGGESTIONS_CLEAR
  };
};

export function readySearchSuggestions(value, accounts) {
  return {
    type: SEARCH_SUGGESTIONS_READY,
    value,
    accounts
  };
};

export function fetchSearchSuggestions(value) {
  return (dispatch, getState) => {
    if (getState().getIn(['search', 'loaded_value']) === value) {
      return;
    }

    api(getState).get('/api/v1/accounts/search', {
      params: {
        q: value,
        resolve: true,
        limit: 4
      }
    }).then(response => {
      dispatch(readySearchSuggestions(value, response.data));
    });
  };
};

export function resetSearch() {
  return {
    type: SEARCH_RESET
  };
};