// 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 React, { Component, PropTypes } from 'react'; import { FormattedMessage } from 'react-intl'; import { nodeOrStringProptype } from '@parity/shared/util/proptypes'; import Button from '../../Button'; import FileSelect from '../../Form/FileSelect'; import { CancelIcon, DoneIcon, FileUploadIcon } from '../../Icons'; import Portal from '../../Portal'; import styles from './import.css'; const initialState = { step: 0, show: false, validate: false, validationBody: null, error: false, errorText: '', content: '' }; export default class ActionbarImport extends Component { static propTypes = { className: PropTypes.string, onConfirm: PropTypes.func.isRequired, renderValidation: PropTypes.func, title: nodeOrStringProptype() }; static defaultProps = { title: ( ) }; state = Object.assign({}, initialState); render () { const { className } = this.props; return (
); } renderModal () { const { title, renderValidation } = this.props; const { show, step, error } = this.state; if (!show) { return null; } const steps = typeof renderValidation === 'function' ? [ , error ? ( ) : ( ) ] : null; return ( { this.renderBody() } ); } renderActions () { const { validate, error } = this.state; const cancelBtn = (