aboutsummaryrefslogtreecommitdiffstats
path: root/ui/lib/icon-factory.js
blob: 1b1df94909ebdd4277d8e235e2897bc8120cdacd (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
var iconFactory

module.exports = function(jazzicon) {
  if (!iconFactory) {
    iconFactory = new IconFactory(jazzicon)
  }
  return iconFactory
}

function IconFactory(jazzicon) {
  this.jazzicon = jazzicon
  this.cache = {}
}

IconFactory.prototype.iconForAddress = function(address, diameter) {
  if (this.isCached(address, diameter)) {
    return this.cache[address][diameter]
  }

  const dataUri = this.generateNewUri(address, diameter)
  this.cacheIcon(address, diameter, dataUri)
  return dataUri
}

IconFactory.prototype.generateNewUri = function(address, diameter) {
  var numericRepresentation = jsNumberForAddress(address)
  var identicon = this.jazzicon(diameter, numericRepresentation)
  var identiconSrc = identicon.innerHTML
  var dataUri = 'data:image/svg+xml;charset=utf-8,'+encodeURIComponent(identiconSrc)
  return dataUri
}

IconFactory.prototype.cacheIcon = function(address, diameter, icon) {
  if (!(address in this.cache)) {
    var sizeCache = {}
    sizeCache[diameter] = icon
    return this.cache[address] = sizeCache

  } else {
    return this.cache[address][diameter] = icon
  }
}

IconFactory.prototype.isCached = function(address, diameter) {
  return address in this.cache && diameter in this.cache[address]
}

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