use vaultEvents in FundingSummary
This commit is contained in:
parent
98c1f80942
commit
de6c61ad3f
|
@ -8,7 +8,6 @@ import Card from '@material-ui/core/Card'
|
|||
import CardContent from '@material-ui/core/CardContent'
|
||||
import Typography from '@material-ui/core/Typography'
|
||||
import LinearProgress from '@material-ui/core/LinearProgress'
|
||||
import { FundingContext } from '../../context'
|
||||
import { getDepositWithdrawTotals, getPledgesWaitingCommit } from '../../selectors/pledging'
|
||||
import { getTokenAddress } from '../../utils/currencies'
|
||||
|
||||
|
@ -50,11 +49,9 @@ const styles = {
|
|||
const getNet = (deposits, withdraws) => Number(deposits) - Number(withdraws)
|
||||
const getValue = (deposits, withdraws) => (getNet(deposits, withdraws) / Number(deposits)) * 100
|
||||
function SimpleCard(props) {
|
||||
const { classes, title, transfers, pledges } = props
|
||||
const { classes, title, transfers, pledges, vaultEvents } = props
|
||||
|
||||
return (
|
||||
<FundingContext.Consumer>
|
||||
{({ vaultEvents }) =>
|
||||
<Card className={classes.card}>
|
||||
<CardContent>
|
||||
<Typography variant="h5" className={classes.cardTitle}>
|
||||
|
@ -113,8 +110,6 @@ function SimpleCard(props) {
|
|||
})}
|
||||
</CardContent>
|
||||
</Card>
|
||||
}
|
||||
</FundingContext.Consumer>
|
||||
)
|
||||
}
|
||||
|
||||
|
@ -122,7 +117,8 @@ SimpleCard.propTypes = {
|
|||
classes: PropTypes.object.isRequired,
|
||||
title: PropTypes.string,
|
||||
pledges: PropTypes.array.isRequired,
|
||||
transfers: PropTypes.array.isRequired
|
||||
transfers: PropTypes.array.isRequired,
|
||||
vaultEvents: PropTypes.array.isRequired
|
||||
}
|
||||
|
||||
const styledCard = withStyles(styles)(SimpleCard)
|
||||
|
@ -130,5 +126,6 @@ export default withDatabase(withObservables([], ({ database }) => ({
|
|||
transfers: database.collections.get('lp_events').query(
|
||||
Q.where('event', 'Transfer')
|
||||
).observe(),
|
||||
vaultEvents : database.collections.get('vault_events').query().observe()
|
||||
}))(styledCard))
|
||||
|
||||
|
|
Loading…
Reference in New Issue