logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

cards.js (369B)


  1. import { STATUS_CARD_FETCH_SUCCESS } from '../actions/cards';
  2. import { Map as ImmutableMap, fromJS } from 'immutable';
  3. const initialState = ImmutableMap();
  4. export default function cards(state = initialState, action) {
  5. switch(action.type) {
  6. case STATUS_CARD_FETCH_SUCCESS:
  7. return state.set(action.id, fromJS(action.card));
  8. default:
  9. return state;
  10. }
  11. };