diff options
author | Frankie <frankie.pangilinan@consensys.net> | 2016-08-11 04:51:14 +0800 |
---|---|---|
committer | Frankie <frankie.pangilinan@consensys.net> | 2016-08-11 05:41:40 +0800 |
commit | 4ace425a9c4a5112692d1e9269d3074a0987e5e9 (patch) | |
tree | 58abb6170e9e21dbf6b0bb09355ff93404a22901 /ui/app/reducers/app.js | |
parent | ba1edc429b948962fe0f03ef43588f7945cea3f2 (diff) | |
download | tangerine-wallet-browser-4ace425a9c4a5112692d1e9269d3074a0987e5e9.tar tangerine-wallet-browser-4ace425a9c4a5112692d1e9269d3074a0987e5e9.tar.gz tangerine-wallet-browser-4ace425a9c4a5112692d1e9269d3074a0987e5e9.tar.bz2 tangerine-wallet-browser-4ace425a9c4a5112692d1e9269d3074a0987e5e9.tar.lz tangerine-wallet-browser-4ace425a9c4a5112692d1e9269d3074a0987e5e9.tar.xz tangerine-wallet-browser-4ace425a9c4a5112692d1e9269d3074a0987e5e9.tar.zst tangerine-wallet-browser-4ace425a9c4a5112692d1e9269d3074a0987e5e9.zip |
Fix merge mess
Diffstat (limited to 'ui/app/reducers/app.js')
-rw-r--r-- | ui/app/reducers/app.js | 106 |
1 files changed, 104 insertions, 2 deletions
diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js index a9d6e4ff0..3b23ce005 100644 --- a/ui/app/reducers/app.js +++ b/ui/app/reducers/app.js @@ -317,6 +317,15 @@ function reduceApp (state, action) { isLoading: false, }) + case actions.SHOW_SUB_LOADING_INDICATION: + return extend(appState, { + isSubLoading: true, + }) + + case actions.HIDE_SUB_LOADING_INDICATION: + return extend(appState, { + isSubLoading: false, + }) case actions.CLEAR_SEED_WORD_CACHE: return extend(appState, { transForward: true, @@ -369,7 +378,7 @@ function reduceApp (state, action) { }, }) - case actions.SHOW_ETH_WARNING: + case actions.BUY_ETH_SUBVIEW: return extend(appState, { transForward: true, currentView: { @@ -377,7 +386,100 @@ function reduceApp (state, action) { context: appState.currentView.context, }, accountDetail: { - subview: 'buy-eth-warning', + subview: 'buyForm', + amount: '5.00', + buyAddress: appState.currentView.context, + formView: { + coinbase: true, + shapeshift: false, + }, + }, + }) + + case actions.UPDATE_BUY_ADDRESS: + return extend(appState, { + accountDetail: { + subview: 'buyForm', + formView: { + coinbase: true, + shapeshift: false, + }, + buyAddress: action.value, + amount: appState.accountDetail.amount, + }, + }) + + case actions.UPDATE_COINBASE_AMOUNT: + return extend(appState, { + accountDetail: { + subview: 'buyForm', + formView: { + coinbase: true, + shapeshift: false, + }, + buyAddress: appState.accountDetail.buyAddress, + amount: action.value, + }, + }) + + case actions.COINBASE_SUBVIEW: + return extend(appState, { + accountDetail: { + subview: 'buyForm', + formView: { + coinbase: true, + shapeshift: false, + }, + buyAddress: appState.accountDetail.buyAddress, + amount: appState.accountDetail.amount, + }, + }) + + case actions.SHAPESHIFT_SUBVIEW: + return extend(appState, { + accountDetail: { + subview: 'buyForm', + formView: { + coinbase: false, + shapeshift: true, + marketinfo: action.value.marketinfo, + coinOptions: action.value.coinOptions, + }, + buyAddress: appState.accountDetail.buyAddress, + amount: appState.accountDetail.amount, + }, + }) + + case actions.PAIR_UPDATE: + return extend(appState, { + accountDetail: { + subview: 'buyForm', + formView: { + coinbase: false, + shapeshift: true, + marketinfo: action.value.marketinfo, + coinOptions: appState.accountDetail.formView.coinOptions, + }, + buyAddress: appState.accountDetail.buyAddress, + amount: appState.accountDetail.amount, + warning: null, + }, + }) + + case actions.COIN_SHIFT_REQUEST: + return extend(appState, { + accountDetail: { + subview: 'buyForm', + formView: { + coinbase: false, + shapeshift: true, + marketinfo: appState.accountDetail.formView.marketinfo, + coinOptions: appState.accountDetail.formView.coinOptions, + response: action.value.response, + }, + buyAddress: appState.accountDetail.buyAddress, + amount: appState.accountDetail.amount, + warning: null, }, }) default: |