|
|
@ -1,4 +1,5 @@ |
|
|
|
import api from 'flavours/glitch/util/api'; |
|
|
|
import api from 'flavours/glitch/util/api'; |
|
|
|
|
|
|
|
import { fetchRelationships } from './accounts'; |
|
|
|
|
|
|
|
|
|
|
|
export const SEARCH_CHANGE = 'SEARCH_CHANGE'; |
|
|
|
export const SEARCH_CHANGE = 'SEARCH_CHANGE'; |
|
|
|
export const SEARCH_CLEAR = 'SEARCH_CLEAR'; |
|
|
|
export const SEARCH_CLEAR = 'SEARCH_CLEAR'; |
|
|
@ -38,6 +39,7 @@ export function submitSearch() { |
|
|
|
}, |
|
|
|
}, |
|
|
|
}).then(response => { |
|
|
|
}).then(response => { |
|
|
|
dispatch(fetchSearchSuccess(response.data)); |
|
|
|
dispatch(fetchSearchSuccess(response.data)); |
|
|
|
|
|
|
|
dispatch(fetchRelationships(response.data.accounts.map(item => item.id))); |
|
|
|
}).catch(error => { |
|
|
|
}).catch(error => { |
|
|
|
dispatch(fetchSearchFail(error)); |
|
|
|
dispatch(fetchSearchFail(error)); |
|
|
|
}); |
|
|
|
}); |
|
|
|