2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-12-27 16:23:41 +01:00
|
|
|
// 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import { observer } from 'mobx-react';
|
|
|
|
import React, { Component, PropTypes } from 'react';
|
|
|
|
import { FormattedMessage } from 'react-intl';
|
|
|
|
|
2017-02-03 22:44:43 +01:00
|
|
|
import { AccountCard, Portal, SectionList } from '~/ui';
|
2017-01-31 17:04:41 +01:00
|
|
|
import { CheckIcon, StarIcon, StarOutlineIcon } from '~/ui/Icons';
|
2016-12-27 16:23:41 +01:00
|
|
|
|
|
|
|
import styles from './dappPermissions.css';
|
|
|
|
|
|
|
|
@observer
|
|
|
|
export default class DappPermissions extends Component {
|
|
|
|
static propTypes = {
|
|
|
|
store: PropTypes.object.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { store } = this.props;
|
|
|
|
|
|
|
|
if (!store.modalOpen) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2017-01-31 17:04:41 +01:00
|
|
|
<Portal
|
2017-02-03 22:44:43 +01:00
|
|
|
buttons={
|
|
|
|
<div className={ styles.legend }>
|
|
|
|
<FormattedMessage
|
|
|
|
id='dapps.permissions.description'
|
|
|
|
defaultMessage='{activeIcon} account is available to application, {defaultIcon} account is the default account'
|
|
|
|
values={ {
|
|
|
|
activeIcon: <CheckIcon />,
|
|
|
|
defaultIcon: <StarIcon />
|
|
|
|
} }
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
}
|
2017-01-31 17:04:41 +01:00
|
|
|
onClose={ store.closeModal }
|
|
|
|
open
|
2017-02-03 22:44:43 +01:00
|
|
|
title={
|
|
|
|
<FormattedMessage
|
|
|
|
id='dapps.permissions.label'
|
|
|
|
defaultMessage='visible dapp accounts'
|
|
|
|
/>
|
|
|
|
}
|
2017-01-31 17:04:41 +01:00
|
|
|
>
|
|
|
|
<div className={ styles.container }>
|
|
|
|
<SectionList
|
|
|
|
items={ store.accounts }
|
|
|
|
noStretch
|
|
|
|
renderItem={ this.renderAccount }
|
2017-01-18 13:05:01 +01:00
|
|
|
/>
|
2017-01-31 17:04:41 +01:00
|
|
|
</div>
|
|
|
|
</Portal>
|
2016-12-27 16:23:41 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-31 17:04:41 +01:00
|
|
|
renderAccount = (account) => {
|
2016-12-27 16:23:41 +01:00
|
|
|
const { store } = this.props;
|
|
|
|
|
2017-01-31 17:04:41 +01:00
|
|
|
const onMakeDefault = () => {
|
|
|
|
store.setDefaultAccount(account.address);
|
|
|
|
};
|
|
|
|
|
|
|
|
const onSelect = () => {
|
|
|
|
store.selectAccount(account.address);
|
|
|
|
};
|
|
|
|
|
|
|
|
let className;
|
|
|
|
|
|
|
|
if (account.checked) {
|
|
|
|
className = account.default
|
|
|
|
? `${styles.selected} ${styles.default}`
|
|
|
|
: styles.selected;
|
|
|
|
} else {
|
|
|
|
className = styles.unselected;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={ styles.item }>
|
|
|
|
<AccountCard
|
|
|
|
account={ account }
|
|
|
|
className={ className }
|
|
|
|
onClick={ onSelect }
|
|
|
|
/>
|
|
|
|
<div className={ styles.overlay }>
|
|
|
|
{
|
|
|
|
account.checked && account.default
|
|
|
|
? <StarIcon />
|
|
|
|
: <StarOutlineIcon className={ styles.iconDisabled } onClick={ onMakeDefault } />
|
2016-12-27 16:23:41 +01:00
|
|
|
}
|
2017-01-31 17:04:41 +01:00
|
|
|
{
|
|
|
|
account.checked
|
|
|
|
? <CheckIcon onClick={ onSelect } />
|
|
|
|
: <CheckIcon className={ styles.iconDisabled } onClick={ onSelect } />
|
2017-01-18 13:05:01 +01:00
|
|
|
}
|
2017-01-31 17:04:41 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2016-12-27 16:23:41 +01:00
|
|
|
}
|
|
|
|
}
|