aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorbrunobar79 <brunobar79@gmail.com>2018-07-31 10:57:05 +0800
committerbrunobar79 <brunobar79@gmail.com>2018-07-31 10:57:05 +0800
commitedb154749d468299166e41e56d23beb781817cbc (patch)
treed3b3c808aa8aef68e149e6819488896e0f1e9cfd /ui
parentb673a7a7fc66f1582ddb7cd94b32548a58a87670 (diff)
downloadtangerine-wallet-browser-edb154749d468299166e41e56d23beb781817cbc.tar
tangerine-wallet-browser-edb154749d468299166e41e56d23beb781817cbc.tar.gz
tangerine-wallet-browser-edb154749d468299166e41e56d23beb781817cbc.tar.bz2
tangerine-wallet-browser-edb154749d468299166e41e56d23beb781817cbc.tar.lz
tangerine-wallet-browser-edb154749d468299166e41e56d23beb781817cbc.tar.xz
tangerine-wallet-browser-edb154749d468299166e41e56d23beb781817cbc.tar.zst
tangerine-wallet-browser-edb154749d468299166e41e56d23beb781817cbc.zip
send to fullscreen if no permission from popup
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/modals/qr-scanner/qr-scanner.component.js38
-rw-r--r--ui/app/components/send/send.component.js5
2 files changed, 32 insertions, 11 deletions
diff --git a/ui/app/components/modals/qr-scanner/qr-scanner.component.js b/ui/app/components/modals/qr-scanner/qr-scanner.component.js
index 580774635..395008fca 100644
--- a/ui/app/components/modals/qr-scanner/qr-scanner.component.js
+++ b/ui/app/components/modals/qr-scanner/qr-scanner.component.js
@@ -3,6 +3,11 @@ import PropTypes from 'prop-types'
import { BrowserQRCodeReader } from '@zxing/library'
import adapter from 'webrtc-adapter' // eslint-disable-line import/no-nodejs-modules, no-unused-vars
import Spinner from '../../spinner'
+const { ENVIRONMENT_TYPE_POPUP } = require('../../../../../app/scripts/lib/enums')
+const { getEnvironmentType } = require('../../../../../app/scripts/lib/util')
+const {
+ SEND_ROUTE,
+} = require('../../../routes')
export default class QrScanner extends Component {
static propTypes = {
@@ -22,13 +27,14 @@ export default class QrScanner extends Component {
}
this.scanning = false
this.codeReader = null
+ this.notAllowed = false
}
componentDidMount () {
- console.log('[QR-SCANNER]: componentDidUpdate', this.scanning)
+
if (!this.scanning) {
this.scanning = true
- console.log('[QR-SCANNER]: componentDidUpdate - about to call initCamera')
+
this.initCamera()
}
}
@@ -38,22 +44,23 @@ export default class QrScanner extends Component {
}
initCamera () {
- console.log('[QR-SCANNER]: initCamera')
+
this.codeReader = new BrowserQRCodeReader()
this.codeReader.getVideoInputDevices()
.then(videoInputDevices => {
- console.log('[QR-SCANNER]: initCamera::getVideoInputDevices', videoInputDevices)
+
setTimeout(_ => {
- this.setState({
- ready: true,
- msg: this.context.t('scanInstructions')})
- console.log('[QR-SCANNER]: initCamera::ready')
+ if (!this.notAllowed) {
+ this.setState({
+ ready: true,
+ msg: this.context.t('scanInstructions')})
+ }
}, 2000)
- console.log('[QR-SCANNER]: initCamera::started decoding...')
+
this.codeReader.decodeFromInputVideoDevice(videoInputDevices[0].deviceId, 'video')
.then(content => {
- console.log('[QR-SCANNER]: initCamera::decodeFromInputVideoDevice callback', content)
+
const result = this.parseContent(content.text)
if (result.type !== 'unknown') {
this.props.qrCodeDetected(result)
@@ -63,6 +70,14 @@ export default class QrScanner extends Component {
}
})
.catch(err => {
+ this.notAllowed = true
+ if (err && err.name === 'NotAllowedError') {
+ if (getEnvironmentType(window.location.href) === ENVIRONMENT_TYPE_POPUP) {
+ global.platform.openExtensionInBrowser(`${SEND_ROUTE}`, `scan=true`)
+ } else {
+ this.setState({msg: this.context.t('youNeedToAllowCameraAccess')})
+ }
+ }
console.error('QR-SCANNER: decodeFromInputVideoDevice threw an exception: ', err)
})
}).catch(err => {
@@ -75,7 +90,8 @@ export default class QrScanner extends Component {
let values = {}
// Here we could add more cases
- // To parse other codes (transactions for ex.)
+ // To parse other type of links
+ // For ex. EIP-681 (https://eips.ethereum.org/EIPS/eip-681)
if (content.split('ethereum:').length > 1) {
type = 'address'
diff --git a/ui/app/components/send/send.component.js b/ui/app/components/send/send.component.js
index fb7eef329..8305a288e 100644
--- a/ui/app/components/send/send.component.js
+++ b/ui/app/components/send/send.component.js
@@ -175,6 +175,11 @@ export default class SendTransactionScreen extends PersistentForm {
address,
})
this.updateGas()
+
+ // Show QR Scanner modal if ?scan=true
+ if (window.location.search === '?scan=true') {
+ this.props.scanQrCode()
+ }
}
componentWillUnmount () {