You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
612 B
25 lines
612 B
import {FETCH_DATA, ADD_FAVORITE_DATA} from '../constants'
|
|
|
|
const initialState = {
|
|
cards: [],
|
|
favoriteCards: [],
|
|
// cards: ["C_ace", "C_K", "C_Q", "C_J"],
|
|
// favoriteCards: [ "C_ace", "C_K"],
|
|
}
|
|
|
|
|
|
// @ts-ignore
|
|
export default appReducer = (state = initialState, action) => {
|
|
switch (action.type) {
|
|
case ADD_FAVORITE_DATA:
|
|
// @ts-ignore
|
|
return {...state, favoriteCards: state.favoriteCards.push(action.payload)};
|
|
case FETCH_DATA:
|
|
// @ts-ignore
|
|
return {...state, cards: action.payload};
|
|
default:
|
|
return state;
|
|
}
|
|
}
|
|
|