File size: 617 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import * as SpotAPIUtil from '../util/spot_api_util';

export const RECEIVE_SPOTS = 'RECEIVE_SPOTS';
export const RECEIVE_SPOT = 'RECEIVE_SPOT';


const receiveSpots = spots => ({
    type: RECEIVE_SPOTS,
    spots
});

const receiveSpot = payload => ({
    type: RECEIVE_SPOT,
    payload
});



export const fetchSpots = (filters) => dispatch => {
    return(
        SpotAPIUtil.fetchSpots(filters)
            .then(spots => (dispatch(receiveSpots(spots))
        ))
    )
};

export const fetchSpot = id => dispatch => (
    SpotAPIUtil.fetchSpot(id)
        .then(spot => (dispatch(receiveSpot(spot))
    ))
);