36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
import EmbarkJS from 'Embark/EmbarkJS';
|
|
import ENSRegistry from 'Embark/contracts/ENSRegistry';
|
|
import React, { Fragment } from 'react';
|
|
import { Form, FormGroup, FormControl, HelpBlock, Button, ControlLabel } from 'react-bootstrap';
|
|
import AddDomain from './ens/addDomain';
|
|
import RegisterSubDomain from './ens/registerSubDomain';
|
|
import SetupENS from './ens/setupENS';
|
|
|
|
const FieldGroup = ({ id, label, help, ...props }) => (
|
|
<FormGroup controlId={id}>
|
|
<ControlLabel>{label}</ControlLabel>
|
|
<FormControl {...props} />
|
|
{help && <HelpBlock>{help}</HelpBlock>}
|
|
</FormGroup>
|
|
)
|
|
|
|
const ENSSubManagement = (props) => (
|
|
<Fragment>
|
|
<h2 style={{textAlign: 'center'}}>Subdomain Management</h2>
|
|
<h3>Add/Update Domain Price</h3>
|
|
<AddDomain />
|
|
<hr/>
|
|
<h3>Register Sub-Domain</h3>
|
|
<RegisterSubDomain />
|
|
<hr/>
|
|
<SetupENS ENSRegistry={ENSRegistry} />
|
|
</Fragment>
|
|
)
|
|
|
|
setTimeout(() => ENSRegistry.getPastEvents(
|
|
'allEvents',
|
|
{},
|
|
(err, res) => { console.log(err, res) }), 2000)
|
|
|
|
export default ENSSubManagement;
|