aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs/src/components/badge.tsx
blob: e3d5be273ba8c4d2e3975e7c817c8916f8cf0086 (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
49
50
51
52
53
54
55
import { Styles } from '@0x/react-shared';
import * as React from 'react';

const styles: Styles = {
    badge: {
        width: 50,
        fontSize: 11,
        height: 10,
        borderRadius: 5,
        lineHeight: 0.9,
        fontFamily: 'Roboto Mono',
        marginLeft: 3,
        marginRight: 3,
    },
};

export interface BadgeProps {
    title: string;
    backgroundColor: string;
}

export interface BadgeState {
    isHovering: boolean;
}

export class Badge extends React.Component<BadgeProps, BadgeState> {
    constructor(props: BadgeProps) {
        super(props);
        this.state = {
            isHovering: false,
        };
    }
    public render(): React.ReactNode {
        const badgeStyle = {
            ...styles.badge,
            backgroundColor: this.props.backgroundColor,
            opacity: this.state.isHovering ? 0.7 : 1,
        };
        return (
            <div
                className="p1 center"
                style={badgeStyle}
                onMouseOver={this._setHoverState.bind(this, true)}
                onMouseOut={this._setHoverState.bind(this, false)}
            >
                {this.props.title}
            </div>
        );
    }
    private _setHoverState(isHovering: boolean): void {
        this.setState({
            isHovering,
        });
    }
}