Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
887 Bytes
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;
}
}