mirror of https://github.com/embarklabs/embark.git
Base logic for invoking send functions and showin results
This commit is contained in:
parent
10c5b64b1c
commit
d19bcdcbf9
|
@ -21,7 +21,8 @@ class {{capitalize name}}_{{@index}}_Form extends React.Component {
|
||||||
{{#ifview stateMutability}}
|
{{#ifview stateMutability}}
|
||||||
output: null,
|
output: null,
|
||||||
{{/ifview}}
|
{{/ifview}}
|
||||||
error: null
|
error: null,
|
||||||
|
mined: null
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,10 +38,10 @@ class {{capitalize name}}_{{@index}}_Form extends React.Component {
|
||||||
|
|
||||||
async handleClick(e){
|
async handleClick(e){
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
this.setState({output: null, error: null});
|
this.setState({output: null, error: null, receipt: null});
|
||||||
|
|
||||||
{{#ifview stateMutability}}
|
|
||||||
try {
|
try {
|
||||||
|
{{#ifview stateMutability}}
|
||||||
{{../contractName}}.methods{{methodname ../functions name inputs}}({{#each inputs}}this.state.input.{{name}}{{#unless @last}}, {{/unless}}{{/each}})
|
{{../contractName}}.methods{{methodname ../functions name inputs}}({{#each inputs}}this.state.input.{{name}}{{#unless @last}}, {{/unless}}{{/each}})
|
||||||
.call()
|
.call()
|
||||||
.then((result) => {
|
.then((result) => {
|
||||||
|
@ -57,24 +58,31 @@ class {{capitalize name}}_{{@index}}_Form extends React.Component {
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
this.setState({error: err.message});
|
this.setState({error: err.message});
|
||||||
});
|
});
|
||||||
|
{{else}}
|
||||||
|
{{../contractName}}.methods{{methodname ../functions name inputs}}({{#each inputs}}this.state.input.{{name}}{{#unless @last}}, {{/unless}}{{/each}})
|
||||||
|
.send({
|
||||||
|
from: web3.eth.defaultAccount
|
||||||
|
})
|
||||||
|
.then((_receipt) => {
|
||||||
|
console.log(_receipt);
|
||||||
|
this.setState({receipt: _receipt})
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.log(err);
|
||||||
|
this.setState({error: err.message});
|
||||||
|
});
|
||||||
|
// TODO payable
|
||||||
|
{{/ifview}}
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
this.setState({error: err.message});
|
this.setState({error: err.message});
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO show on screen
|
|
||||||
{{/ifview}}
|
|
||||||
|
|
||||||
// TODO validate
|
// TODO validate
|
||||||
}
|
}
|
||||||
|
|
||||||
render(){
|
render(){
|
||||||
return <div className="formSection">
|
return <div className="formSection">
|
||||||
<h3>{{name}}</h3>
|
<h3>{{name}}</h3>
|
||||||
{
|
|
||||||
this.state.error != null ?
|
|
||||||
<Alert bsStyle="danger">{this.state.error}</Alert>
|
|
||||||
: ''
|
|
||||||
}
|
|
||||||
<form>
|
<form>
|
||||||
{{#if inputs.length}}
|
{{#if inputs.length}}
|
||||||
{{#each inputs}}
|
{{#each inputs}}
|
||||||
|
@ -95,6 +103,11 @@ class {{capitalize name}}_{{@index}}_Form extends React.Component {
|
||||||
</FormGroup>
|
</FormGroup>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{
|
||||||
|
this.state.error != null ?
|
||||||
|
<Alert bsStyle="danger">{this.state.error}</Alert>
|
||||||
|
: ''
|
||||||
|
}
|
||||||
{{#ifview stateMutability}}
|
{{#ifview stateMutability}}
|
||||||
<Button type="submit" bsStyle="primary" onClick={(e) => this.handleClick(e)}>Call</Button>
|
<Button type="submit" bsStyle="primary" onClick={(e) => this.handleClick(e)}>Call</Button>
|
||||||
{
|
{
|
||||||
|
@ -113,7 +126,13 @@ class {{capitalize name}}_{{@index}}_Form extends React.Component {
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
: ''
|
: ''
|
||||||
}
|
}
|
||||||
|
{{else}}
|
||||||
|
<Button type="submit" bsStyle="primary" onClick={(e) => this.handleClick(e)}>Send</Button>
|
||||||
|
{
|
||||||
|
this.state.receipt != null ?
|
||||||
|
<Alert bsStyle={this.state.receipt.status == "0x1" ? 'success' : 'danger'}>{this.state.receipt.status == "0x1" ? 'Success' : 'Failure / Revert'} - Transaction Hash: {this.state.receipt.transactionHash}</Alert>
|
||||||
|
: ''
|
||||||
|
}
|
||||||
{{/ifview}}
|
{{/ifview}}
|
||||||
</form>
|
</form>
|
||||||
</div>;
|
</div>;
|
||||||
|
|
Loading…
Reference in New Issue