mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-22 17:33:23 +01:00
parent
4f9e66994d
commit
294b16a275
@ -239,13 +239,9 @@ App.prototype.renderPrimary = function(){
|
||||
return h(CreateVaultScreen, {key: 'createVault'})
|
||||
|
||||
default:
|
||||
if (this.hasPendingTxs()) {
|
||||
return h(ConfirmTxScreen, {key: 'confirm-tx'})
|
||||
} else {
|
||||
return h(AccountDetailScreen, {key: 'account-detail'})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
App.prototype.toggleMetamaskActive = function(){
|
||||
if (!this.props.isUnlocked) {
|
||||
@ -259,14 +255,6 @@ App.prototype.toggleMetamaskActive = function(){
|
||||
}
|
||||
}
|
||||
|
||||
App.prototype.hasPendingTxs = function() {
|
||||
var state = this.props
|
||||
var unconfTxs = state.unconfTxs
|
||||
var unconfMsgs = state.unconfMsgs
|
||||
var unconfTxList = txHelper(unconfTxs, unconfMsgs)
|
||||
return unconfTxList.length > 0
|
||||
}
|
||||
|
||||
function onOffToggle(state){
|
||||
var buttonSize = '50px';
|
||||
var lockWidth = '20px';
|
||||
|
@ -9,8 +9,17 @@ function reduceApp(state, action) {
|
||||
|
||||
// clone and defaults
|
||||
const selectedAccount = state.metamask.selectedAccount
|
||||
const pendingTxs = hasPendingTxs(state)
|
||||
let name = 'accounts'
|
||||
if (selectedAccount) {
|
||||
defaultView = 'accountDetail'
|
||||
}
|
||||
if (pendingTxs) {
|
||||
defaultView = 'confTx'
|
||||
}
|
||||
|
||||
var defaultView = {
|
||||
name: selectedAccount ? 'accountDetail' : 'accounts',
|
||||
name,
|
||||
detailView: null,
|
||||
context: selectedAccount,
|
||||
}
|
||||
@ -122,7 +131,6 @@ function reduceApp(state, action) {
|
||||
|
||||
case actions.UNLOCK_METAMASK:
|
||||
return extend(appState, {
|
||||
currentView: {},
|
||||
detailView: {},
|
||||
transForward: true,
|
||||
isLoading: false,
|
||||
@ -145,7 +153,9 @@ function reduceApp(state, action) {
|
||||
|
||||
case actions.GO_HOME:
|
||||
return extend(appState, {
|
||||
currentView: {},
|
||||
currentView: extend(appState.currentView, {
|
||||
name: 'accountDetail',
|
||||
}),
|
||||
accountDetail: {
|
||||
subview: 'transactions',
|
||||
accountExport: 'none',
|
||||
@ -349,3 +359,10 @@ function reduceApp(state, action) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
function hasPendingTxs (state) {
|
||||
var unconfTxs = state.metamask.unconfTxs
|
||||
var unconfMsgs = state.metamask.unconfMsgs
|
||||
var unconfTxList = txHelper(unconfTxs, unconfMsgs)
|
||||
return unconfTxList.length > 0
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user