aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/ui/identicon.tsx
blob: b5b374973a7939551711240f05149a5eb3c9e95e (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 { Circle } from 'ts/components/ui/circle';
import { Image } from 'ts/components/ui/image';
import { colors } from 'ts/style/colors';

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(): React.ReactNode {
        const address = this.props.address;
        const diameter = this.props.diameter;
        return (
            <div
                className="circle relative transitionFix"
                style={{
                    width: diameter,
                    height: diameter,
                    overflow: 'hidden',
                    ...this.props.style,
                }}
            >
                {!_.isEmpty(address) ? (
                    <Image
                        src={blockies({
                            seed: address.toLowerCase(),
                        }).toDataURL()}
                        height={diameter}
                        width={diameter}
                    />
                ) : (
                    <Circle diameter={diameter} fillColor={colors.grey200} />
                )}
            </div>
        );
    }
}