aboutsummaryrefslogtreecommitdiff
path: root/src/pages/Scoreboard/Scoreboard.tsx
blob: c6826d2faaa8051f6183c5fcedfb5994557f818a (plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import React, { useEffect, useState } from 'react';

import { makeStyles } from '@material-ui/core/styles';

import { Window, SmartList } from 'react-benzin';
import { Solution } from '../../types';

import SolutionCard from '../../components/SolutionCard/SolutionCard';
import Loading from '../../components/Loading/Loading';

import { get } from '../../requests';


const useStyles = makeStyles(theme => ({
  cell: {
    display: 'flex',
    justifyContent: 'center',
    padding: theme.spacing(4),

    '& .MuiCard-root': {
      width: '30%',
    }
  }
}));


interface RenderPropTypes {
  index: number;
  style: React.CSSProperties;
}


const Scoreboard: React.FC = () => {
  const classes = useStyles();
  const [solutions, setSolutions] = useState<Solution[]>([]);

  const updateSolutions = () => {
    get('scoreboard/').then(response => {
        setSolutions(response.data);
    });
  };

  const removeSolution = (id: number) => {
    updateSolutions();
  };

  useEffect(() => {
    setTimeout(updateSolutions, 300);
  }, []);

  const renderItem: React.FC<RenderPropTypes> = ({ index, style }) => {
    return (
      <div style={style} className={classes.cell}>
        <SolutionCard data={solutions[index]} removeThisCard={removeSolution}/>
      </div>
    )
  };

  return (
    <Window type="mono">
      { solutions.length === 0 &&
      <div className={classes.cell}>
        <Loading/>
      </div>
      }
      <SmartList
        itemSize={300}
        itemCount={solutions.length}
        renderItem={renderItem}
      />
    </Window>
  )
};


export default Scoreboard;