AugurProject/augur-ui

View on GitHub
src/modules/markets/reducers/market-creator-fees.js

Summary

Maintainability
A
0 mins
Test Coverage
import { UPDATE_MARKET_CREATOR_FEES } from "modules/markets/actions/market-creator-fees-management";
import { RESET_STATE } from "modules/app/actions/reset-state";

const DEFAULT_STATE = {};

export default function(marketCreatorFees = DEFAULT_STATE, action) {
  switch (action.type) {
    case UPDATE_MARKET_CREATOR_FEES:
      return {
        ...marketCreatorFees,
        ...action.data.marketCreatorFees
      };
    case RESET_STATE:
      return DEFAULT_STATE;
    default:
      return marketCreatorFees;
  }
}