liquid-funding/app/components/PledgesTable.jsx

95 lines
3.0 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-06 17:09:43 +00:00
import WithdrawCard from './table/WithdrawCard'
2018-12-03 15:29:14 +00:00
const convertToHours = seconds => seconds / 60 / 60
const projectText = project => project === '0' ? 'N/A' : project
2018-12-07 11:52:02 +00:00
const pledgeStateMap = {
0: 'Pledged',
1: 'Paying',
2: 'Paid'
}
2018-12-10 15:22:52 +00:00
const convertToDatetime = (field, fundProfiles) => {
const { commitTime, owner } = field
const profile = fundProfiles[Number(owner) - 1]
2018-12-12 20:46:02 +00:00
if (!profile || Number(commitTime) === 0) return 0
2018-12-10 15:22:52 +00:00
const time = Number(commitTime) + Number(profile.commitTime)
const date = new Date(time * 1000)
return `${date.toLocaleDateString()} ${date.toLocaleTimeString()}`
}
2018-12-10 15:22:52 +00:00
const formatField = (field, fundProfiles) => ({
2018-12-03 15:29:14 +00:00
...field,
2018-12-10 15:22:52 +00:00
commitTime: convertToDatetime(field, fundProfiles),
2018-12-03 15:29:14 +00:00
amount: toEther(field.amount),
token: getTokenLabel(field.token),
2018-12-07 11:52:02 +00:00
intendedProject: projectText(field.intendedProject),
pledgeState: pledgeStateMap[field.pledgeState]
2018-12-03 15:29:14 +00:00
})
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 });
}
2018-12-06 17:09:43 +00:00
clearRowData = () => this.setState({ rowData: null })
2018-12-03 20:22:51 +00:00
render() {
2018-12-10 15:22:52 +00:00
const { data, transferPledgeAmounts, fundProfiles } = this.props
2018-12-06 17:09:43 +00:00
const { row, rowData } = this.state
2018-12-03 20:22:51 +00:00
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' },
2018-12-07 11:52:02 +00:00
{ title: 'Pledge State', field: 'pledgeState' },
2018-12-03 20:22:51 +00:00
]}
2018-12-10 15:22:52 +00:00
data={data.map((f) => formatField(f, fundProfiles))}
2018-12-03 20:22:51 +00:00
title="Pledges"
2019-01-10 19:37:23 +00:00
options={{ showEmptyDataSourceMessage: true }}
2018-12-03 20:22:51 +00:00
actions={[
{
icon: 'compare_arrows',
tooltip: 'Transfer funds',
onClick: (event, rowData) => {
this.handleClickOpen(rowData)
}
2018-12-06 17:09:43 +00:00
},
{
icon: 'attach_money',
tooltip: 'Request Withdrawl',
onClick: (event, rowData) => {
console.log({rowData})
this.setState({ rowData })
}
2018-12-03 20:22:51 +00:00
}
]}
/>
2018-12-07 11:52:02 +00:00
{rowData && <WithdrawCard rowData={rowData} clearRowData={this.clearRowData} />}
2018-12-03 20:22:51 +00:00
</Fragment>
)
}
}
export default PledgesTable