mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
180 lines
4.2 KiB
JavaScript
180 lines
4.2 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
import { isEqual } from 'lodash';
|
|
import Jazzicon from '../jazzicon';
|
|
|
|
import { getAssetImageURL } from '../../../helpers/utils/util';
|
|
import BlockieIdenticon from './blockieIdenticon';
|
|
|
|
const getStyles = (diameter) => ({
|
|
height: diameter,
|
|
width: diameter,
|
|
borderRadius: diameter / 2,
|
|
});
|
|
|
|
export default class Identicon extends Component {
|
|
static propTypes = {
|
|
/**
|
|
* Adds blue border around the Identicon used for selected account.
|
|
* Increases the width and height of the Identicon by 8px
|
|
*/
|
|
addBorder: PropTypes.bool,
|
|
/**
|
|
* Address used for generating random image
|
|
*/
|
|
address: PropTypes.string,
|
|
/**
|
|
* Add custom css class
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* Sets the width and height of the inner img element
|
|
* If addBorder is true will increase components height and width by 8px
|
|
*/
|
|
diameter: PropTypes.number,
|
|
/**
|
|
* Used as the image source of the Identicon
|
|
*/
|
|
image: PropTypes.oneOfType([PropTypes.string, PropTypes.array]),
|
|
/**
|
|
* Use the blockie type random image generator
|
|
*/
|
|
useBlockie: PropTypes.bool,
|
|
/**
|
|
* The alt text of the image
|
|
*/
|
|
alt: PropTypes.string,
|
|
/**
|
|
* Check if show image border
|
|
*/
|
|
imageBorder: PropTypes.bool,
|
|
/**
|
|
* Add list of token in object
|
|
*/
|
|
tokenList: PropTypes.object,
|
|
/**
|
|
* User preferred IPFS gateway
|
|
*/
|
|
ipfsGateway: PropTypes.string,
|
|
};
|
|
|
|
state = {
|
|
imageLoadingError: false,
|
|
};
|
|
|
|
static defaultProps = {
|
|
addBorder: false,
|
|
address: undefined,
|
|
className: undefined,
|
|
diameter: 46,
|
|
image: undefined,
|
|
useBlockie: false,
|
|
alt: '',
|
|
tokenList: {},
|
|
};
|
|
|
|
renderImage() {
|
|
const { className, diameter, alt, imageBorder, ipfsGateway } = this.props;
|
|
let { image } = this.props;
|
|
|
|
if (Array.isArray(image) && image.length) {
|
|
image = image[0];
|
|
}
|
|
|
|
if (
|
|
typeof image === 'string' &&
|
|
image.toLowerCase().startsWith('ipfs://')
|
|
) {
|
|
image = getAssetImageURL(image, ipfsGateway);
|
|
}
|
|
|
|
return (
|
|
<img
|
|
className={classnames('identicon', className, {
|
|
'identicon__image-border': imageBorder,
|
|
})}
|
|
src={image}
|
|
style={getStyles(diameter)}
|
|
alt={alt}
|
|
onError={() => {
|
|
this.setState({ imageLoadingError: true });
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
renderJazzicon() {
|
|
const { address, className, diameter, alt, tokenList } = this.props;
|
|
return (
|
|
<Jazzicon
|
|
address={address}
|
|
diameter={diameter}
|
|
className={classnames('identicon', className)}
|
|
style={getStyles(diameter)}
|
|
alt={alt}
|
|
tokenList={tokenList}
|
|
/>
|
|
);
|
|
}
|
|
|
|
renderBlockie() {
|
|
const { address, className, diameter, alt } = this.props;
|
|
|
|
return (
|
|
<div
|
|
className={classnames('identicon', className)}
|
|
style={getStyles(diameter)}
|
|
>
|
|
<BlockieIdenticon address={address} diameter={diameter} alt={alt} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
renderBlockieOrJazzIcon() {
|
|
const { useBlockie } = this.props;
|
|
return useBlockie ? this.renderBlockie() : this.renderJazzicon();
|
|
}
|
|
|
|
shouldComponentUpdate(nextProps, nextState) {
|
|
// We only want to re-render if props are different.
|
|
return !isEqual(nextProps, this.props) || !isEqual(nextState, this.state);
|
|
}
|
|
|
|
render() {
|
|
const { address, image, addBorder, diameter, tokenList } = this.props;
|
|
const { imageLoadingError } = this.state;
|
|
const size = diameter + 8;
|
|
|
|
if (imageLoadingError) {
|
|
return this.renderBlockieOrJazzIcon();
|
|
}
|
|
|
|
if (image) {
|
|
return this.renderImage();
|
|
}
|
|
|
|
if (address) {
|
|
if (tokenList[address.toLowerCase()]?.iconUrl) {
|
|
return this.renderJazzicon();
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className={classnames({ 'identicon__address-wrapper': addBorder })}
|
|
style={addBorder ? getStyles(size) : null}
|
|
>
|
|
{this.renderBlockieOrJazzIcon()}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div
|
|
style={getStyles(diameter)}
|
|
className="identicon__image-border"
|
|
></div>
|
|
);
|
|
}
|
|
}
|