nifty-wallet/ui/app/reducers/app.js

576 lines
14 KiB
JavaScript
Raw Normal View History

const extend = require('xtend')
const actions = require('../actions')
const txHelper = require('../../lib/tx-helper')
module.exports = reduceApp
2016-06-21 13:18:32 -07:00
function reduceApp (state, action) {
log.debug('App Reducer got ' + action.type)
// clone and defaults
const selectedAddress = state.metamask.selectedAddress
2017-03-31 12:38:20 -07:00
const hasUnconfActions = checkUnconfActions(state)
let name = 'accounts'
if (selectedAddress) {
name = 'accountDetail'
}
2017-03-31 12:38:20 -07:00
if (hasUnconfActions) {
2017-02-23 16:00:43 -08:00
log.debug('pending txs detected, defaulting to conf-tx view.')
name = 'confTx'
}
var defaultView = {
name,
detailView: null,
context: selectedAddress,
}
// confirm seed words
var seedWords = state.metamask.seedWords
var seedConfView = {
name: 'createVaultComplete',
seedWords,
}
// default state
var appState = extend({
shouldClose: false,
2016-05-18 12:30:03 -07:00
menuOpen: false,
2016-10-25 13:24:03 -07:00
currentView: seedWords ? seedConfView : defaultView,
accountDetail: {
subview: 'transactions',
},
transForward: true, // Used to render transition direction
isLoading: false, // Used to display loading indicator
warning: null, // Used to display error text
}, state.appState)
switch (action.type) {
// transition methods
case actions.TRANSITION_FORWARD:
return extend(appState, {
transForward: true,
})
case actions.TRANSITION_BACKWARD:
return extend(appState, {
transForward: false,
})
// intialize
2016-06-21 13:18:32 -07:00
case actions.SHOW_CREATE_VAULT:
return extend(appState, {
currentView: {
name: 'createVault',
},
transForward: true,
warning: null,
})
2016-06-21 13:18:32 -07:00
case actions.SHOW_RESTORE_VAULT:
return extend(appState, {
currentView: {
name: 'restoreVault',
},
transForward: true,
forgottenPassword: true,
2016-06-21 13:18:32 -07:00
})
case actions.FORGOT_PASSWORD:
return extend(appState, {
currentView: {
name: 'restoreVault',
},
transForward: false,
forgottenPassword: true,
2016-06-21 13:18:32 -07:00
})
2016-06-21 13:18:32 -07:00
case actions.SHOW_INIT_MENU:
return extend(appState, {
currentView: defaultView,
transForward: false,
})
2016-06-21 13:18:32 -07:00
case actions.SHOW_CONFIG_PAGE:
return extend(appState, {
currentView: {
name: 'config',
context: appState.currentView.context,
},
transForward: action.value,
})
case actions.SHOW_IMPORT_PAGE:
return extend(appState, {
currentView: {
name: 'import-menu',
},
transForward: true,
})
2016-06-21 13:18:32 -07:00
case actions.SHOW_INFO_PAGE:
return extend(appState, {
currentView: {
name: 'info',
context: appState.currentView.context,
},
transForward: true,
})
2016-06-21 13:18:32 -07:00
case actions.CREATE_NEW_VAULT_IN_PROGRESS:
return extend(appState, {
currentView: {
name: 'createVault',
inProgress: true,
},
transForward: true,
isLoading: true,
})
2016-06-21 13:18:32 -07:00
case actions.SHOW_NEW_VAULT_SEED:
return extend(appState, {
currentView: {
name: 'createVaultComplete',
seedWords: action.value,
},
transForward: true,
isLoading: false,
})
2016-11-04 12:00:56 -07:00
case actions.NEW_ACCOUNT_SCREEN:
return extend(appState, {
currentView: {
name: 'new-account',
context: appState.currentView.context,
},
transForward: true,
})
2016-06-21 13:18:32 -07:00
case actions.SHOW_SEND_PAGE:
return extend(appState, {
currentView: {
name: 'sendTransaction',
context: appState.currentView.context,
},
transForward: true,
warning: null,
})
2016-10-15 10:48:12 -07:00
case actions.SHOW_NEW_KEYCHAIN:
return extend(appState, {
currentView: {
name: 'newKeychain',
2016-10-20 09:50:29 -07:00
context: appState.currentView.context,
2016-10-15 10:48:12 -07:00
},
transForward: true,
})
2016-06-21 13:18:32 -07:00
// unlock
2016-06-21 13:18:32 -07:00
case actions.UNLOCK_METAMASK:
return extend(appState, {
forgottenPassword: appState.forgottenPassword ? !appState.forgottenPassword : null,
2016-06-21 13:18:32 -07:00
detailView: {},
transForward: true,
isLoading: false,
warning: null,
})
case actions.LOCK_METAMASK:
return extend(appState, {
currentView: defaultView,
transForward: false,
2016-06-21 13:18:32 -07:00
warning: null,
})
case actions.BACK_TO_INIT_MENU:
return extend(appState, {
warning: null,
transForward: false,
forgottenPassword: true,
currentView: {
name: 'InitMenu',
},
})
case actions.BACK_TO_UNLOCK_VIEW:
return extend(appState, {
warning: null,
transForward: true,
forgottenPassword: false,
currentView: {
name: 'UnlockScreen',
},
})
2016-06-21 13:18:32 -07:00
// reveal seed words
case actions.REVEAL_SEED_CONFIRMATION:
return extend(appState, {
currentView: {
2016-06-21 13:18:32 -07:00
name: 'reveal-seed-conf',
},
2016-06-21 13:18:32 -07:00
transForward: true,
warning: null,
})
2016-06-21 13:18:32 -07:00
// accounts
case actions.SET_SELECTED_ACCOUNT:
return extend(appState, {
2016-06-21 13:18:32 -07:00
activeAddress: action.value,
})
case actions.GO_HOME:
return extend(appState, {
currentView: extend(appState.currentView, {
name: 'accountDetail',
}),
accountDetail: {
subview: 'transactions',
accountExport: 'none',
privateKey: '',
},
transForward: false,
warning: null,
2016-06-21 13:18:32 -07:00
})
case actions.SHOW_ACCOUNT_DETAIL:
return extend(appState, {
forgottenPassword: appState.forgottenPassword ? !appState.forgottenPassword : null,
currentView: {
name: 'accountDetail',
2016-06-21 13:56:04 -07:00
context: action.value,
},
accountDetail: {
subview: 'transactions',
2016-06-21 13:18:32 -07:00
accountExport: 'none',
privateKey: '',
},
2016-06-21 13:18:32 -07:00
transForward: false,
})
2016-06-21 13:18:32 -07:00
case actions.BACK_TO_ACCOUNT_DETAIL:
return extend(appState, {
currentView: {
name: 'accountDetail',
context: action.value,
},
accountDetail: {
subview: 'transactions',
accountExport: 'none',
privateKey: '',
},
transForward: false,
})
case actions.SHOW_ACCOUNTS_PAGE:
return extend(appState, {
currentView: {
name: seedWords ? 'createVaultComplete' : 'accounts',
seedWords,
},
transForward: true,
isLoading: false,
warning: null,
2016-06-21 13:18:32 -07:00
scrollToBottom: false,
forgottenPassword: false,
2016-06-21 13:18:32 -07:00
})
case actions.SHOW_NOTICE:
return extend(appState, {
transForward: true,
isLoading: false,
})
2016-06-21 13:18:32 -07:00
case actions.REVEAL_ACCOUNT:
return extend(appState, {
scrollToBottom: true,
})
case actions.SHOW_CONF_TX_PAGE:
return extend(appState, {
currentView: {
name: 'confTx',
2016-06-21 13:18:32 -07:00
context: 0,
},
transForward: action.transForward,
warning: null,
isLoading: false,
2016-06-21 13:18:32 -07:00
})
case actions.SHOW_CONF_MSG_PAGE:
return extend(appState, {
currentView: {
2017-03-31 12:38:20 -07:00
name: hasUnconfActions ? 'confTx' : 'account-detail',
2016-06-21 13:18:32 -07:00
context: 0,
},
transForward: true,
warning: null,
isLoading: false,
2016-06-21 13:18:32 -07:00
})
case actions.COMPLETED_TX:
2017-02-23 16:00:43 -08:00
log.debug('reducing COMPLETED_TX for tx ' + action.value)
2017-03-31 12:38:20 -07:00
const otherUnconfActions = getUnconfActionList(state)
2017-02-23 16:00:43 -08:00
.filter(tx => tx.id !== action.value )
2017-03-31 12:38:20 -07:00
const hasOtherUnconfActions = otherUnconfActions.length > 0
2016-06-21 13:18:32 -07:00
2017-03-31 12:38:20 -07:00
if (hasOtherUnconfActions) {
log.debug('reducer detected txs - rendering confTx view')
2016-06-21 13:18:32 -07:00
return extend(appState, {
transForward: false,
currentView: {
name: 'confTx',
context: 0,
},
warning: null,
})
} else {
log.debug('attempting to close popup')
2016-06-21 13:18:32 -07:00
return extend(appState, {
// indicate notification should close
shouldClose: true,
2016-06-21 13:18:32 -07:00
transForward: false,
warning: null,
currentView: {
name: 'accountDetail',
context: state.metamask.selectedAddress,
2016-06-21 13:18:32 -07:00
},
accountDetail: {
subview: 'transactions',
},
})
}
2016-06-21 13:18:32 -07:00
case actions.NEXT_TX:
return extend(appState, {
transForward: true,
currentView: {
name: 'confTx',
context: ++appState.currentView.context,
warning: null,
},
})
case actions.VIEW_PENDING_TX:
const context = indexForPending(state, action.value)
return extend(appState, {
transForward: true,
currentView: {
name: 'confTx',
context,
warning: null,
},
})
case actions.PREVIOUS_TX:
return extend(appState, {
transForward: false,
currentView: {
name: 'confTx',
context: --appState.currentView.context,
warning: null,
},
})
case actions.TRANSACTION_ERROR:
return extend(appState, {
currentView: {
name: 'confTx',
errorMessage: 'There was a problem submitting this transaction.',
},
})
case actions.UNLOCK_FAILED:
return extend(appState, {
warning: action.value || 'Incorrect password. Try again.',
2016-06-21 13:18:32 -07:00
})
case actions.SHOW_LOADING:
return extend(appState, {
isLoading: true,
loadingMessage: action.value,
2016-06-21 13:18:32 -07:00
})
case actions.HIDE_LOADING:
return extend(appState, {
isLoading: false,
})
2016-08-10 13:51:14 -07:00
case actions.SHOW_SUB_LOADING_INDICATION:
return extend(appState, {
isSubLoading: true,
})
case actions.HIDE_SUB_LOADING_INDICATION:
return extend(appState, {
isSubLoading: false,
})
2016-06-21 13:18:32 -07:00
case actions.CLEAR_SEED_WORD_CACHE:
return extend(appState, {
transForward: true,
currentView: {},
isLoading: false,
accountDetail: {
subview: 'transactions',
accountExport: 'none',
privateKey: '',
},
})
case actions.DISPLAY_WARNING:
return extend(appState, {
warning: action.value,
isLoading: false,
2016-06-21 13:18:32 -07:00
})
case actions.HIDE_WARNING:
return extend(appState, {
warning: undefined,
})
case actions.REQUEST_ACCOUNT_EXPORT:
return extend(appState, {
transForward: true,
currentView: {
name: 'accountDetail',
context: appState.currentView.context,
},
accountDetail: {
subview: 'export',
accountExport: 'requested',
},
})
case actions.EXPORT_ACCOUNT:
return extend(appState, {
accountDetail: {
subview: 'export',
accountExport: 'completed',
},
})
case actions.SHOW_PRIVATE_KEY:
return extend(appState, {
accountDetail: {
subview: 'export',
accountExport: 'completed',
privateKey: action.value,
},
})
case actions.BUY_ETH_VIEW:
return extend(appState, {
transForward: true,
currentView: {
name: 'buyEth',
context: appState.currentView.name,
},
identity: state.metamask.identities[action.value],
buyView: {
subview: 'Coinbase',
2017-01-10 12:18:39 -08:00
amount: '15.00',
buyAddress: action.value,
2016-08-10 13:51:14 -07:00
formView: {
coinbase: true,
shapeshift: false,
},
},
})
case actions.COINBASE_SUBVIEW:
return extend(appState, {
buyView: {
subview: 'Coinbase',
2016-08-10 13:51:14 -07:00
formView: {
coinbase: true,
shapeshift: false,
},
buyAddress: appState.buyView.buyAddress,
amount: appState.buyView.amount,
2016-08-10 13:51:14 -07:00
},
})
case actions.SHAPESHIFT_SUBVIEW:
return extend(appState, {
buyView: {
subview: 'ShapeShift',
2016-08-10 13:51:14 -07:00
formView: {
coinbase: false,
shapeshift: true,
marketinfo: action.value.marketinfo,
coinOptions: action.value.coinOptions,
},
buyAddress: appState.buyView.buyAddress,
amount: appState.buyView.amount,
2016-08-10 13:51:14 -07:00
},
})
case actions.PAIR_UPDATE:
return extend(appState, {
buyView: {
subview: 'ShapeShift',
2016-08-10 13:51:14 -07:00
formView: {
coinbase: false,
shapeshift: true,
marketinfo: action.value.marketinfo,
coinOptions: appState.buyView.formView.coinOptions,
2016-08-10 13:51:14 -07:00
},
buyAddress: appState.buyView.buyAddress,
amount: appState.buyView.amount,
2016-08-10 13:51:14 -07:00
warning: null,
},
})
case actions.SHOW_QR:
2016-08-10 13:51:14 -07:00
return extend(appState, {
qrRequested: true,
transForward: true,
Qr: {
message: action.value.message,
data: action.value.data,
},
})
2016-08-18 10:40:35 -07:00
case actions.SHOW_QR_VIEW:
return extend(appState, {
currentView: {
name: 'qr',
context: appState.currentView.context,
},
transForward: true,
Qr: {
message: action.value.message,
data: action.value.data,
},
})
2016-08-18 15:20:26 -07:00
default:
2016-06-21 13:18:32 -07:00
return appState
}
}
2017-03-31 12:38:20 -07:00
function checkUnconfActions (state) {
const unconfActionList = getUnconfActionList(state)
const hasUnconfActions = unconfActionList.length > 0
return hasUnconfActions
}
function getUnconfActionList (state) {
const { unapprovedTxs, unapprovedMsgs,
unapprovedPersonalMsgs, network } = state.metamask
2017-03-31 12:38:20 -07:00
const unconfActionList = txHelper(unapprovedTxs, unapprovedMsgs, unapprovedPersonalMsgs, network)
return unconfActionList
}
2016-06-21 13:18:32 -07:00
function indexForPending (state, txId) {
2017-03-31 12:38:20 -07:00
const unconfTxList = getUnconfActionList(state)
const match = unconfTxList.find((tx) => tx.id === txId)
const index = unconfTxList.indexOf(match)
return index
}