aboutsummaryrefslogtreecommitdiffstats
path: root/mascara/src/app/first-time/unique-image-screen.js
blob: ef6bd28ab30a9429b1e499c37e6ca02e6ffa9a71 (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
import React, {Component, PropTypes} from 'react'
import {connect} from 'react-redux'
import Identicon from '../../../../ui/app/components/identicon'
import Breadcrumbs from './breadcrumbs'

class UniqueImageScreen extends Component {
  static propTypes = {
    address: PropTypes.string,
    next: PropTypes.func.isRequired,
  }

  render () {
    return (
      <div className="unique-image">
        <Identicon address={this.props.address} diameter={70} />
        <div className="unique-image__title">Your unique account image</div>
        <div className="unique-image__body-text">
          This image was programmatically generated for you by your new account number.
        </div>
        <div className="unique-image__body-text">
          Youll see this image everytime you need to confirm a transaction.
        </div>
        <button
          className="first-time-flow__button"
          onClick={this.props.next}
        >
          Next
        </button>
        <Breadcrumbs total={3} currentIndex={1} />
      </div>
    )
  }
}

export default connect(
  ({ metamask: { selectedAddress } }) => ({
    address: selectedAddress,
  })
)(UniqueImageScreen)