187 lines
5.1 KiB
JavaScript
187 lines
5.1 KiB
JavaScript
import EmbarkJS from 'Embark/EmbarkJS';
|
|
import ERC20Token from 'Embark/contracts/ERC20Token';
|
|
import ProposalCuration from 'Embark/contracts/ProposalCuration';
|
|
import SNT from 'Embark/contracts/SNT';
|
|
import React, { PureComponent, Fragment } from 'react';
|
|
import { Form, FormGroup, FormControl, HelpBlock, Button, Alert } from 'react-bootstrap';
|
|
import web3 from "Embark/web3";
|
|
import { withFormik } from 'formik';
|
|
import FieldGroup from '../standard/FieldGroup';
|
|
import TokenPermissions from '../standard/TokenPermission'
|
|
|
|
const { setSubmitPrice } = ProposalCuration.methods;
|
|
class InnerForm extends PureComponent {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
submitPrice: "Loading...",
|
|
canSubmit: true
|
|
};
|
|
}
|
|
|
|
componentDidMount(){
|
|
this._loadPrice();
|
|
}
|
|
|
|
componentWillReceiveProps(){
|
|
this._loadPrice();
|
|
}
|
|
|
|
_loadPrice(){
|
|
__embarkContext.execWhenReady(async () => {
|
|
try {
|
|
let _b = await ProposalCuration.methods.getSubmitPrice(web3.eth.defaultAccount).call();
|
|
this.setState({
|
|
submitPrice: _b,
|
|
canSubmit: true
|
|
});
|
|
} catch(err){
|
|
this.setState({
|
|
canSubmit: false,
|
|
submitPrice: "-"
|
|
});
|
|
}
|
|
});
|
|
}
|
|
|
|
setPrice = (address = web3.eth.defaultAccount, allowed = true, stakeValue = 1) => {
|
|
setSubmitPrice(address, allowed, stakeValue)
|
|
.send()
|
|
.then(res => {
|
|
this.setState({ ...this.state, canSubmit: true });
|
|
console.log(res);
|
|
})
|
|
.catch(err => { console.log(err) })
|
|
}
|
|
|
|
render() {
|
|
const { values, errors, touched, handleChange, handleBlur, handleSubmit, isSubmitting, setFieldValue } = this.props;
|
|
const { canSubmit } = this.state;
|
|
return (
|
|
<Fragment>
|
|
{!canSubmit &&
|
|
<Alert bsStyle="warning">
|
|
Account not allowed to submit proposals <Button onClick={(e) => this.setPrice()}>Click to enable (Admin only)</Button>
|
|
</Alert>
|
|
}
|
|
<TokenPermissions methods={SNT.methods} spender={ProposalCuration._address} symbol='SNT' />
|
|
<hr/>
|
|
<h2>Add proposal</h2>
|
|
<h3>Price: {this.state.submitPrice}</h3>
|
|
<Form onSubmit={handleSubmit}>
|
|
<FieldGroup
|
|
id="title"
|
|
name="title"
|
|
type="text"
|
|
label="Title"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.title}
|
|
/>
|
|
<FieldGroup
|
|
id="description"
|
|
name="description"
|
|
type="text"
|
|
label="Description"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.description}
|
|
/>
|
|
<FieldGroup
|
|
id="url"
|
|
name="url"
|
|
type="text"
|
|
label="URL"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.url}
|
|
/>
|
|
|
|
<FieldGroup
|
|
id="topic"
|
|
name="topic"
|
|
type="text"
|
|
label="Topic"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.topic}
|
|
/>
|
|
|
|
<FieldGroup
|
|
id="to"
|
|
name="to"
|
|
type="text"
|
|
label="To"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.to}
|
|
/>
|
|
|
|
<FieldGroup
|
|
id="data"
|
|
name="data"
|
|
type="text"
|
|
label="Data"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.data}
|
|
/>
|
|
<FieldGroup
|
|
id="value"
|
|
name="value"
|
|
type="text"
|
|
label="Value"
|
|
onChange={handleChange}
|
|
onBlur={handleBlur}
|
|
value={values.value}
|
|
/>
|
|
|
|
<Button type="submit" disabled={!canSubmit || isSubmitting}>{isSubmitting ? 'Submission in progress' : 'Submit'}</Button>
|
|
</Form>
|
|
</Fragment>
|
|
)
|
|
}
|
|
}
|
|
|
|
const ProposalManager = withFormik({
|
|
mapPropsToValues: props => ({ title: '', description: '', url: '', data: '0x00', value: '0', topic: '0x00', to: '0x0000000000000000000000000000000000000000' }),
|
|
validate(values) {},
|
|
handleSubmit(values, { setSubmitting}){
|
|
|
|
let dataObj = {
|
|
title: values.title,
|
|
description: values.description,
|
|
url: values.url,
|
|
};
|
|
|
|
const { toHex } = web3.utils;
|
|
const { submitProposal } = ProposalCuration.methods;
|
|
|
|
EmbarkJS.Storage.saveText(JSON.stringify(dataObj))
|
|
.then(hash => {
|
|
const hexHash = toHex(hash);
|
|
//TODO create toggle for address approval
|
|
submitProposal(
|
|
values.topic,
|
|
values.to,
|
|
values.value,
|
|
values.data,
|
|
hexHash
|
|
)
|
|
.send({from: web3.eth.defaultAccount, gasLimit: 1000000})
|
|
.then(res => {
|
|
setSubmitting(false);
|
|
console.log(res);
|
|
})
|
|
.catch(err => {
|
|
setSubmitting(false);
|
|
//TODO show error
|
|
console.log('Storage saveText Error: ', err.message)
|
|
});
|
|
})
|
|
}
|
|
})(InnerForm)
|
|
|
|
export default ProposalManager;
|