A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/helpers/utils/icon-factory.js

69 lines
1.7 KiB

import { isValidHexAddress } from '../../../shared/modules/hexstring-utils';
let iconFactory;
export default function iconFactoryGenerator(jazzicon) {
if (!iconFactory) {
iconFactory = new IconFactory(jazzicon);
}
return iconFactory;
}
function IconFactory(jazzicon) {
this.jazzicon = jazzicon;
this.cache = {};
}
IconFactory.prototype.iconForAddress = function (
address,
diameter,
tokenMetadata,
) {
if (iconExistsFor(address, tokenMetadata)) {
return imageElFor(tokenMetadata);
}
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
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
function iconExistsFor(address, tokenMetadata) {
return (
isValidHexAddress(address, { allowNonPrefixed: false }) &&
tokenMetadata &&
tokenMetadata.iconUrl
);
}
function imageElFor(tokenMetadata = {}) {
const img = document.createElement('img');
img.src = tokenMetadata?.iconUrl;
img.style.width = '100%';
return img;
}
function jsNumberForAddress(address) {
const addr = address.slice(2, 10);
const seed = parseInt(addr, 16);
return seed;
}