// Copyright 2015-2017 Parity Technologies (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 { observer } from 'mobx-react'; import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { FormattedMessage } from 'react-intl'; import { connect } from 'react-redux'; import { toWei } from '@parity/api/util/wei'; import { MAX_GAS_ESTIMATION } from '@parity/shared/util/constants'; import { validateAddress, validateUint } from '@parity/shared/util/validation'; import { parseAbiType } from '@parity/shared/util/abi'; import { Button, GasPriceEditor, IdentityIcon, Portal, Warning } from '@parity/ui'; import { CancelIcon, NextIcon, PrevIcon } from '@parity/ui/Icons'; import AdvancedStep from './AdvancedStep'; import DetailsStep from './DetailsStep'; const STEP_DETAILS = 0; const TITLES = { transfer: ( ), advanced: ( ) }; const STAGES_BASIC = [TITLES.transfer]; const STAGES_ADVANCED = [TITLES.transfer, TITLES.advanced]; @observer class ExecuteContract extends Component { static contextTypes = { api: PropTypes.object.isRequired, store: PropTypes.object.isRequired }; static propTypes = { accounts: PropTypes.object, contract: PropTypes.object.isRequired, fromAddress: PropTypes.string, gasLimit: PropTypes.object.isRequired, onClose: PropTypes.func.isRequired, onFromAddressChange: PropTypes.func.isRequired }; gasStore = new GasPriceEditor.Store(this.context.api, { gasLimit: this.props.gasLimit }); state = { advancedOptions: false, amount: '0', amountError: null, fromAddressError: null, func: null, funcError: null, step: STEP_DETAILS, values: [], valuesError: [] }; componentDidMount () { const { contract } = this.props; const functions = contract.functions .filter((func) => !func.constant) .sort((a, b) => (a.name || '').localeCompare(b.name || '')); this.onFuncChange(null, functions[0]); } componentWillReceiveProps (newProps) { if (newProps.fromAddress !== this.props.fromAddress) { this.estimateGas(newProps.fromAddress); } } render () { const { advancedOptions, step } = this.state; const steps = advancedOptions ? STAGES_ADVANCED : STAGES_BASIC; return ( { this.renderExceptionWarning() } { this.renderStep() } ); } renderExceptionWarning () { const { errorEstimated } = this.gasStore; if (!errorEstimated) { return null; } return ( ); } renderDialogActions () { const { fromAddress } = this.props; const { advancedOptions, step, fromAddressError, valuesError } = this.state; const hasError = !!(fromAddressError || valuesError.find((error) => error)); const cancelBtn = (