aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages/create-account/connect-hardware/connect-screen.js
blob: fe7c1e027dd3dc4b997437f1e5f672627708843f (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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
const { Component } = require('react')
const PropTypes = require('prop-types')
const h = require('react-hyperscript')
import Button from '../../../components/ui/button'

class ConnectScreen extends Component {
  constructor (props) {
    super(props)
    this.state = {
      selectedDevice: null,
    }
  }

    connect = () => {
      if (this.state.selectedDevice) {
        this.props.connectToHardwareWallet(this.state.selectedDevice)
      }
      return null
    }

    renderConnectToTrezorButton () {
      return h(
        `button.hw-connect__btn${this.state.selectedDevice === 'trezor' ? '.selected' : ''}`,
        { onClick: _ => this.setState({selectedDevice: 'trezor'}) },
        h('img.hw-connect__btn__img', {
          src: 'images/trezor-logo.svg',
        })
      )
    }

    renderConnectToLedgerButton () {
      return h(
        `button.hw-connect__btn${this.state.selectedDevice === 'ledger' ? '.selected' : ''}`,
        { onClick: _ => this.setState({selectedDevice: 'ledger'}) },
        h('img.hw-connect__btn__img', {
          src: 'images/ledger-logo.svg',
        })
      )
    }

    renderButtons () {
      return (
        h('div', {}, [
          h('div.hw-connect__btn-wrapper', {}, [
            this.renderConnectToLedgerButton(),
            this.renderConnectToTrezorButton(),
          ]),
          h(Button, {
            type: 'primary',
            large: true,
            className: 'hw-connect__connect-btn',
            onClick: this.connect,
            disabled: !this.state.selectedDevice,
          }, this.context.t('connect')),
        ])
      )
    }

    renderUnsupportedBrowser () {
      return (
        h('div.new-account-connect-form.unsupported-browser', {}, [
          h('div.hw-connect', [
            h('h3.hw-connect__title', {}, this.context.t('browserNotSupported')),
            h('p.hw-connect__msg', {}, this.context.t('chromeRequiredForHardwareWallets')),
          ]),
          h(Button, {
            type: 'primary',
            large: true,
            onClick: () => global.platform.openWindow({
              url: 'https://google.com/chrome',
            }),
          }, this.context.t('downloadGoogleChrome')),
        ])
      )
    }

    renderHeader () {
      return (
        h('div.hw-connect__header', {}, [
          h('h3.hw-connect__header__title', {}, this.context.t(`hardwareWallets`)),
          h('p.hw-connect__header__msg', {}, this.context.t(`hardwareWalletsMsg`)),
        ])
      )
    }

    getAffiliateLinks () {
      const links = {
        trezor: `<a class='hw-connect__get-hw__link' href='https://shop.trezor.io/?a=metamask' target='_blank'>Trezor</a>`,
        ledger: `<a class='hw-connect__get-hw__link' href='https://www.ledger.com/products/ledger-nano-s?r=17c4991a03fa&tracker=MY_TRACKER' target='_blank'>Ledger</a>`,
      }

      const text = this.context.t('orderOneHere')
      const response = text.replace('Trezor', links.trezor).replace('Ledger', links.ledger)

      return h('div.hw-connect__get-hw__msg', { dangerouslySetInnerHTML: {__html: response }})
    }

    renderTrezorAffiliateLink () {
      return h('div.hw-connect__get-hw', {}, [
        h('p.hw-connect__get-hw__msg', {}, this.context.t(`dontHaveAHardwareWallet`)),
        this.getAffiliateLinks(),
      ])
    }


    scrollToTutorial = () => {
      if (this.referenceNode) this.referenceNode.scrollIntoView({behavior: 'smooth'})
    }

    renderLearnMore () {
      return (
        h('p.hw-connect__learn-more', {
          onClick: this.scrollToTutorial,
        }, [
          this.context.t('learnMore'),
          h('img.hw-connect__learn-more__arrow', { src: 'images/caret-right.svg'}),
        ])
      )
    }

    renderTutorialSteps () {
      const steps = [
        {
          asset: 'hardware-wallet-step-1',
          dimensions: {width: '225px', height: '75px'},
        },
        {
          asset: 'hardware-wallet-step-2',
          dimensions: {width: '300px', height: '100px'},
        },
        {
          asset: 'hardware-wallet-step-3',
          dimensions: {width: '120px', height: '90px'},
        },
      ]

      return h('.hw-tutorial', {
        ref: node => { this.referenceNode = node },
      },
      steps.map((step, i) => (
        h('div.hw-connect', {}, [
          h('h3.hw-connect__title', {}, this.context.t(`step${i + 1}HardwareWallet`)),
          h('p.hw-connect__msg', {}, this.context.t(`step${i + 1}HardwareWalletMsg`)),
          h('img.hw-connect__step-asset', { src: `images/${step.asset}.svg`, ...step.dimensions }),
        ])
      ))
      )
    }

    renderFooter () {
      return (
        h('div.hw-connect__footer', {}, [
          h('h3.hw-connect__footer__title', {}, this.context.t(`readyToConnect`)),
          this.renderButtons(),
          h('p.hw-connect__footer__msg', {}, [
            this.context.t(`havingTroubleConnecting`),
            h('a.hw-connect__footer__link', {
              href: 'https://support.metamask.io/',
              target: '_blank',
            }, this.context.t('getHelp')),
          ]),
        ])
      )
    }

    renderConnectScreen () {
      return (
        h('div.new-account-connect-form', {}, [
          this.renderHeader(),
          this.renderButtons(),
          this.renderTrezorAffiliateLink(),
          this.renderLearnMore(),
          this.renderTutorialSteps(),
          this.renderFooter(),
        ])
      )
    }

    render () {
      if (this.props.browserSupported) {
        return this.renderConnectScreen()
      }
      return this.renderUnsupportedBrowser()
    }
}

ConnectScreen.propTypes = {
  connectToHardwareWallet: PropTypes.func.isRequired,
  browserSupported: PropTypes.bool.isRequired,
}

ConnectScreen.contextTypes = {
  t: PropTypes.func,
}

module.exports = ConnectScreen