1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-27 04:46:10 +01:00
metamask-extension/ui/helpers/utils/icon-factory.js

75 lines
1.9 KiB
JavaScript
Raw Normal View History

import contractMap from '@metamask/contract-metadata';
2021-05-17 23:19:39 +02:00
import {
isValidHexAddress,
toChecksumHexAddress,
} from '../../../shared/modules/hexstring-utils';
let iconFactory;
2020-11-03 00:41:28 +01:00
export default function iconFactoryGenerator(jazzicon) {
if (!iconFactory) {
iconFactory = new IconFactory(jazzicon);
}
return iconFactory;
}
2020-11-03 00:41:28 +01:00
function IconFactory(jazzicon) {
this.jazzicon = jazzicon;
this.cache = {};
}
IconFactory.prototype.iconForAddress = function (address, diameter) {
2021-05-17 23:19:39 +02:00
const addr = toChecksumHexAddress(address);
if (iconExistsFor(addr)) {
return imageElFor(addr);
}
return this.generateIdenticonSvg(address, diameter);
};
// returns svg dom element
IconFactory.prototype.generateIdenticonSvg = function (address, diameter) {
const cacheId = `${address}:${diameter}`;
// check cache, lazily generate and populate cache
2020-11-03 00:41:28 +01:00
const identicon =
this.cache[cacheId] ||
(this.cache[cacheId] = this.generateNewIdenticon(address, diameter));
// create a clean copy so you can modify it
const cleanCopy = identicon.cloneNode(true);
return cleanCopy;
};
// creates a new identicon
IconFactory.prototype.generateNewIdenticon = function (address, diameter) {
const numericRepresentation = jsNumberForAddress(address);
const identicon = this.jazzicon(diameter, numericRepresentation);
return identicon;
};
// util
2020-11-03 00:41:28 +01:00
function iconExistsFor(address) {
return (
contractMap[address] &&
isValidHexAddress(address, { allowNonPrefixed: false }) &&
contractMap[address].logo
);
}
2020-11-03 00:41:28 +01:00
function imageElFor(address) {
const contract = contractMap[address];
const fileName = contract.logo;
const path = `images/contract/${fileName}`;
const img = document.createElement('img');
img.src = path;
img.style.width = '100%';
return img;
}
2020-11-03 00:41:28 +01:00
function jsNumberForAddress(address) {
const addr = address.slice(2, 10);
const seed = parseInt(addr, 16);
return seed;
}