import React, { Fragment, PureComponent } from 'react'; import { connect } from 'react-redux'; import { actions as accountActions } from '../../reducers/accounts'; import ENSSubdomainRegistry from 'Embark/contracts/ENSSubdomainRegistry'; import { Button, Field, TextInput, Card, Info, Text } from '../../ui/components' import { IconCheck } from '../../ui/icons' import theme from '../../ui/theme' import { withFormik } from 'formik'; import PublicResolver from 'Embark/contracts/PublicResolver'; import { hash } from 'eth-ens-namehash'; import { CopyToClipboard } from 'react-copy-to-clipboard'; import RegisterSubDomain from '../ens/registerSubDomain'; import StatusLogo from '../../ui/icons/components/StatusLogo' import EnsLogo from '../../ui/icons/logos/ens.png'; const { getPrice } = ENSSubdomainRegistry.methods; const invalidSuffix = '0000000000000000000000000000000000000000' const nullAddress = '0x0000000000000000000000000000000000000000' const validAddress = address => address != nullAddress; const validStatusAddress = address => !address.includes(invalidSuffix); const formatName = domainName => domainName.includes('.') ? domainName : `${domainName}.stateofus.eth`; const getDomain = fullDomain => formatName(fullDomain).split('.').slice(1).join('.'); const hashedDomain = domainName => hash(getDomain(domainName)); const cardStyle = { width: '100%', padding: '30px', height: '425px' } const addressStyle = { fontSize: '18px', fontWeight: 400, cursor: 'copy', wordWrap: 'break-word', } const backButton = { fontSize: '40px', color: theme.accent, cursor: 'pointer' } class RenderAddresses extends PureComponent { state = { copied: false } render() { const { domainName, address, statusAccount } = this.props const { copied } = this.state const markCopied = (v) => { this.setState({ copied: v }) } const isCopied = address => address == copied; const renderCopied = address => isCopied(address) && Copied!; return (
{formatName(domainName).toUpperCase()} Resolves To: {address && Ethereum Address {renderCopied(address)}}
{address}
{validStatusAddress(statusAccount) && Status Address {renderCopied(statusAccount)}} {validStatusAddress(statusAccount) &&
{statusAccount}
}
) } } class Register extends PureComponent { state = { domainPrice: null }; componentDidMount() { const { domainName } = this.props; getPrice(hashedDomain(domainName)) .call() .then((res) => { this.setState({ domainPrice: res })}); } onRegistered = (address, statusAccount) => { const { domainPrice } = this.state; const { subtractFromBalance } = this.props; subtractFromBalance(domainPrice); this.setState({ registered: { address, statusAccount } }); } render() { const { domainName, setStatus } = this.props; const { domainPrice, registered } = this.state; const formattedDomain = formatName(domainName); const formattedDomainArray = formattedDomain.split('.') return ( {!registered ? {formattedDomain.toUpperCase()} can be registered for {domainPrice} SNT : }
setStatus(null)}>←
) } } const mapDispatchToProps = dispatch => ({ subtractFromBalance(amount) { dispatch(accountActions.subtractfromSntTokenBalance(amount)); }, }); const ConnectedRegister = connect(null, mapDispatchToProps)(Register); const DisplayAddress = (props) => ( {validAddress(props.address) ? : {props.domainName.toUpperCase()} }
props.setStatus(null)}>←
) const InnerForm = ({ values, errors, touched, handleChange, handleBlur, handleSubmit, isSubmitting, status, setStatus }) => ( Ens Logo {!status ?
: validAddress(status.address) ? : }
) const NameLookup = withFormik({ mapPropsToValues: props => ({ domainName: '' }), async handleSubmit(values, { status, setSubmitting, setStatus }) { const { domainName } = values; const { addr, text } = PublicResolver.methods; const lookupHash = hash(formatName(domainName)); const address = await addr(lookupHash).call(); const statusAccount = await text(lookupHash, 'statusAccount').call(); setStatus({ address, statusAccount }); } })(InnerForm) export default NameLookup;