aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/identicon.js
blob: ef625cc62a74d542be71288a702d2cd3555bd93b (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
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const jazzicon = require('jazzicon')
const findDOMNode = require('react-dom').findDOMNode

module.exports = IdenticonComponent

inherits(IdenticonComponent, Component)
function IdenticonComponent() {
  Component.call(this)

  this.defaultDiameter = 46
}

IdenticonComponent.prototype.render = function() {
  var state = this.props
  var diameter = state.diameter || this.defaultDiameter
  return (
    h('div', {
      key: 'identicon-' + this.props.address,
      style: {
        display: 'inline-block',
        height: diameter,
        width: diameter,
        borderRadius: diameter / 2,
        overflow: 'hidden',
      },
    })
  )
}

IdenticonComponent.prototype.componentDidMount = function(){
  var state = this.props
  var address = state.address

  if (!address) return
  var numericRepresentation = jsNumberForAddress(address)

  var container = findDOMNode(this)
  // jazzicon with hack to fix inline svg error
  var diameter = state.diameter || this.defaultDiameter
  var identicon = jazzicon(diameter, numericRepresentation)
  var identiconSrc = identicon.innerHTML
  var dataUri = 'data:image/svg+xml;charset=utf-8,'+encodeURIComponent(identiconSrc)
  var img = document.createElement('img')
  img.src = dataUri
  container.appendChild(img)
}

function jsNumberForAddress(address) {
  var addr = address.slice(2, 10)
  var seed = parseInt(addr, 16)
  return seed
}