diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-10-16 09:07:19 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-10-16 09:07:19 +0800 |
commit | f2e5fd88469c9e3396197b42298d0b2de8a4d47c (patch) | |
tree | 7f597250870b2157f6e54418fc6c339f63ea8e02 /packages/instant/src/components | |
parent | 18667d739c112955478ab07cb245dc435b31a974 (diff) | |
download | dexon-sol-tools-f2e5fd88469c9e3396197b42298d0b2de8a4d47c.tar dexon-sol-tools-f2e5fd88469c9e3396197b42298d0b2de8a4d47c.tar.gz dexon-sol-tools-f2e5fd88469c9e3396197b42298d0b2de8a4d47c.tar.bz2 dexon-sol-tools-f2e5fd88469c9e3396197b42298d0b2de8a4d47c.tar.lz dexon-sol-tools-f2e5fd88469c9e3396197b42298d0b2de8a4d47c.tar.xz dexon-sol-tools-f2e5fd88469c9e3396197b42298d0b2de8a4d47c.tar.zst dexon-sol-tools-f2e5fd88469c9e3396197b42298d0b2de8a4d47c.zip |
Add ts-optchain and use it instead of lodash get
Diffstat (limited to 'packages/instant/src/components')
-rw-r--r-- | packages/instant/src/components/order_details.tsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/instant/src/components/order_details.tsx b/packages/instant/src/components/order_details.tsx index bd31bfba8..a15ff411b 100644 --- a/packages/instant/src/components/order_details.tsx +++ b/packages/instant/src/components/order_details.tsx @@ -2,6 +2,7 @@ import { BuyQuoteInfo } from '@0xproject/asset-buyer'; import { BigNumber } from '@0xproject/utils'; import * as _ from 'lodash'; import * as React from 'react'; +import { oc } from 'ts-optchain'; import { ColorOption } from '../style/theme'; import { format } from '../util/format'; @@ -16,9 +17,10 @@ export interface OrderDetailsProps { export class OrderDetails extends React.Component<OrderDetailsProps> { public render(): React.ReactNode { const { buyQuoteInfo, ethUsdPrice } = this.props; - const ethAssetPrice = _.get(buyQuoteInfo, 'ethPerAssetPrice'); - const ethTokenFee = _.get(buyQuoteInfo, 'feeEthAmount'); - const totalEthAmount = _.get(buyQuoteInfo, 'totalEthAmount'); + const buyQuoteAccessor = oc(buyQuoteInfo); + const ethAssetPrice = buyQuoteAccessor.ethPerAssetPrice(); + const ethTokenFee = buyQuoteAccessor.feeEthAmount(); + const totalEthAmount = buyQuoteAccessor.totalEthAmount(); return ( <Container padding="20px" width="100%"> <Container marginBottom="10px"> |