aboutsummaryrefslogtreecommitdiff
path: root/src/Grid.tsx
blob: 995e59f7e330944b4fa4cdd9f2b0bc2a4cde0d89 (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
56
import React from 'react';
import 'typeface-roboto';
import MGrid from '@material-ui/core/Grid';
import orange from '@material-ui/core/colors/orange';
import blue from '@material-ui/core/colors/blue';
import { Theme, withStyles, StyleRules } from '@material-ui/core/styles';
import Color from 'color';
import { TransitionGroup, CSSTransition } from "react-transition-group";
import './Grid.css';

const styles = (theme: Theme): StyleRules => ({
});

interface GridProps {
    classes: {
    },
    data: {d: number[], col: number}[][]
}

export function getNodeColor(d: number, col: number) {
    const color = [orange[300], blue[300]];
    let base = Color(color[col]).hsl().array();
    base[2] = 80;
    return Color.hsl(base).darken(Math.min(d / 15, 0.5)).hex();
}

class Grid extends React.Component<GridProps> {
    static getColor(s: {d: number[], col: number}) {
        return getNodeColor(s.d[s.col], s.col);
    }
    render() {
        const { classes, data } = this.props;
        const { gr, gc } = data.length <= 20 ?
            { gr: 'gridRow', gc: 'gridCell' } :
            { gr: 'smallGridRow', gc: 'smallGridCell' };
        return (
            <div className={`grid ${gr} ${gc}`}>
            {
                data.map((row, i) => (
                    <div key={i}>
                    {
                        row.map((cell, j) => (
                            <div key={j}
                                style={{backgroundColor: Grid.getColor(cell)}}>
                            </div>
                        ))
                    }
                    </div>
                ))
            }
            </div>
        );
    }
}

export default withStyles(styles)(Grid);