diff options
author | Hsuan Lee <boczeratul@gmail.com> | 2018-10-18 11:42:08 +0800 |
---|---|---|
committer | Hsuan Lee <hsuan@cobinhood.com> | 2018-12-10 18:17:18 +0800 |
commit | 7581de8726762362c8e6b58bd8c36e7786d8b48a (patch) | |
tree | 3f85841ebd06cf8046e2f1c0c9cb0e278bce4443 /old-ui/app/provider-approval.js | |
parent | 354ba3d672ec8a579a86fb6a2cfc577c3eaf7985 (diff) | |
download | dexon-wallet-7581de8726762362c8e6b58bd8c36e7786d8b48a.tar.gz dexon-wallet-7581de8726762362c8e6b58bd8c36e7786d8b48a.tar.zst dexon-wallet-7581de8726762362c8e6b58bd8c36e7786d8b48a.zip |
Remove Old UI
Diffstat (limited to 'old-ui/app/provider-approval.js')
-rw-r--r-- | old-ui/app/provider-approval.js | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/old-ui/app/provider-approval.js b/old-ui/app/provider-approval.js deleted file mode 100644 index c4c7ff64..00000000 --- a/old-ui/app/provider-approval.js +++ /dev/null @@ -1,64 +0,0 @@ -import PropTypes from 'prop-types' -import React, { Component } from 'react' -import { approveProviderRequest, rejectProviderRequest } from '../../ui/app/actions' -import { connect } from 'react-redux' -class ProviderApproval extends Component { - render () { - const { approveProviderRequest, origin, rejectProviderRequest } = this.props - return ( - <div className="flex-column flex-grow"> - <style dangerouslySetInnerHTML={{__html: ` - .provider_approval_actions { - display: flex; - justify-content: flex-end; - margin: 14px 25px; - } - .provider_approval_actions button { - margin-left: 10px; - text-transform: uppercase; - } - .provider_approval_content { - padding: 0 25px; - } - .provider_approval_origin { - font-weight: bold; - margin: 14px 0; - } - `}} /> - <div className="section-title flex-row flex-center"> - <i - className="fa fa-arrow-left fa-lg cursor-pointer" - onClick={() => { rejectProviderRequest(origin) }} /> - <h2 className="page-subtitle">Web3 API Request</h2> - </div> - <div className="provider_approval_content"> - {"The domain listed below is requesting access to the Ethereum blockchain and to view your current account. Always double check that you're on the correct site before approving access."} - <div className="provider_approval_origin">{origin}</div> - </div> - <div className="provider_approval_actions"> - <button - className="btn-green" - onClick={() => { approveProviderRequest(origin) }}>APPROVE</button> - <button - className="cancel btn-red" - onClick={() => { rejectProviderRequest(origin) }}>REJECT</button> - </div> - </div> - ) - } -} - -ProviderApproval.propTypes = { - approveProviderRequest: PropTypes.func, - origin: PropTypes.string, - rejectProviderRequest: PropTypes.func, -} - -function mapDispatchToProps (dispatch) { - return { - approveProviderRequest: origin => dispatch(approveProviderRequest(origin)), - rejectProviderRequest: origin => dispatch(rejectProviderRequest(origin)), - } -} - -module.exports = connect(null, mapDispatchToProps)(ProviderApproval) |