blob: 335c06bd6b246be8af26bca1df4c7322a2bfe886 (
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
|
import React, { useEffect, useState } from 'react';
import { makeStyles } from '@material-ui/core/styles';
import { get } from '../../requests';
import SmartList from '../../components/SmartList/SmartList';
import SolutionCard from '../../components/SolutionCard/SolutionCard';
import Loading from '../../components/Loading/Loading';
import Window from '../../components/Window/Window';
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 => {
setSolutions(response.data);
});
};
const removeSolution = id => {
updateSolutions();
};
useEffect(() => {
setTimeout(updateSolutions, 300);
}, []);
const renderItem = ({ 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;
|