aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/ui/identicon.tsx
blob: bad6c2a784daa4faf0cb36dba4f519f6c94122a1 (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
37
38
39
40
41
42
43
44
45
46
47
48
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>
        );
    }
}