2017-06-08 17:14:02 +02:00
|
|
|
// 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-06-14 17:12:13 +02:00
|
|
|
import { observer } from 'mobx-react';
|
2017-11-21 15:50:38 +01:00
|
|
|
import React, { PureComponent } from 'react';
|
2017-06-08 17:14:02 +02:00
|
|
|
|
2017-11-21 15:50:38 +01:00
|
|
|
import RequestGroups from './RequestGroups';
|
2017-06-14 17:12:13 +02:00
|
|
|
import Store from './store';
|
2017-06-19 17:25:17 +02:00
|
|
|
import styles from './dappRequests.css';
|
2017-06-08 17:14:02 +02:00
|
|
|
|
2017-11-21 15:50:38 +01:00
|
|
|
class DappRequests extends PureComponent {
|
|
|
|
store = Store.get();
|
2017-06-08 17:14:02 +02:00
|
|
|
|
2017-11-21 15:50:38 +01:00
|
|
|
handleApproveRequestGroup = requestIds => {
|
|
|
|
requestIds.forEach(this.store.approveRequest);
|
2017-06-08 17:14:02 +02:00
|
|
|
}
|
|
|
|
|
2017-11-21 15:50:38 +01:00
|
|
|
handleRejectRequestGroup = requestIds => {
|
|
|
|
requestIds.forEach(this.store.rejectRequest);
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
if (!this.store || !this.store.hasRequests) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={ styles.requests }>
|
|
|
|
{Object.keys(this.store.groupedRequests)
|
|
|
|
.map(appId => (
|
|
|
|
<RequestGroups
|
|
|
|
key={ appId }
|
|
|
|
appId={ appId }
|
|
|
|
onApproveRequestGroup={ this.handleApproveRequestGroup }
|
|
|
|
onRejectRequestGroup={ this.handleRejectRequestGroup }
|
|
|
|
requestGroups={ this.store.groupedRequests[appId] }
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-06-08 17:14:02 +02:00
|
|
|
}
|
2017-06-14 17:12:13 +02:00
|
|
|
|
2017-06-19 17:25:17 +02:00
|
|
|
export default observer(DappRequests);
|