You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.7 KiB
62 lines
1.7 KiB
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
const qrCode = require('qrcode-npm').qrcode
|
|
const inherits = require('util').inherits
|
|
const connect = require('react-redux').connect
|
|
const isHexPrefixed = require('ethereumjs-util').isHexPrefixed
|
|
const ReadOnlyInput = require('./readonly-input')
|
|
|
|
module.exports = connect(mapStateToProps)(QrCodeView)
|
|
|
|
function mapStateToProps (state) {
|
|
return {
|
|
// Qr code is not fetched from state. 'message' and 'data' props are passed instead.
|
|
buyView: state.appState.buyView,
|
|
warning: state.appState.warning,
|
|
}
|
|
}
|
|
|
|
inherits(QrCodeView, Component)
|
|
|
|
function QrCodeView () {
|
|
Component.call(this)
|
|
}
|
|
|
|
QrCodeView.prototype.render = function () {
|
|
const props = this.props
|
|
const Qr = props.Qr
|
|
const address = `${isHexPrefixed(Qr.data) ? 'ethereum:' : ''}${Qr.data}`
|
|
const qrImage = qrCode(4, 'M')
|
|
qrImage.addData(address)
|
|
qrImage.make()
|
|
|
|
return h('.div.flex-column.flex-center', [
|
|
Array.isArray(Qr.message)
|
|
? h('.message-container', this.renderMultiMessage())
|
|
: Qr.message && h('.qr-header', Qr.message),
|
|
|
|
this.props.warning ? this.props.warning && h('span.error.flex-center', {
|
|
style: {
|
|
},
|
|
},
|
|
this.props.warning) : null,
|
|
|
|
h('.div.qr-wrapper', {
|
|
style: {},
|
|
dangerouslySetInnerHTML: {
|
|
__html: qrImage.createTableTag(4),
|
|
},
|
|
}),
|
|
h(ReadOnlyInput, {
|
|
wrapperClass: 'ellip-address-wrapper',
|
|
inputClass: 'qr-ellip-address',
|
|
value: Qr.data,
|
|
}),
|
|
])
|
|
}
|
|
|
|
QrCodeView.prototype.renderMultiMessage = function () {
|
|
var Qr = this.props.Qr
|
|
var multiMessage = Qr.message.map((message) => h('.qr-message', message))
|
|
return multiMessage
|
|
}
|
|
|