// 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 { Menu, Segment } from 'semantic-ui-react'; 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 '@parity/shared/redux/actions'; import { Button, IdentityName, IdentityIcon, Portal } 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)' }; let MENU_CONTENT = 'TEST'; @observer class PasswordManager extends Component { state = { activeItem: 'bio' }; 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 { activeItem } = this.state; return (
{ MENU_CONTENT === 'TEST' ? this.renderTabTest() : this.renderTabChange() }
); } itemTestPassword = (e, name) => { MENU_CONTENT = 'TEST'; this.onActivateTestTab(); this.setState({ activeItem: name }); } itemChangePassword = (e, name) => { MENU_CONTENT = 'CHANGE'; this.onActivateChangeTab(); this.setState({ activeItem: name }); } renderTabTest () { const { actionTab, busy } = this.store; if (actionTab !== TEST_ACTION) { return null; } return (
} label={ } onChange={ this.onEditTestPassword } onSubmit={ this.testPassword } submitOnBlur={ false } type='password' />
); } renderTabChange () { const { actionTab, busy, isRepeatValid, newPassword, passwordHint } = this.store; if (actionTab !== CHANGE_ACTION) { return null; } 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 { actionTab, busy, isRepeatValid } = this.store; const cancelBtn = (