aboutsummaryrefslogblamecommitdiffstats
path: root/packages/instant/src/redux/reducer.ts
blob: 5026895aec6c62c383b83fd5c9deba0edf41e28f (plain) (tree)
1
2
3
4
5
6
7
8
                                             





                                               
                                    



                                     
                                   

  
                                                                                 





                                              




                                                      


                         
  
import { BigNumber } from '@0xproject/utils';
import * as _ from 'lodash';

import { Action, ActionTypes } from '../types';

export interface State {
    ethUsdPrice?: string;
    selectedAssetAmount?: BigNumber;
}

export const INITIAL_STATE: State = {
    ethUsdPrice: undefined,
    selectedAssetAmount: undefined,
};

export const reducer = (state: State = INITIAL_STATE, action: Action): State => {
    switch (action.type) {
        case ActionTypes.UPDATE_ETH_USD_PRICE:
            return {
                ...state,
                ethUsdPrice: action.data,
            };
        case ActionTypes.UPDATE_SELECTED_ASSET_AMOUNT:
            return {
                ...state,
                selectedAssetAmount: action.data,
            };
        default:
            return state;
    }
};