mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
prepare showing real balances and network name
This commit is contained in:
parent
f3d011cae7
commit
662b608148
@ -10,15 +10,40 @@ const Popover = ({
|
|||||||
style: React.CSSProperties
|
style: React.CSSProperties
|
||||||
}) => (
|
}) => (
|
||||||
<div className={styles.popover} ref={forwardedRef} style={style}>
|
<div className={styles.popover} ref={forwardedRef} style={style}>
|
||||||
|
{/*
|
||||||
|
TODO: uncomment to show real balances,
|
||||||
|
and remove next infoline block with fake data
|
||||||
|
*/}
|
||||||
|
{/*
|
||||||
|
<User.Consumer>
|
||||||
|
{states =>
|
||||||
|
(states.balanceEth || states.balanceOcn) && (
|
||||||
|
<div className={styles.popoverInfoline}>
|
||||||
|
<span
|
||||||
|
className={styles.balance}
|
||||||
|
title={(states.balanceEth / 1e18).toFixed(10)}
|
||||||
|
>
|
||||||
|
<strong>
|
||||||
|
{(states.balanceEth / 1e18)
|
||||||
|
.toFixed(3)
|
||||||
|
.slice(0, -1)}
|
||||||
|
</strong>{' '}
|
||||||
|
ETH
|
||||||
|
</span>
|
||||||
|
<span className={styles.balance}>
|
||||||
|
<strong>{states.balanceOcn}</strong> OCEAN
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</User.Consumer>
|
||||||
|
*/}
|
||||||
|
|
||||||
<div className={styles.popoverInfoline}>
|
<div className={styles.popoverInfoline}>
|
||||||
<span className={styles.balance} title="Fake data">
|
<span className={styles.balance} title="Fake data">
|
||||||
<strong>30</strong> ETH
|
<strong>30</strong> ETH
|
||||||
</span>
|
</span>
|
||||||
{/* <span className={styles.balance} title={(eth / 1e18).toFixed(10)}>
|
|
||||||
<strong>{(eth / 1e18).toFixed(3).slice(0, -1)}</strong> ETH
|
|
||||||
</span> */}
|
|
||||||
<span className={styles.balance}>
|
<span className={styles.balance}>
|
||||||
{/* <strong>{ocn}</strong> OCEAN */}
|
|
||||||
<strong>2474290</strong> OCEAN
|
<strong>2474290</strong> OCEAN
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
@ -39,10 +64,14 @@ const Popover = ({
|
|||||||
|
|
||||||
<div className={styles.popoverInfoline}>
|
<div className={styles.popoverInfoline}>
|
||||||
Fake Network Name
|
Fake Network Name
|
||||||
|
{/*
|
||||||
|
TODO: uncomment to show real network name
|
||||||
|
*/}
|
||||||
{/*
|
{/*
|
||||||
<User.Consumer>
|
<User.Consumer>
|
||||||
{states => states.network && states.network}
|
{states => states.network && states.network}
|
||||||
</User.Consumer> */}
|
</User.Consumer>
|
||||||
|
*/}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user