Source code for the custom Mastodon (Glitchsoc) instance on berserker.town. https://berserker.town/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.4 KiB

import api from 'flavours/glitch/util/api';
8 years ago
7 years ago
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';
8 years ago
export function changeSearch(value) {
return {
type: SEARCH_CHANGE,
value,
8 years ago
};
};
7 years ago
export function clearSearch() {
8 years ago
return {
type: SEARCH_CLEAR,
8 years ago
};
};
7 years ago
export function submitSearch() {
8 years ago
return (dispatch, getState) => {
7 years ago
const value = getState().getIn(['search', 'value']);
if (value.length === 0) {
return;
}
7 years ago
dispatch(fetchSearchRequest());
8 years ago
api(getState).get('/api/v1/search', {
8 years ago
params: {
q: value,
resolve: true,
},
8 years ago
}).then(response => {
7 years ago
dispatch(fetchSearchSuccess(response.data));
}).catch(error => {
dispatch(fetchSearchFail(error));
8 years ago
});
};
};
7 years ago
export function fetchSearchRequest() {
return {
type: SEARCH_FETCH_REQUEST,
7 years ago
};
};
export function fetchSearchSuccess(results) {
return {
type: SEARCH_FETCH_SUCCESS,
results,
accounts: results.accounts,
statuses: results.statuses,
7 years ago
};
};
export function fetchSearchFail(error) {
return {
type: SEARCH_FETCH_FAIL,
error,
7 years ago
};
};
export function showSearch() {
8 years ago
return {
type: SEARCH_SHOW,
8 years ago
};
};