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';
|
|
|
|
import React from 'react';
|
2017-06-08 17:14:02 +02:00
|
|
|
|
2017-06-14 17:12:13 +02:00
|
|
|
import Request from './Request';
|
|
|
|
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-06-19 17:25:17 +02:00
|
|
|
function DappRequests () {
|
2017-06-14 17:12:13 +02:00
|
|
|
const store = Store.get();
|
2017-06-08 17:14:02 +02:00
|
|
|
|
2017-06-14 17:12:13 +02:00
|
|
|
if (!store || !store.hasRequests) {
|
|
|
|
return null;
|
2017-06-08 17:14:02 +02:00
|
|
|
}
|
|
|
|
|
2017-06-14 17:12:13 +02:00
|
|
|
return (
|
2017-06-19 17:25:17 +02:00
|
|
|
<div className={ styles.requests }>
|
2017-06-14 17:12:13 +02:00
|
|
|
{
|
2017-06-21 15:15:23 +02:00
|
|
|
store.squashedRequests.map(({ appId, queueId, request: { data } }) => (
|
2017-06-14 17:12:13 +02:00
|
|
|
<Request
|
2017-06-21 15:15:23 +02:00
|
|
|
appId={ appId }
|
2017-06-14 17:12:13 +02:00
|
|
|
className={ styles.request }
|
|
|
|
approveRequest={ store.approveRequest }
|
|
|
|
denyRequest={ store.rejectRequest }
|
|
|
|
key={ queueId }
|
|
|
|
queueId={ queueId }
|
|
|
|
request={ data }
|
|
|
|
/>
|
|
|
|
))
|
|
|
|
}
|
|
|
|
</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);
|