2018-12-16 17:59:33 +00:00
|
|
|
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'
|
|
|
|
import { Doughnut } from 'react-chartjs-2'
|
|
|
|
import { FundingContext } from '../../context'
|
|
|
|
import { toEther } from '../../utils/conversions'
|
|
|
|
import { getTokenLabel } from '../../utils/currencies'
|
2018-12-20 16:23:05 +00:00
|
|
|
import { getColor } from '../../utils/colorSchemes'
|
2018-12-16 17:59:33 +00:00
|
|
|
|
|
|
|
const styles = {
|
|
|
|
card: {
|
|
|
|
minWidth: 275,
|
|
|
|
},
|
|
|
|
bullet: {
|
|
|
|
display: 'inline-block',
|
|
|
|
margin: '0 2px',
|
|
|
|
transform: 'scale(0.8)',
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
fontSize: 14,
|
|
|
|
},
|
|
|
|
pos: {
|
|
|
|
marginBottom: 12,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
const pledgesChartData = pledges => {
|
|
|
|
const data = []
|
|
|
|
const labels = []
|
|
|
|
const backgroundColor = []
|
2018-12-20 16:23:05 +00:00
|
|
|
pledges.forEach((pledge, idx) => {
|
2018-12-16 17:59:33 +00:00
|
|
|
const { id, amount, token } = pledge
|
|
|
|
const converted = toEther(amount)
|
|
|
|
data.push(converted)
|
|
|
|
labels.push(
|
|
|
|
`pledge ${id} - ${getTokenLabel(token)}`
|
|
|
|
)
|
2018-12-20 16:23:05 +00:00
|
|
|
backgroundColor.push(getColor('Dark2-8', idx))
|
2018-12-16 17:59:33 +00:00
|
|
|
})
|
|
|
|
return {
|
|
|
|
datasets: [
|
|
|
|
{
|
|
|
|
data,
|
|
|
|
backgroundColor,
|
|
|
|
hoverBackgroundColor: backgroundColor
|
|
|
|
}
|
|
|
|
],
|
|
|
|
labels
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function SimpleCard(props) {
|
|
|
|
const { classes, title } = props
|
|
|
|
|
|
|
|
return (
|
|
|
|
<FundingContext.Consumer>
|
|
|
|
{({ allPledges }) =>
|
|
|
|
<Card className={classes.card}>
|
|
|
|
<CardContent>
|
|
|
|
<Typography variant="h5" component="h2">
|
|
|
|
{title}
|
|
|
|
</Typography>
|
|
|
|
<Typography className={classes.pos} color="textSecondary">
|
|
|
|
How your funds are distributed among pledges
|
|
|
|
</Typography>
|
|
|
|
<Doughnut data={pledgesChartData(allPledges)} />
|
|
|
|
</CardContent>
|
|
|
|
</Card>
|
|
|
|
}
|
|
|
|
</FundingContext.Consumer>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleCard.propTypes = {
|
|
|
|
classes: PropTypes.object.isRequired,
|
|
|
|
title: PropTypes.string
|
|
|
|
}
|
|
|
|
|
|
|
|
export default withStyles(styles)(SimpleCard)
|