remove updateBuyAddress action

feature/default_network_editable
Jared Pereira 8 years ago
parent c1df7dedd9
commit 5cabd3e02d
  1. 9
      ui/app/actions.js
  2. 4
      ui/app/components/coinbase-form.js
  3. 4
      ui/app/components/shapeshift-form.js
  4. 13
      ui/app/reducers/app.js

@ -136,8 +136,6 @@ var actions = {
BUY_ETH_VIEW: 'BUY_ETH_VIEW', BUY_ETH_VIEW: 'BUY_ETH_VIEW',
UPDATE_COINBASE_AMOUNT: 'UPDATE_COIBASE_AMOUNT', UPDATE_COINBASE_AMOUNT: 'UPDATE_COIBASE_AMOUNT',
updateCoinBaseAmount: updateCoinBaseAmount, updateCoinBaseAmount: updateCoinBaseAmount,
UPDATE_BUY_ADDRESS: 'UPDATE_BUY_ADDRESS',
updateBuyAddress: updateBuyAddress,
COINBASE_SUBVIEW: 'COINBASE_SUBVIEW', COINBASE_SUBVIEW: 'COINBASE_SUBVIEW',
coinBaseSubview: coinBaseSubview, coinBaseSubview: coinBaseSubview,
SHAPESHIFT_SUBVIEW: 'SHAPESHIFT_SUBVIEW', SHAPESHIFT_SUBVIEW: 'SHAPESHIFT_SUBVIEW',
@ -859,13 +857,6 @@ function updateCoinBaseAmount (value) {
} }
} }
function updateBuyAddress (value) {
return {
type: actions.UPDATE_BUY_ADDRESS,
value,
}
}
function coinBaseSubview () { function coinBaseSubview () {
return { return {
type: actions.COINBASE_SUBVIEW, type: actions.COINBASE_SUBVIEW,

@ -48,9 +48,7 @@ CoinbaseForm.prototype.render = function () {
CoinbaseForm.prototype.handleAmount = function (event) { CoinbaseForm.prototype.handleAmount = function (event) {
this.props.dispatch(actions.updateCoinBaseAmount(event.target.value)) this.props.dispatch(actions.updateCoinBaseAmount(event.target.value))
} }
CoinbaseForm.prototype.handleAddress = function (event) {
this.props.dispatch(actions.updateBuyAddress(event.target.value))
}
CoinbaseForm.prototype.toCoinbase = function () { CoinbaseForm.prototype.toCoinbase = function () {
const props = this.props const props = this.props
const address = props.buyView.buyAddress const address = props.buyView.buyAddress

@ -276,10 +276,6 @@ ShapeshiftForm.prototype.renderInfo = function () {
]) ])
} }
ShapeshiftForm.prototype.handleAddress = function (event) {
this.props.dispatch(actions.updateBuyAddress(event.target.value))
}
ShapeshiftForm.prototype.activeToggle = function (elementType) { ShapeshiftForm.prototype.activeToggle = function (elementType) {
if (!this.props.buyView.formView.response || this.props.warning) return elementType if (!this.props.buyView.formView.response || this.props.warning) return elementType
return `${elementType}.inactive` return `${elementType}.inactive`

@ -481,19 +481,6 @@ function reduceApp (state, action) {
}, },
}) })
case actions.UPDATE_BUY_ADDRESS:
return extend(appState, {
buyView: {
subview: appState.subview,
formView: {
coinbase: appState.buyView.formView.coinbase,
shapeshift: appState.buyView.formView.shapeshift,
},
buyAddress: action.value,
amount: appState.buyView.amount,
},
})
case actions.UPDATE_COINBASE_AMOUNT: case actions.UPDATE_COINBASE_AMOUNT:
return extend(appState, { return extend(appState, {
buyView: { buyView: {

Loading…
Cancel
Save