liquid-funding/app/components/AddFunder.jsx

179 lines
6.1 KiB
React
Raw Normal View History

2018-12-02 17:25:49 +00:00
import React from 'react'
import { Formik } from 'formik'
import LiquidPledgingMock from 'Embark/contracts/LiquidPledgingMock'
import Button from '@material-ui/core/Button'
import MenuItem from '@material-ui/core/MenuItem'
import TextField from '@material-ui/core/TextField'
import Snackbar from '@material-ui/core/Snackbar'
import web3 from 'Embark/web3'
2018-12-02 14:46:20 +00:00
import { MySnackbarContentWrapper } from './base/SnackBars'
2018-11-29 20:52:24 +00:00
2018-12-05 17:05:21 +00:00
const { addGiver, addDelegate, addProject } = LiquidPledgingMock.methods
2018-12-02 17:25:49 +00:00
const FUNDER = 'FUNDER'
const DELEGATE = 'DELEGATE'
2018-12-05 17:05:21 +00:00
const PROJECT = 'PROJECT'
2018-12-02 17:25:49 +00:00
const helperText = {
[FUNDER]: 'The length of time in hours the Funder has to veto when the delegates pledge funds to a project',
2018-12-05 17:05:21 +00:00
[DELEGATE]: 'The length of time in hours the Delegate can be vetoed. Whenever this delegate is in a delegate chain the time allowed to veto any event must be greater than or equal to this time',
[PROJECT]: 'The length of time the Project has to veto when the project delegates to another delegate and they pledge those funds to a project'
2018-12-02 17:25:49 +00:00
}
2018-12-05 17:05:21 +00:00
const funderNameLabel = {
[FUNDER]: 'Funding',
[DELEGATE]: 'Delegate',
[PROJECT]: 'Project'
}
const buttonLabel = {
[FUNDER]: 'FUNDING',
[DELEGATE]: 'DELEGATE',
[PROJECT]: 'PROJECT'
}
const sendFns = {
[FUNDER]: addGiver,
[DELEGATE]: addDelegate,
[PROJECT]: addProject
}
const adminProfiles = [FUNDER, DELEGATE, PROJECT]
const hoursToSeconds = hours => hours * 60 * 60
const addFunderSucessMsg = response => {
const { events: { GiverAdded: { returnValues: { idGiver } } } } = response
return `Funder created with ID of ${idGiver}`
}
2018-12-02 17:25:49 +00:00
const addDelegateSucessMsg = response => {
const { events: { DelegateAdded: { returnValues: { idDelegate } } } } = response
return `Delegate created with ID of ${idDelegate}`
}
2018-12-05 17:05:21 +00:00
const addProjectSucessMsg = response => {
const { events: { ProjectAdded: { returnValues: { idProject } } } } = response
2018-12-05 17:05:21 +00:00
return `Project created with ID of ${idProject}`
}
const successMsg = {
[FUNDER]: addFunderSucessMsg,
[DELEGATE]: addDelegateSucessMsg,
[PROJECT]: addProjectSucessMsg
}
2018-11-29 20:52:24 +00:00
2018-12-02 14:46:20 +00:00
const AddFunder = ({ appendFundProfile }) => (
2018-11-29 20:52:24 +00:00
<Formik
2018-12-05 17:05:21 +00:00
initialValues={{ adminType: FUNDER, funderName: '', funderDescription: '', commitTime : '' }}
onSubmit={async (values, { setSubmitting, resetForm, setStatus }) => {
2018-12-02 17:25:49 +00:00
const { adminType, funderName, funderDescription, commitTime } = values
const account = await web3.eth.getCoinbase()
2018-12-05 17:05:21 +00:00
//TODO add field for parent project
const args = adminType === PROJECT
? [funderName, funderDescription, account, 0, hoursToSeconds(commitTime), 0]
: [funderName, funderDescription, hoursToSeconds(commitTime), 0]
2018-12-02 17:25:49 +00:00
const isFunder = adminType === FUNDER
2018-12-05 17:05:21 +00:00
const sendFn = sendFns[adminType]
2018-12-02 17:25:49 +00:00
sendFn(...args)
.estimateGas({ from: account })
.then(async gas => {
2018-12-02 17:25:49 +00:00
sendFn(...args)
.send({ from: account, gas: gas + 100 })
.then(res => {
2018-12-05 17:05:21 +00:00
console.log({res})
2018-12-02 17:25:49 +00:00
if (isFunder) appendFundProfile(res.events.GiverAdded)
setStatus({
2018-12-02 17:25:49 +00:00
snackbar: {
variant: 'success',
2018-12-05 17:05:21 +00:00
message: successMsg[adminType](res)
2018-12-02 17:25:49 +00:00
}
})
})
.catch(e => {
console.log({e})
setStatus({
snackbar: { variant: 'error', message: 'There was an error' }
})
})
})
2018-11-29 20:52:24 +00:00
}}
>
{({
values,
errors,
touched,
handleChange,
handleBlur,
handleSubmit,
setFieldValue,
setStatus,
status
}) => (
<form onSubmit={handleSubmit} style={{ display: 'flex', flexDirection: 'column' }}>
2018-12-02 17:25:49 +00:00
<TextField
id="adminType"
name="adminType"
select
label="Select admin type"
placeholder="Select admin type"
margin="normal"
variant="outlined"
onChange={handleChange}
onBlur={handleBlur}
value={values.adminType || ''}
>
{adminProfiles.map(profile => (
<MenuItem style={{ display: 'flex', alignItems: 'center' }} key={profile} value={profile}>
{profile}
</MenuItem>
))}
</TextField>
<TextField
id="funderName"
name="funderName"
2018-12-05 17:05:21 +00:00
label={`${funderNameLabel[values.adminType]} Name`}
placeholder={`${funderNameLabel[values.adminType]} Name`}
margin="normal"
variant="outlined"
onChange={handleChange}
onBlur={handleBlur}
value={values.funderName || ''}
/>
<TextField
id="funderDescription"
name="funderDescription"
2018-12-02 13:24:31 +00:00
label="Description (URL or IPFS Hash)"
placeholder="Description (URL or IPFS Hash)"
margin="normal"
variant="outlined"
onChange={handleChange}
onBlur={handleBlur}
value={values.funderDescription || ''}
/>
<TextField
id="commitTime"
name="commitTime"
label="Commit time in hours"
placeholder="Commit time in hours"
margin="normal"
variant="outlined"
2018-12-02 17:25:49 +00:00
helperText={helperText[values.adminType]}
onChange={handleChange}
onBlur={handleBlur}
value={values.commitTime || ''}
/>
<Button variant="contained" color="primary" type="submit">
2018-12-05 17:05:21 +00:00
{`ADD ${buttonLabel[values.adminType]} PROFILE`}
</Button>
{status && <Snackbar
anchorOrigin={{
vertical: 'bottom',
horizontal: 'left',
}}
open={!!status.snackbar}
autoHideDuration={6000}
onClose={() => setStatus(null)}
>
<MySnackbarContentWrapper
onClose={() => setStatus(null)}
variant={status.snackbar.variant}
message={status.snackbar.message}
/>
</Snackbar>}
</form>
)}
</Formik>
2018-11-29 20:52:24 +00:00
)
export default AddFunder