aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/coinbase-form.js
blob: 693eb2ea85a5a7d0f9c1bee25b77f6a09eb599c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
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')

const isValidAddress = require('../util').isValidAddress
module.exports = connect(mapStateToProps)(CoinbaseForm)

function mapStateToProps (state) {
  return {
    selectedAccount: state.selectedAccount,
    warning: state.appState.warning,
  }
}

inherits(CoinbaseForm, Component)

function CoinbaseForm () {
  Component.call(this)
}

CoinbaseForm.prototype.render = function () {
  var props = this.props
  var amount = props.buyView.amount
  var address = props.buyView.buyAddress

  return h('.flex-column', {
    style: {
      // margin: '10px',
      padding: '25px',
    },
  }, [
    h('.flex-column', {
      style: {
        alignItems: 'flex-start',
      },
    }, [
      h('.flex-row', [
        h('div', 'Address:'),
        h('.ellip-address', address),
      ]),
      h('.flex-row', [
        h('div', 'Amount: $'),
        h('.input-container', [
          h('input.buy-inputs', {
            style: {
              width: '3em',
              boxSizing: 'border-box',
            },
            defaultValue: amount,
            onChange: this.handleAmount.bind(this),
          }),
          h('i.fa.fa-pencil-square-o.edit-text', {
            style: {
              fontSize: '12px',
              color: '#F7861C',
              position: 'relative',
              bottom: '5px',
              right: '11px',
            },
          }),
        ]),
      ]),
    ]),

    h('.info-gray', {
      style: {
        fontSize: '10px',
        fontFamily: 'Montserrat Light',
        margin: '15px',
        lineHeight: '13px',
      },
    },
      `there is a USD$ 5 a day max and a USD$ 50
          dollar limit per the life time of an account without a
          coinbase account. A fee of 3.75% will be aplied to debit/credit cards.`),

    !props.warning ? h('div', {
      style: {
        width: '340px',
        height: '22px',
      },
    }) : props.warning && h('span.error.flex-center', props.warning),


    h('.flex-row', {
      style: {
        justifyContent: 'space-around',
        margin: '33px',
      },
    }, [
      h('button', {
        onClick: this.toCoinbase.bind(this),
      }, 'Continue to Coinbase'),

      h('button', {
        onClick: () => props.dispatch(actions.backTobuyView(props.accounts.address)),
      }, 'Cancel'),
    ]),
  ])
}
CoinbaseForm.prototype.handleAmount = function (event) {
  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 () {
  var props = this.props
  var amount = props.buyView.amount
  var address = props.buyView.buyAddress
  var message

  if (isValidAddress(address) && isValidAmountforCoinBase(amount).valid) {
    props.dispatch(actions.buyEth(address, props.buyView.amount))
  } else if (!isValidAmountforCoinBase(amount).valid) {
    message = isValidAmountforCoinBase(amount).message
    return props.dispatch(actions.displayWarning(message))
  } else {
    message = 'Receiving address is invalid.'
    return props.dispatch(actions.displayWarning(message))
  }
}

CoinbaseForm.prototype.renderLoading = function () {
  return h('img', {
    style: {
      width: '27px',
      marginRight: '-27px',
    },
    src: 'images/loading.svg',
  })
}

function isValidAmountforCoinBase (amount) {
  amount = parseFloat(amount)
  if (amount) {
    if (amount <= 5 && amount > 0) {
      return {
        valid: true,
      }
    } else if (amount > 5) {
      return {
        valid: false,
        message: 'The amount can not be greater then $5',
      }
    } else {
      return {
        valid: false,
        message: 'Can not buy amounts less then $0',
      }
    }
  } else {
    return {
      valid: false,
      message: 'The amount entered is not a number',
    }
  }
}