Rename themes -> flavours ? ?
This commit is contained in:
14
app/javascript/flavours/glitch/reducers/cards.js
Normal file
14
app/javascript/flavours/glitch/reducers/cards.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import { STATUS_CARD_FETCH_SUCCESS } from 'flavours/glitch/actions/cards';
|
||||
|
||||
import { Map as ImmutableMap, fromJS } from 'immutable';
|
||||
|
||||
const initialState = ImmutableMap();
|
||||
|
||||
export default function cards(state = initialState, action) {
|
||||
switch(action.type) {
|
||||
case STATUS_CARD_FETCH_SUCCESS:
|
||||
return state.set(action.id, fromJS(action.card));
|
||||
default:
|
||||
return state;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user