aboutsummaryrefslogtreecommitdiff
path: root/components/gameBar.tsx
diff options
context:
space:
mode:
authorLoek Le Blansch <32883851+lonkaars@users.noreply.github.com>2021-01-31 14:33:50 +0100
committerGitHub <noreply@github.com>2021-01-31 14:33:50 +0100
commit75255cd0085e4d7457a7af45e6192c6cfaf5e6e5 (patch)
treef3dd2503199729941355b662f3799b67e06f2485 /components/gameBar.tsx
parentcd876e0e3000855cf407eee86b9a4d46e8875d91 (diff)
parent8de79c8869b254992e5c6df391c5ebd1e1da2f1a (diff)
Merge pull request #2 from lonkaars/nextjs
move from react routing thingy to next.js
Diffstat (limited to 'components/gameBar.tsx')
-rw-r--r--components/gameBar.tsx88
1 files changed, 88 insertions, 0 deletions
diff --git a/components/gameBar.tsx b/components/gameBar.tsx
new file mode 100644
index 0000000..53eda88
--- /dev/null
+++ b/components/gameBar.tsx
@@ -0,0 +1,88 @@
+import { CSSProperties, ReactNode } from 'react';
+import { Vierkant } from './ui';
+
+import SettingsRoundedIcon from '@material-ui/icons/SettingsRounded';
+import ExitToAppRoundedIcon from '@material-ui/icons/ExitToAppRounded';
+import NavigateNextRoundedIcon from '@material-ui/icons/NavigateNextRounded';
+import NavigateBeforeRoundedIcon from '@material-ui/icons/NavigateBeforeRounded';
+
+interface GameBarModuleProps {
+ children?: ReactNode;
+}
+
+function GameBarModule(props: GameBarModuleProps) {
+ return <Vierkant style={{
+ backgroundColor: "var(--background-alt)",
+ padding: 12,
+ borderRadius: 6,
+ margin: 0,
+ verticalAlign: "top"
+ }}>{props.children}</Vierkant>
+}
+
+var GameBarSpacer = () => <div style={{ width: 8, display: "inline-block" }}></div>;
+
+var GameBarAlignStyle: CSSProperties = {
+ display: "inline-block"
+}
+
+export function GameBar() {
+ return <Vierkant className="gameBar" style={{
+ padding: 8,
+ width: "calc(100% - 12px)"
+ }}>
+ <div style={{ gridAutoColumns: "auto" }}>
+ <div style={{ ...GameBarAlignStyle, float: "left" }}>
+ <div style={{
+ width: 32, height: 32,
+ margin: 8,
+ backgroundColor: "var(--disk-b)",
+ borderRadius: 16,
+ display: "inline-block"
+ }}/>
+ <h2 style={{
+ fontSize: 20,
+ margin: 12,
+ verticalAlign: "top",
+ display: "inline-block"
+ }}>Tegenstander</h2>
+ </div>
+ <div style={{
+ ...GameBarAlignStyle,
+ position: "absolute",
+ top: "50%", left: "50%",
+ transform: "translate(-50%, -50%)"
+ }}>
+ <span style={{
+ color: "var(--text)",
+ fontSize: 20,
+ opacity: .75
+ }}>0-0</span>
+ </div>
+ <div style={{ ...GameBarAlignStyle, float: "right" }}>
+ <GameBarModule>
+ <SettingsRoundedIcon/>
+ </GameBarModule>
+ <GameBarSpacer/>
+ <GameBarModule>
+ <span style={{
+ margin: "0 4px",
+ fontSize: 20
+ }}>00:00</span>
+ </GameBarModule>
+ <GameBarSpacer/>
+ <GameBarModule>
+ <ExitToAppRoundedIcon/>
+ </GameBarModule>
+ <GameBarSpacer/>
+ <GameBarModule>
+ <NavigateBeforeRoundedIcon/>
+ </GameBarModule>
+ <GameBarSpacer/>
+ <GameBarModule>
+ <NavigateNextRoundedIcon/>
+ </GameBarModule>
+ </div>
+ </div>
+ </Vierkant>;
+}