aboutsummaryrefslogtreecommitdiff
path: root/src/components/Scoreboard/Scoreboard.js
blob: a101a5b1a6f656c67fe8eba896d01afc6f066cea (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
import React, { useEffect, useState } from 'react';

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

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

import SmartList from "../SmartList/SmartList";
import SolutionCard from "../SolutionCard/SolutionCard";
import Loading from "../Loading/Loading";


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

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

const Scoreboard = () => {
  const classes = useStyles();
  const [solutions, setSolutions] = useState([]);

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

  const removeSolution = (id) => {
    setSolutions(solutions.filter((solution => solution.id !== id)));
  };

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

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


  return (solutions.length === 0) ?
    <div className={classes.cell}>
      <Loading/>
    </div>
    :
    <SmartList
      cellHeight={300}
      itemCount={solutions.length}
      renderItem={renderItem}
    />
};


export default Scoreboard;