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.
15 lines
382 B
15 lines
382 B
7 years ago
|
import { STATUS_CARD_FETCH_SUCCESS } from 'flavours/glitch/actions/cards';
|
||
8 years ago
|
|
||
7 years ago
|
import { Map as ImmutableMap, fromJS } from 'immutable';
|
||
8 years ago
|
|
||
7 years ago
|
const initialState = ImmutableMap();
|
||
8 years ago
|
|
||
|
export default function cards(state = initialState, action) {
|
||
|
switch(action.type) {
|
||
|
case STATUS_CARD_FETCH_SUCCESS:
|
||
7 years ago
|
return state.set(action.id, fromJS(action.card));
|
||
8 years ago
|
default:
|
||
|
return state;
|
||
|
}
|
||
|
};
|