aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/ui/identicon.tsx
blob: a741ae43b849a7f44a4c10a0d37a453c9c20c3f5 (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
import blockies = require('blockies');
import * as _ from 'lodash';
import * as React from 'react';
import {constants} from 'ts/utils/constants';

interface IdenticonProps {
    address: string;
    diameter: number;
    style?: React.CSSProperties;
}

interface IdenticonState {}

export class Identicon extends React.Component<IdenticonProps, IdenticonState> {
    public static defaultProps: Partial<IdenticonProps> = {
        style: {},
    };
    public render() {
        let address = this.props.address;
        if (_.isEmpty(address)) {
            address = constants.NULL_ADDRESS;
        }
        const diameter = this.props.diameter;
        const icon = blockies({
            seed: address.toLowerCase(),
        });
        return (
            <div
                className="circle mx-auto relative transitionFix"
                style={{width: diameter, height: diameter, overflow: 'hidden', ...this.props.style}}
            >
                <img src={icon.toDataURL()} style={{width: diameter, height: diameter, imageRendering: 'pixelated'}}/>
            </div>
        );
    }
}