Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import axios from 'axios'
import { CompetitionFilterParams } from '../interfaces/CompetitionFilterParams'
import { AppDispatch, RootState } from './../store'
import Types from './types'
export const getCompetitions = () => async (dispatch: AppDispatch, getState: () => RootState) => {
const currentParams: CompetitionFilterParams = getState().competitions.filterParams
// Send params in snake-case for api
const params = {
page_size: currentParams.pageSize,
style_id: currentParams.styleId,
city_id: currentParams.cityId,
name: currentParams.name,
page: currentParams.page,
year: currentParams.year,
}
await axios
.get('/competitions/search', { params })
.then((res) => {
dispatch({
type: Types.SET_COMPETITIONS,
payload: res.data.competitions,
})
dispatch({
type: Types.SET_COMPETITIONS_TOTAL,
payload: res.data.total,
})
dispatch({
type: Types.SET_COMPETITIONS_COUNT,
payload: res.data.count,
})
})
.catch((err) => {
console.log(err)
})
}
export const setFilterParams = (params: CompetitionFilterParams) => (dispatch: AppDispatch) => {
dispatch({ type: Types.SET_COMPETITIONS_FILTER_PARAMS, payload: params })
}