aboutsummaryrefslogblamecommitdiffstats
path: root/packages/instant/src/containers/selected_asset_instant_heading.ts
blob: 0509db5dacbff514d1d076728abddf21c8ff8850 (plain) (tree)
1
2
3
4
5
6
7
8
                                      


                                      
                                 

                                         
                                             








                                                               
                                  



                                                                                            
                                                                                     
                                   
                                 




                                                                                                               
import { BigNumber } from '@0x/utils';
import * as _ from 'lodash';
import * as React from 'react';
import { connect } from 'react-redux';
import { oc } from 'ts-optchain';

import { State } from '../redux/reducer';
import { AsyncProcessState } from '../types';

import { InstantHeading } from '../components/instant_heading';

export interface InstantHeadingProps {}

interface ConnectedState {
    selectedAssetAmount?: BigNumber;
    totalEthBaseAmount?: BigNumber;
    ethUsdPrice?: BigNumber;
    quoteState: AsyncProcessState;
}

const mapStateToProps = (state: State, _ownProps: InstantHeadingProps): ConnectedState => ({
    selectedAssetAmount: state.selectedAssetAmount,
    totalEthBaseAmount: oc(state).latestBuyQuote.worstCaseQuoteInfo.totalEthAmount(),
    ethUsdPrice: state.ethUsdPrice,
    quoteState: state.quoteState,
});

export const SelectedAssetInstantHeading: React.ComponentClass<InstantHeadingProps> = connect(mapStateToProps)(
    InstantHeading,
);