2017-05-20 11:31:47 -04:00
|
|
|
import api from '../api';
|
2018-02-17 21:14:46 -05:00
|
|
|
import { fetchRelationships } from './accounts';
|
2018-03-24 08:06:27 -04:00
|
|
|
import { importFetchedAccounts, importFetchedStatuses } from './importer';
|
2016-11-13 07:04:18 -05:00
|
|
|
|
2017-03-31 13:59:54 -04:00
|
|
|
export const SEARCH_CHANGE = 'SEARCH_CHANGE';
|
|
|
|
export const SEARCH_CLEAR = 'SEARCH_CLEAR';
|
|
|
|
export const SEARCH_SHOW = 'SEARCH_SHOW';
|
|
|
|
|
|
|
|
export const SEARCH_FETCH_REQUEST = 'SEARCH_FETCH_REQUEST';
|
|
|
|
export const SEARCH_FETCH_SUCCESS = 'SEARCH_FETCH_SUCCESS';
|
|
|
|
export const SEARCH_FETCH_FAIL = 'SEARCH_FETCH_FAIL';
|
2016-11-13 07:04:18 -05:00
|
|
|
|
|
|
|
export function changeSearch(value) {
|
|
|
|
return {
|
|
|
|
type: SEARCH_CHANGE,
|
2017-05-20 11:31:47 -04:00
|
|
|
value,
|
2016-11-13 07:04:18 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-03-31 13:59:54 -04:00
|
|
|
export function clearSearch() {
|
2016-11-13 07:04:18 -05:00
|
|
|
return {
|
2017-05-20 11:31:47 -04:00
|
|
|
type: SEARCH_CLEAR,
|
2016-11-13 07:04:18 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-03-31 13:59:54 -04:00
|
|
|
export function submitSearch() {
|
2016-11-13 07:04:18 -05:00
|
|
|
return (dispatch, getState) => {
|
2017-03-31 13:59:54 -04:00
|
|
|
const value = getState().getIn(['search', 'value']);
|
|
|
|
|
2017-03-31 16:44:12 -04:00
|
|
|
if (value.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-31 13:59:54 -04:00
|
|
|
dispatch(fetchSearchRequest());
|
2016-11-13 07:04:18 -05:00
|
|
|
|
2018-05-28 20:01:24 -04:00
|
|
|
api(getState).get('/api/v2/search', {
|
2016-11-13 07:04:18 -05:00
|
|
|
params: {
|
|
|
|
q: value,
|
2017-05-20 11:31:47 -04:00
|
|
|
resolve: true,
|
2019-03-29 19:43:38 -04:00
|
|
|
limit: 5,
|
2017-05-20 11:31:47 -04:00
|
|
|
},
|
2016-11-13 07:04:18 -05:00
|
|
|
}).then(response => {
|
2018-03-24 08:06:27 -04:00
|
|
|
if (response.data.accounts) {
|
|
|
|
dispatch(importFetchedAccounts(response.data.accounts));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (response.data.statuses) {
|
|
|
|
dispatch(importFetchedStatuses(response.data.statuses));
|
|
|
|
}
|
|
|
|
|
2017-03-31 13:59:54 -04:00
|
|
|
dispatch(fetchSearchSuccess(response.data));
|
2018-02-17 21:14:46 -05:00
|
|
|
dispatch(fetchRelationships(response.data.accounts.map(item => item.id)));
|
2017-03-31 13:59:54 -04:00
|
|
|
}).catch(error => {
|
|
|
|
dispatch(fetchSearchFail(error));
|
2016-11-13 07:04:18 -05:00
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-03-31 13:59:54 -04:00
|
|
|
export function fetchSearchRequest() {
|
|
|
|
return {
|
2017-05-20 11:31:47 -04:00
|
|
|
type: SEARCH_FETCH_REQUEST,
|
2017-03-31 13:59:54 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchSearchSuccess(results) {
|
|
|
|
return {
|
|
|
|
type: SEARCH_FETCH_SUCCESS,
|
|
|
|
results,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function fetchSearchFail(error) {
|
|
|
|
return {
|
|
|
|
type: SEARCH_FETCH_FAIL,
|
2017-05-20 11:31:47 -04:00
|
|
|
error,
|
2017-03-31 13:59:54 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function showSearch() {
|
2016-11-13 07:04:18 -05:00
|
|
|
return {
|
2017-05-20 11:31:47 -04:00
|
|
|
type: SEARCH_SHOW,
|
2016-11-13 07:04:18 -05:00
|
|
|
};
|
|
|
|
};
|