liquid-funding/app/components/PledgesTable.jsx

67 lines
1.9 KiB
React
Raw Normal View History

2018-12-03 20:22:51 +00:00
import React, { Fragment, PureComponent } from 'react'
2018-12-03 15:29:14 +00:00
import MaterialTable from 'material-table'
import { toEther } from '../utils/conversions'
import { getTokenLabel } from '../utils/currencies'
2018-12-03 20:22:51 +00:00
import TransferDialog from './TransferDialog'
2018-12-03 15:29:14 +00:00
const convertToHours = seconds => seconds / 60 / 60
const projectText = project => project === '0' ? 'N/A' : project
const formatField = field => ({
...field,
commitTime: convertToHours(field.commitTime),
amount: toEther(field.amount),
token: getTokenLabel(field.token),
intendedProject: projectText(field.intendedProject)
})
2018-12-03 20:22:51 +00:00
class PledgesTable extends PureComponent {
state = {
row: false,
}
2018-12-03 15:29:14 +00:00
2018-12-03 20:22:51 +00:00
handleClickOpen = row => {
this.setState({ row });
}
handleClose = () => {
this.setState({ row: false });
}
render() {
const { data, transferPledgeAmounts } = this.props
2018-12-03 20:22:51 +00:00
const { row } = this.state
return (
<Fragment>
<TransferDialog
row={row}
handleClose={this.handleClose}
transferPledgeAmounts={transferPledgeAmounts}
/>
2018-12-03 20:22:51 +00:00
<MaterialTable
columns={[
{ title: 'Pledge Id', field: 'id', type: 'numeric' },
{ title: 'Owner', field: 'owner' },
{ title: 'Amount Funded', field: 'amount', type: 'numeric' },
{ title: 'Token', field: 'token' },
{ title: 'Commit Time', field: 'commitTime', type: 'numeric' },
{ title: 'Number of Delegates', field: 'nDelegates', type: 'numeric' },
{ title: 'Intended Project', field: 'intendedProject' },
]}
data={data.map(formatField)}
title="Pledges"
actions={[
{
icon: 'compare_arrows',
tooltip: 'Transfer funds',
onClick: (event, rowData) => {
this.handleClickOpen(rowData)
}
}
]}
/>
</Fragment>
)
}
}
export default PledgesTable