mastodon/app/javascript/flavours/glitch/actions/search.js

74 lines
1.4 KiB
JavaScript
Raw Normal View History

2017-12-04 08:26:40 +01:00
import api from 'flavours/glitch/util/api';
2016-11-13 13:04:18 +01:00
2017-03-31 19:59:54 +02: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 13:04:18 +01:00
export function changeSearch(value) {
return {
type: SEARCH_CHANGE,
value,
2016-11-13 13:04:18 +01:00
};
};
2017-03-31 19:59:54 +02:00
export function clearSearch() {
2016-11-13 13:04:18 +01:00
return {
type: SEARCH_CLEAR,
2016-11-13 13:04:18 +01:00
};
};
2017-03-31 19:59:54 +02:00
export function submitSearch() {
2016-11-13 13:04:18 +01:00
return (dispatch, getState) => {
2017-03-31 19:59:54 +02:00
const value = getState().getIn(['search', 'value']);
2017-03-31 22:44:12 +02:00
if (value.length === 0) {
return;
}
2017-03-31 19:59:54 +02:00
dispatch(fetchSearchRequest());
2016-11-13 13:04:18 +01:00
2017-03-22 04:09:09 +01:00
api(getState).get('/api/v1/search', {
2016-11-13 13:04:18 +01:00
params: {
q: value,
resolve: true,
},
2016-11-13 13:04:18 +01:00
}).then(response => {
2017-03-31 19:59:54 +02:00
dispatch(fetchSearchSuccess(response.data));
}).catch(error => {
dispatch(fetchSearchFail(error));
2016-11-13 13:04:18 +01:00
});
};
};
2017-03-31 19:59:54 +02:00
export function fetchSearchRequest() {
return {
type: SEARCH_FETCH_REQUEST,
2017-03-31 19:59:54 +02:00
};
};
export function fetchSearchSuccess(results) {
return {
type: SEARCH_FETCH_SUCCESS,
results,
accounts: results.accounts,
statuses: results.statuses,
2017-03-31 19:59:54 +02:00
};
};
export function fetchSearchFail(error) {
return {
type: SEARCH_FETCH_FAIL,
error,
2017-03-31 19:59:54 +02:00
};
};
export function showSearch() {
2016-11-13 13:04:18 +01:00
return {
type: SEARCH_SHOW,
2016-11-13 13:04:18 +01:00
};
};