// 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 { bindActionCreators } from 'redux'; import { newError, openSnackbar } from '@parity/shared/redux/actions'; import { Button, IdentityName, IdentityIcon, Portal, Tabs } from '@parity/ui'; import PasswordStrength from '@parity/ui/Form/PasswordStrength'; import Form, { Input } from '@parity/ui/Form'; import { CancelIcon, CheckIcon, SendIcon } from '@parity/ui/Icons'; import Store from './store'; import styles from './passwordManager.css'; const MSG_SUCCESS_STYLE = { backgroundColor: 'rgba(174, 213, 129, 0.75)' }; const MSG_FAILURE_STYLE = { backgroundColor: 'rgba(229, 115, 115, 0.75)' }; @observer class PasswordManager extends Component { static contextTypes = { api: PropTypes.object.isRequired } static propTypes = { account: PropTypes.object.isRequired, openSnackbar: PropTypes.func.isRequired, newError: PropTypes.func.isRequired, onClose: PropTypes.func } store = new Store(this.context.api, this.props.account); render () { const { busy } = this.store; return ( } > { this.renderAccount() } { this.renderPage() } { this.renderMessage() } ); } renderMessage () { const { infoMessage } = this.store; if (!infoMessage) { return null; } return (
{ infoMessage.value }
); } renderAccount () { const { address, passwordHint } = this.store; return (
{ address }
); } renderPage () { const { activeTab } = this.store; return (
, ] } onChange={ this.onChangeTab } /> { activeTab === 1 ? this.renderTabTest() : this.renderTabChange() }
); } onChangeTab = (event, activeTab) => { this.store.setActiveTab(activeTab); } renderTabTest () { const { busy } = this.store; return (
} label={ } onChange={ this.onEditTestPassword } onSubmit={ this.testPassword } submitOnBlur={ false } type='password' />
); } renderTabChange () { const { busy, isRepeatValid, newPassword, passwordHint } = this.store; return (
} label={ } onChange={ this.onEditCurrentPassword } type='password' /> } label={ } onChange={ this.onEditNewPasswordHint } value={ passwordHint } />
} label={ } onChange={ this.onEditNewPassword } onSubmit={ this.changePassword } submitOnBlur={ false } type='password' />
} hint={ } label={ } onChange={ this.onEditNewPasswordRepeat } onSubmit={ this.changePassword } submitOnBlur={ false } type='password' />
); } renderDialogActions () { const { activeTab, busy, isRepeatValid } = this.store; const cancelBtn = (