// Copyright 2015, 2016 Ethcore (UK) Ltd. // This file is part of Parity. // Parity is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // Parity is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with Parity. If not, see . import React, { Component, PropTypes } from 'react'; import ContentAdd from 'material-ui/svg-icons/content/add'; import ContentClear from 'material-ui/svg-icons/content/clear'; import NavigationArrowForward from 'material-ui/svg-icons/navigation/arrow-forward'; import NavigationArrowBack from 'material-ui/svg-icons/navigation/arrow-back'; import { Button, Modal, Form, Input, InputAddress, RadioButtons } from '../../ui'; import { ERRORS, validateAbi, validateAddress, validateName } from '../../util/validation'; import { eip20, wallet } from '../../contracts/abi'; const ABI_TYPES = [ { label: 'Token', readOnly: true, value: JSON.stringify(eip20), type: 'token', description: (A standard ERC 20 token) }, { label: 'Multisig Wallet', readOnly: true, type: 'multisig', value: JSON.stringify(wallet), description: (Official Multisig contract: see contract code) }, { label: 'Custom Contract', value: '', type: 'custom', description: 'Contract created from custom ABI' } ]; const STEPS = [ 'choose a contract type', 'enter contract details' ]; export default class AddContract extends Component { static contextTypes = { api: PropTypes.object.isRequired } static propTypes = { contracts: PropTypes.object.isRequired, onClose: PropTypes.func }; state = { abi: '', abiError: ERRORS.invalidAbi, abiType: ABI_TYPES[2], abiTypeIndex: 2, abiParsed: null, address: '', addressError: ERRORS.invalidAddress, name: '', nameError: ERRORS.invalidName, description: '', step: 0 }; componentDidMount () { this.onChangeABIType(null, this.state.abiTypeIndex); } render () { const { step } = this.state; return ( { this.renderStep(step) } ); } renderStep (step) { switch (step) { case 0: return this.renderContractTypeSelector(); default: return this.renderFields(); } } renderContractTypeSelector () { const { abiTypeIndex } = this.state; return ( ); } renderDialogActions () { const { addressError, nameError, step } = this.state; const hasError = !!(addressError || nameError); const cancelBtn = (