mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
117 lines
2.4 KiB
JavaScript
117 lines
2.4 KiB
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import classnames from 'classnames'
|
|
import contractMap from 'eth-contract-metadata'
|
|
|
|
import { checksumAddress } from '../../../helpers/utils/util'
|
|
import Jazzicon from '../jazzicon'
|
|
import BlockieIdenticon from './blockieIdenticon'
|
|
|
|
const getStyles = (diameter) => ({
|
|
height: diameter,
|
|
width: diameter,
|
|
borderRadius: diameter / 2,
|
|
})
|
|
|
|
export default class Identicon extends PureComponent {
|
|
static propTypes = {
|
|
addBorder: PropTypes.bool,
|
|
address: PropTypes.string,
|
|
className: PropTypes.string,
|
|
diameter: PropTypes.number,
|
|
image: PropTypes.string,
|
|
useBlockie: PropTypes.bool,
|
|
}
|
|
|
|
static defaultProps = {
|
|
addBorder: false,
|
|
address: undefined,
|
|
className: undefined,
|
|
diameter: 46,
|
|
image: undefined,
|
|
useBlockie: false,
|
|
}
|
|
|
|
renderImage() {
|
|
const { className, diameter, image } = this.props
|
|
|
|
return (
|
|
<img
|
|
className={classnames('identicon', className)}
|
|
src={image}
|
|
style={getStyles(diameter)}
|
|
alt=""
|
|
/>
|
|
)
|
|
}
|
|
|
|
renderJazzicon() {
|
|
const { address, className, diameter } = this.props
|
|
|
|
return (
|
|
<Jazzicon
|
|
address={address}
|
|
diameter={diameter}
|
|
className={classnames('identicon', className)}
|
|
style={getStyles(diameter)}
|
|
/>
|
|
)
|
|
}
|
|
|
|
renderBlockie() {
|
|
const { address, className, diameter } = this.props
|
|
|
|
return (
|
|
<div
|
|
className={classnames('identicon', className)}
|
|
style={getStyles(diameter)}
|
|
>
|
|
<BlockieIdenticon address={address} diameter={diameter} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
className,
|
|
address,
|
|
image,
|
|
diameter,
|
|
useBlockie,
|
|
addBorder,
|
|
} = this.props
|
|
|
|
if (image) {
|
|
return this.renderImage()
|
|
}
|
|
|
|
if (address) {
|
|
const checksummedAddress = checksumAddress(address)
|
|
|
|
if (
|
|
contractMap[checksummedAddress] &&
|
|
contractMap[checksummedAddress].logo
|
|
) {
|
|
return this.renderJazzicon()
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className={classnames({ 'identicon__address-wrapper': addBorder })}
|
|
>
|
|
{useBlockie ? this.renderBlockie() : this.renderJazzicon()}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<img
|
|
className={classnames('identicon__eth-logo', className)}
|
|
src="./images/eth_logo.svg"
|
|
style={getStyles(diameter)}
|
|
alt=""
|
|
/>
|
|
)
|
|
}
|
|
}
|