1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

backported RPC improvements to oldui

This commit is contained in:
Evgeniy Filatov 2018-08-19 21:02:30 +03:00
parent b23cca1469
commit c0b5e8a088
2 changed files with 6 additions and 5 deletions

View File

@ -350,11 +350,13 @@ module.exports = class AppBar extends Component {
}
}
renderCommonRpc (rpcList, {rpcTarget}) {
renderCommonRpc (rpcList, provider) {
const {dispatch} = this.props
return rpcList.map((rpc) => {
if ((rpc === LOCALHOST_RPC_URL) || (rpc === rpcTarget)) {
const currentRpcTarget = provider.type === 'rpc' && rpc === provider.rpcTarget
if ((rpc === LOCALHOST_RPC_URL) || currentRpcTarget) {
return null
} else {
return h(DropdownMenuItem, {
@ -364,7 +366,7 @@ module.exports = class AppBar extends Component {
}, [
h('i.fa.fa-question-circle.fa-lg.menu-icon'),
rpc,
rpcTarget === rpc
currentRpcTarget
? h('.check', '✓')
: null,
])

View File

@ -272,10 +272,9 @@ NetworkDropdown.prototype.getNetworkName = function () {
NetworkDropdown.prototype.renderCommonRpc = function (rpcList, provider) {
const props = this.props
const rpcTarget = provider.rpcTarget
return rpcList.map((rpc) => {
const currentRpcTarget = provider.type === 'rpc' && rpc === rpcTarget
const currentRpcTarget = provider.type === 'rpc' && rpc === provider.rpcTarget
if ((rpc === 'http://localhost:8545') || currentRpcTarget) {
return null