liquid-funding/app/components/dashboard/FundingSummary.jsx

98 lines
3.3 KiB
React
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
import { withStyles } from '@material-ui/core/styles'
import Card from '@material-ui/core/Card'
import CardContent from '@material-ui/core/CardContent'
import Typography from '@material-ui/core/Typography'
2018-12-19 19:42:04 +00:00
import LinearProgress from '@material-ui/core/LinearProgress'
import { FundingContext } from '../../context'
import { getDepositWithdrawTotals } from '../../selectors/pledging'
const styles = {
card: {
minWidth: 275,
},
fundingSummaries: {
display: 'flex',
flexDirection: 'column',
alignItems: 'center'
},
bullet: {
display: 'inline-block',
margin: '0 2px',
transform: 'scale(0.8)',
},
title: {
fontSize: 14,
},
pos: {
marginBottom: 12,
},
2018-12-19 19:42:04 +00:00
linearColorPrimary: {
backgroundColor: '#b2dfdb',
},
linearBarColorPrimary: {
backgroundColor: '#00695c',
},
}
2018-12-19 19:42:04 +00:00
const getNet = (deposits, withdraws) => Number(deposits) - Number(withdraws)
const getValue = (deposits, withdraws) => (getNet(deposits, withdraws) / Number(deposits)) * 100
function SimpleCard(props) {
const { classes, title } = props
return (
<FundingContext.Consumer>
{({ allPledges, allLpEvents, vaultEvents }) =>
<Card className={classes.card}>
<CardContent>
<Typography variant="h5" component="h2">
{title}
</Typography>
{!!allLpEvents &&
Object.entries(getDepositWithdrawTotals({ allLpEvents, allPledges, vaultEvents }))
.map(token => {
const [name, amounts] = token
const { deposits, withdraws } = amounts
return (
<Card key={name} className={classes.fundingSummaries}>
<Typography variant="h5" component="h2">
{name}
</Typography>
2018-12-19 19:42:04 +00:00
<CardContent>
<Typography key={name + 'withdraw'} className={classes.pos} color="textSecondary">
Funded: {deposits}
</Typography>
<Typography key={name + 'deposit'} className={classes.pos} color="textSecondary">
Withdrawn: {withdraws}
</Typography>
<Typography key={name + 'total'} className={classes.pos} color="textSecondary">
Net: {Number(deposits) - Number(withdraws)}
</Typography>
<LinearProgress
classes={{
colorPrimary: classes.linearColorPrimary,
barColorPrimary: classes.linearBarColorPrimary,
}}
color="primary"
variant="buffer"
value={getValue(deposits, withdraws)}
valueBuffer={100} />
</CardContent>
</Card>
)
})}
</CardContent>
</Card>
}
</FundingContext.Consumer>
)
}
SimpleCard.propTypes = {
classes: PropTypes.object.isRequired,
title: PropTypes.string
}
export default withStyles(styles)(SimpleCard)