// 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 Paper from 'material-ui/Paper'; import { Tabs, Tab } from 'material-ui/Tabs'; import { observer } from 'mobx-react'; import React, { Component, PropTypes } from 'react'; import { FormattedMessage } from 'react-intl'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; import { newError, openSnackbar } from '~/redux/actions'; import { Button, Modal, IdentityName, IdentityIcon } from '~/ui'; import PasswordStrength from '~/ui/Form/PasswordStrength'; import Form, { Input } from '~/ui/Form'; import { CancelIcon, CheckIcon, SendIcon } from '~/ui/Icons'; import Store, { CHANGE_ACTION, TEST_ACTION } 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)' }; const TABS_INKBAR_STYLE = { backgroundColor: 'rgba(255, 255, 255, 0.55)' }; const TABS_ITEM_STYLE = { backgroundColor: 'rgba(255, 255, 255, 0.05)' }; @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 () { return ( } visible > { 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 } Hint { passwordHint || '-' }
); } renderPage () { const { busy, isRepeatValid, newPassword, passwordHint } = this.store; return ( } onActive={ this.onActivateTestTab } >
} label={ } onChange={ this.onEditTestPassword } onSubmit={ this.testPassword } submitOnBlur={ false } type='password' />
} onActive={ this.onActivateChangeTab } >
} 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 { actionTab, busy, isRepeatValid } = this.store; const { onClose } = this.props; const cancelBtn = (