aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/components/modals/buy-options-modal.js
blob: a8033d288d5a1e0cf49583c47e4c47d30a5f1e62 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                              
                                        



                                    
                                            




                                        
                              

                                                                    

                                   
      


                                                              











                                                                         
                                                  
        
                                                                        

                  
                                          




                                                         
                                                                      
 
                                           
                          



                                                      

                                                                          

           


                                                                                                  

           


                                                       

                                                                                         



           




                                                  

                                                                                        

    




                                                            
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const connect = require('react-redux').connect
const actions = require('../../actions')

function mapStateToProps (state) {
  return {
    network: state.metamask.network,
    address: state.metamask.selectedAddress,
  }
}

function mapDispatchToProps (dispatch) {
  return {
    toCoinbase: (address) => {
      dispatch(actions.buyEth({ network: '1', address, amount: 0 }))
    },
    hideModal: () => {
      dispatch(actions.hideModal())
    },
    showAccountDetailModal: () => {
      dispatch(actions.showModal({ name: 'ACCOUNT_DETAILS' }))
    },
  }
}

inherits(BuyOptions, Component)
function BuyOptions () {
  Component.call(this)
}

module.exports = connect(mapStateToProps, mapDispatchToProps)(BuyOptions)

BuyOptions.prototype.render = function () {
  return h('div', {}, [
    h('div.buy-modal-content.transfers-subview', {
    }, [
      h('div.buy-modal-content-title-wrapper.flex-column.flex-center', {
        style: {},
      }, [
        h('div.buy-modal-content-title', {
          style: {},
        }, 'Transfers'),
        h('div', {}, 'How would you like to buy Ether?'),
      ]),

      h('div.buy-modal-content-options.flex-column.flex-center', {}, [

        h('div.buy-modal-content-option', {
          onClick: () => {
            const { toCoinbase, address } = this.props
            toCoinbase(address)
          },
        }, [
          h('div.buy-modal-content-option-title', {}, 'Coinbase'),
          h('div.buy-modal-content-option-subtitle', {}, 'Buy with Fiat'),
        ]),

        h('div.buy-modal-content-option', {}, [
          h('div.buy-modal-content-option-title', {}, 'Shapeshift'),
          h('div.buy-modal-content-option-subtitle', {}, 'Trade any digital asset for any other'),
        ]),

        h('div.buy-modal-content-option', {
          onClick: () => this.goToAccountDetailsModal()
        }, [
          h('div.buy-modal-content-option-title', {}, 'Direct Deposit'),
          h('div.buy-modal-content-option-subtitle', {}, 'Deposit from another account'),
        ]),

      ]),

      h('button', {
        style: {
          background: 'white',
        },
        onClick: () => { this.props.hideModal() },
      }, h('div.buy-modal-content-footer#buy-modal-content-footer-text', {}, 'Cancel')),
    ]),
  ])
}

BuyOptions.prototype.goToAccountDetailsModal = function () {
  this.props.hideModal()
  this.props.showAccountDetailModal()
}