File size: 887 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
33
34
35
36
37
38
39
40
41
import {
    GET_MOVIE,
    SHOW_LOADING_SPINNER,
    CLEAR_MOVIE
} from '../actions';


const defaultState = {
    movie: null,
    actors: null,
    directors: [],
    loading: false
};

export default function (state = defaultState, action) {
    switch (action.type) {
        case GET_MOVIE:
            return {
                ...state,
                movie: action.payload.movie,
                actors: action.payload.actors,
                loading: false,
                directors: action.payload.directors
            }
        case SHOW_LOADING_SPINNER:
            return {
                ...state,
                loading: true
            }
        case CLEAR_MOVIE:
            return {
                ...state,
                movie: null,
                actors: null,
                directors: []
            }

        default:
            return state;
    }
}