aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <542863+danfinlay@users.noreply.github.com>2019-06-07 03:07:54 +0800
committerGitHub <noreply@github.com>2019-06-07 03:07:54 +0800
commit141a9a50acdf584f43ffadae3a10b8c593eeb5a9 (patch)
tree379ba066d5f89da1dbf6af9820e8f7f401b2ebf5
parentbe911711942914e7f6df535afff1a3ee87e23b6f (diff)
parentb27fdef5e47c48e18f2c2b2961b28153d8f68486 (diff)
downloadtangerine-wallet-browser-141a9a50acdf584f43ffadae3a10b8c593eeb5a9.tar.gz
tangerine-wallet-browser-141a9a50acdf584f43ffadae3a10b8c593eeb5a9.tar.zst
tangerine-wallet-browser-141a9a50acdf584f43ffadae3a10b8c593eeb5a9.zip
Merge pull request #6695 from MetaMask/develop
Develop to master
-rw-r--r--CHANGELOG.md4
-rw-r--r--app/manifest.json2
-rw-r--r--ui/app/components/app/ens-input.js14
-rw-r--r--ui/app/css/itcss/components/send.scss38
-rw-r--r--ui/app/pages/send/to-autocomplete/to-autocomplete.js21
5 files changed, 15 insertions, 64 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b96648380..d7f7baddf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
## Current Develop Branch
+## 6.6.1 Thu Jun 06 2019
+
+- [#6691](https://github.com/MetaMask/metamask-extension/pull/6691): Revert "Improve ENS Address Input" to fix bugs on input field on non-main networks.
+
## 6.6.0 Mon Jun 03 2019
- [#6659](https://github.com/MetaMask/metamask-extension/pull/6659): Enable Ledger hardware wallet support on Firefox
diff --git a/app/manifest.json b/app/manifest.json
index 0dbd09b65..6acb74082 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -1,7 +1,7 @@
{
"name": "__MSG_appName__",
"short_name": "__MSG_appName__",
- "version": "6.6.0",
+ "version": "6.6.1",
"manifest_version": 2,
"author": "https://metamask.io",
"description": "__MSG_appDescription__",
diff --git a/ui/app/components/app/ens-input.js b/ui/app/components/app/ens-input.js
index f17f6c3d6..5eea0dd90 100644
--- a/ui/app/components/app/ens-input.js
+++ b/ui/app/components/app/ens-input.js
@@ -41,15 +41,12 @@ EnsInput.prototype.onChange = function (recipient) {
ensResolution: null,
ensFailure: null,
toError: null,
- recipient,
})
}
this.setState({
loadingEns: true,
- recipient,
})
-
this.checkName(recipient)
}
@@ -59,7 +56,6 @@ EnsInput.prototype.render = function () {
list: 'addresses',
onChange: this.onChange.bind(this),
qrScanner: true,
- recipient: (this.state || {}).recipient,
})
return h('div', {
style: { width: '100%', position: 'relative' },
@@ -83,21 +79,19 @@ EnsInput.prototype.componentDidMount = function () {
EnsInput.prototype.lookupEnsName = function (recipient) {
const { ensResolution } = this.state
- recipient = recipient.trim()
log.info(`ENS attempting to resolve name: ${recipient}`)
- this.ens.lookup(recipient)
+ this.ens.lookup(recipient.trim())
.then((address) => {
if (address === ZERO_ADDRESS) throw new Error(this.context.t('noAddressForName'))
if (address !== ensResolution) {
this.setState({
loadingEns: false,
ensResolution: address,
- nickname: recipient,
+ nickname: recipient.trim(),
hoverText: address + '\n' + this.context.t('clickCopy'),
ensFailure: false,
toError: null,
- recipient,
})
}
})
@@ -107,11 +101,11 @@ EnsInput.prototype.lookupEnsName = function (recipient) {
ensResolution: recipient,
ensFailure: true,
toError: null,
- recipient: null,
}
if (isValidENSAddress(recipient) && reason.message === 'ENS name not defined.') {
setStateObj.hoverText = this.context.t('ensNameNotFound')
setStateObj.toError = 'ensNameNotFound'
+ setStateObj.ensFailure = false
} else {
log.error(reason)
setStateObj.hoverText = reason.message
@@ -134,7 +128,7 @@ EnsInput.prototype.componentDidUpdate = function (prevProps, prevState) {
}
if (prevState && ensResolution && this.props.onChange &&
ensResolution !== prevState.ensResolution) {
- this.props.onChange({ toAddress: ensResolution, recipient: state.recipient, nickname, toError: state.toError, toWarning: state.toWarning })
+ this.props.onChange({ toAddress: ensResolution, nickname, toError: state.toError, toWarning: state.toWarning })
}
}
diff --git a/ui/app/css/itcss/components/send.scss b/ui/app/css/itcss/components/send.scss
index e2f0f9b2f..c1a7381b6 100644
--- a/ui/app/css/itcss/components/send.scss
+++ b/ui/app/css/itcss/components/send.scss
@@ -773,43 +773,7 @@
}
}
- &__to-autocomplete {
- display: flex;
- flex-direction: column;
- z-index: 1025;
- position: relative;
- height: 54px;
- width: 100%;
- border: 1px solid $alto;
- border-radius: 4px;
- background-color: $white;
- color: $tundora;
- padding: 0 10px;
- font-family: Roboto;
- line-height: 21px;
-
- &__input {
- font-size: 16px;
- height: 100%;
- border: none;
- }
-
- &__resolved {
- font-size: 12px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- height: 30px;
- cursor: pointer;
-
- + .send-v2__to-autocomplete__qr-code {
- top: 2px;
- right: 0;
- }
- }
- }
-
- &__memo-text-area, &__hex-data {
+ &__to-autocomplete, &__memo-text-area, &__hex-data {
&__input {
z-index: 1025;
position: relative;
diff --git a/ui/app/pages/send/to-autocomplete/to-autocomplete.js b/ui/app/pages/send/to-autocomplete/to-autocomplete.js
index 11f86acf3..328a5b62b 100644
--- a/ui/app/pages/send/to-autocomplete/to-autocomplete.js
+++ b/ui/app/pages/send/to-autocomplete/to-autocomplete.js
@@ -1,7 +1,6 @@
const Component = require('react').Component
const PropTypes = require('prop-types')
const h = require('react-hyperscript')
-const copyToClipboard = require('copy-to-clipboard')
const inherits = require('util').inherits
const AccountListItem = require('../account-list-item/account-list-item.component').default
const connect = require('react-redux').connect
@@ -94,34 +93,24 @@ ToAutoComplete.prototype.componentDidUpdate = function (nextProps) {
ToAutoComplete.prototype.render = function () {
const {
to,
- recipient,
dropdownOpen,
onChange,
inError,
qrScanner,
} = this.props
- const isRecipientToDiff = recipient && recipient !== to
-
- return h('div.send-v2__to-autocomplete', {style: {
- borderColor: inError ? 'red' : null,
- }}, [
+ return h('div.send-v2__to-autocomplete', {}, [
h(`input.send-v2__to-autocomplete__input${qrScanner ? '.with-qr' : ''}`, {
placeholder: this.context.t('recipientAddress'),
className: inError ? `send-v2__error-border` : '',
- value: recipient,
+ value: to,
onChange: event => onChange(event.target.value),
onFocus: event => this.handleInputEvent(event),
+ style: {
+ borderColor: inError ? 'red' : null,
+ },
}),
- isRecipientToDiff && h(Tooltip, {title: this.context.t('copyToClipboard')},
- h('div.send-v2__to-autocomplete__resolved', {
- onClick: (event) => {
- event.preventDefault()
- event.stopPropagation()
- copyToClipboard(to)
- },
- }, to)),
qrScanner && h(Tooltip, {
title: this.context.t('scanQrCode'),
position: 'bottom',