aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene <eug-vs@keemail.me>2020-01-02 18:40:11 +0000
committerGitHub <noreply@github.com>2020-01-02 18:40:11 +0000
commit6bc5060db0f87a767a3caa2be6cf68d243b8d70f (patch)
tree897f94f10f6bf2289b191bc89679e7c18ef14424
parent88475b18f12e16fe32130a9e52ff6fe4297f5ba3 (diff)
parent7c4e13d11bc2fc5b0f03efc959dd551a30565e8a (diff)
downloadchrono-cube-ui-6bc5060db0f87a767a3caa2be6cf68d243b8d70f.tar.gz
Merge pull request #13 from Eug-VS/scoreboard
Implement Scoreboard functionality
-rw-r--r--src/components/Scoreboard/Scoreboard.js28
-rw-r--r--src/components/Scoreboard/Solution.js32
-rw-r--r--src/index.js28
3 files changed, 83 insertions, 5 deletions
diff --git a/src/components/Scoreboard/Scoreboard.js b/src/components/Scoreboard/Scoreboard.js
new file mode 100644
index 0000000..1ebca90
--- /dev/null
+++ b/src/components/Scoreboard/Scoreboard.js
@@ -0,0 +1,28 @@
+import React, {useEffect, useState} from 'react';
+
+
+import { get } from "../../requests";
+import Solution from "./Solution";
+
+
+const Scoreboard = () => {
+ const [solutions, setSolutions] = useState([]);
+
+ const updateSolutions = async () => {
+ const response = await get('solutions/');
+ await setSolutions(response.data);
+ };
+
+ useEffect(() => {
+ updateSolutions();
+ }, []);
+
+
+ return (
+ <div>
+ { solutions.map(solution => <Solution solution={solution}/>) }
+ </div>
+ );
+};
+
+export default Scoreboard; \ No newline at end of file
diff --git a/src/components/Scoreboard/Solution.js b/src/components/Scoreboard/Solution.js
new file mode 100644
index 0000000..3f46eb5
--- /dev/null
+++ b/src/components/Scoreboard/Solution.js
@@ -0,0 +1,32 @@
+import React from 'react';
+
+import {
+ Card,
+ CardContent,
+ Typography,
+ Paper,
+} from "@material-ui/core";
+
+import styled from "styled-components";
+
+const Solution = ({ solution }) => {
+
+ const author = solution.author? solution.author : 'anonymous';
+ return (
+ <PaperWrapper elevation={2} style={{backgroundColor: "#ddbea3"}}>
+ <Typography variant="h4" style={{fontWeight: "bold"}}>
+ { solution.result }
+ </Typography>
+ <Typography>
+ by {author}
+ </Typography>
+ </PaperWrapper>
+ )
+};
+
+const PaperWrapper = styled(Card)`
+ padding: 10px;
+ margin: 25px;
+`;
+
+export default Solution; \ No newline at end of file
diff --git a/src/index.js b/src/index.js
index 5c657f9..38a79a6 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,10 +1,17 @@
import React, { useState } from 'react';
import ReactDOM from 'react-dom';
+import {
+ Typography,
+ Paper,
+ Container,
+} from "@material-ui/core";
+
import styled from 'styled-components';
import CssBaseline from '@material-ui/core/CssBaseline'
import Header from './components/Header/Header';
+import Scoreboard from "./components/Scoreboard/Scoreboard";
const App = () => {
@@ -15,11 +22,22 @@ const App = () => {
<Root>
<CssBaseline/>
<Header setPage={setPage} />
- <h1> This is the {page} page! </h1>
- <p>
- This text is rendered outside of <code>Header</code> component, but
- interacting with <code>Header</code> can influence content of this page!
- </p>
+ <Container maxWidth="xl">
+ <Paper elevation={4} style={{backgroundColor: "bisque"}}>
+ <Typography variant="h4"> This is the {page} page! </Typography>
+ {
+ (page === 'scoreboard')?
+ (<Scoreboard/>)
+ :
+ (
+ <p>
+ This text is rendered outside of <code>Header</code> component, but
+ interacting with <code>Header</code> can influence content of this page!
+ </p>
+ )
+ }
+ </Paper>
+ </Container>
</Root>
);
};