Web UI support for the new omnisearch

This commit is contained in:
Eugen Rochko
2017-03-22 04:09:09 +01:00
parent acfee0945c
commit 88f32708c3
4 changed files with 44 additions and 30 deletions

View File

@ -18,11 +18,13 @@ export function clearSearchSuggestions() {
};
};
export function readySearchSuggestions(value, accounts) {
export function readySearchSuggestions(value, { accounts, hashtags, statuses }) {
return {
type: SEARCH_SUGGESTIONS_READY,
value,
accounts
accounts,
hashtags,
statuses
};
};
@ -32,7 +34,7 @@ export function fetchSearchSuggestions(value) {
return;
}
api(getState).get('/api/v1/accounts/search', {
api(getState).get('/api/v1/search', {
params: {
q: value,
resolve: true,