aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/redux/reducer.ts
blob: e4578d6200b2d2352ef747da346ff13aa1b481c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import * as _ from 'lodash';

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

export interface State {
    ethUsdPrice?: string;
}

export const INITIAL_STATE: State = {
    ethUsdPrice: 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,
            };
        default:
            return state;
    }
};