diff options
author | Dan <danjm.com@gmail.com> | 2018-03-29 23:00:44 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-03-29 23:12:38 +0800 |
commit | 0a711f0de0e342b24988a5da4ca5c64342153210 (patch) | |
tree | 9dd6014e6389cfad02d5380e6810a12fdf747b0a /ui/app/components/copyButton.js | |
parent | 650b716f55fcfa809b22708b9ad43c8a0716f9fc (diff) | |
download | tangerine-wallet-browser-0a711f0de0e342b24988a5da4ca5c64342153210.tar.gz tangerine-wallet-browser-0a711f0de0e342b24988a5da4ca5c64342153210.tar.zst tangerine-wallet-browser-0a711f0de0e342b24988a5da4ca5c64342153210.zip |
Removes t from props via metamask-connect and instead places it on context via a provider.
Diffstat (limited to 'ui/app/components/copyButton.js')
-rw-r--r-- | ui/app/components/copyButton.js | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/ui/app/components/copyButton.js b/ui/app/components/copyButton.js index ea1c43d54..a60d33523 100644 --- a/ui/app/components/copyButton.js +++ b/ui/app/components/copyButton.js @@ -1,13 +1,19 @@ const Component = require('react').Component +const PropTypes = require('prop-types') const h = require('react-hyperscript') const inherits = require('util').inherits const copyToClipboard = require('copy-to-clipboard') -const connect = require('../metamask-connect') +const connect = require('react-redux').connect const Tooltip = require('./tooltip') +CopyButton.contextTypes = { + t: PropTypes.func, +} + module.exports = connect()(CopyButton) + inherits(CopyButton, Component) function CopyButton () { Component.call(this) @@ -23,7 +29,7 @@ CopyButton.prototype.render = function () { const value = props.value const copied = state.copied - const message = copied ? this.props.t('copiedButton') : props.title || this.props.t('copyButton') + const message = copied ? this.context.t('copiedButton') : props.title || this.context.t('copyButton') return h('.copy-button', { style: { |