aboutsummaryrefslogtreecommitdiff
path: root/src/pages/home.tsx
blob: f29884624ec7868b1f46618c94484838f8238c2e (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
import { CSSProperties, Component } from 'react';
import axios from 'axios';
import { userInfo } from '../api';

import { NavBar } from '../components/navbar';
import { CenteredPage, PageTitle } from '../components/page';
import { Vierkant, Button } from '../components/ui';
import { AccountAvatar } from '../components/account';
import { ToastArea, Toast } from '../components/toast';

import VideogameAssetIcon from '@material-ui/icons/VideogameAsset';
import ExtensionIcon from '@material-ui/icons/Extension';

import Icon from '@mdi/react';
import { mdiRobotExcited } from '@mdi/js';

var GameModeIconStyle: CSSProperties = {
	fontSize: 64,
	width: 64,
	height: 64,
	display: "inline-block",
	position: "absolute",
	top: 24,
	left: "50%",
	transform: "translateX(-50%)"
}

var GameModeTextStyle: CSSProperties = {
	whiteSpace: "nowrap",
	display: "inline-block",
	position: "absolute",
	bottom: 24,
	left: "50%",
	transform: "translateX(-50%)",
	userSelect: "none",
	fontWeight: 500
}

var SquareSize: CSSProperties = {
	width: 90,
	height: 90
}

var LeftAlignedTableColumn: CSSProperties = {
	textAlign: "left",
	paddingLeft: 16
}

var RightAlignedTableColumn: CSSProperties = {
	textAlign: "right",
	paddingRight: 16
}

export default class HomePage extends Component {
	state: {
		info: userInfo,
		loggedIn: boolean
	} = {
		info: {},
		loggedIn: document.cookie.includes("token")
	}
	
	getUserInfo () {
		axios.request<userInfo>({
			method: "get",
			url: `${window.location.origin}/api/user/info`,
			headers: {"content-type": "application/json"}
		})
		.then(request => this.setState({ info: request.data }))
		.catch(console.log);
	}

	constructor(props: {}) {
		super(props);

		if(this.state.loggedIn) this.getUserInfo()
	}

	render () {
		return <div>
			<NavBar/>
			<ToastArea>
				<Toast text="Gert" icon={<VideogameAssetIcon style={{ fontSize: 32 }}/>}/>
				<Toast text="Gert"/>
			</ToastArea>
			<CenteredPage width={802}>
				<PageTitle>4 op een rij</PageTitle>
				<Vierkant href="/game">
					<VideogameAssetIcon style={GameModeIconStyle}/>
					<span style={GameModeTextStyle}>Nieuw spel</span>
					<div style={SquareSize}></div>
				</Vierkant>
				<Vierkant href="/">
					<ExtensionIcon style={GameModeIconStyle}/>
					<span style={GameModeTextStyle}>Puzzels</span>
					<div style={SquareSize}></div>
				</Vierkant>
				<Vierkant href="/">
					<Icon path={mdiRobotExcited} style={GameModeIconStyle}/>
					<span style={GameModeTextStyle}>Tegen computer</span>
					<div style={SquareSize}></div>
				</Vierkant>
				<Vierkant href={ this.state.loggedIn ? "/account" : undefined } style={{ verticalAlign: "top" }}>
					<div style={{
						position: "relative",
						width: 280,
						height: 90,
						textAlign: "center",
						display: this.state.loggedIn ? "none" : "inline-block"
					}}>
						<span style={{
							userSelect: "none",
							display: "inline-block",
							position: "absolute",
							left: 0, right: 0, top: 0
						}}>Log in of maak een account aan om je scores op te slaan en toegang te krijgen tot meer functies</span>
						<div style={{
							display: "grid",
							gridGap: 24,
							gridTemplateColumns: "1fr 1fr",
							position: "absolute",
							left: 0, right: 0, bottom: 0
						}}>
							<Button href="/register" text="Registreren" style={{ backgroundColor: "var(--background-alt)" }}/>
							<Button href="/login" text="Inloggen"/>
						</div>
					</div>
					<div style={{
						position: "relative",
						width: 280,
						height: 90,
						display: this.state.loggedIn ? "inline-block" : "none"
					}}>
						<div style={{
							position: "absolute",
							top: 0, left: 0,
							...SquareSize
						}}>
							<AccountAvatar size={90} image="url(https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fblogs.agu.org%2Fwildwildscience%2Ffiles%2F2017%2F09%2FCapture-1.png&f=1&nofb=1)"/>
						</div>
						<div style={{
							position: "absolute",
							top: 0, left: 102,
							width: 178, height: 90
						}}>
							<h2 style={{
								maxWidth: 178,
								fontSize: 20,
								whiteSpace: "nowrap",
								overflow: "hidden",
								textOverflow: "ellipsis",
							}}>{this.state.info.username}</h2>
							<p style={{ marginTop: 6 }}>Score: 400</p>
							<p style={{ position: "absolute", bottom: 0, left: 0 }}>
								<span style={{ color: "var(--disk-b-text)" }}>0 W</span>
								<span style={{ margin: "0 3px" }}>/</span>
								<span style={{ color: "var(--disk-a-text)" }}>0 V</span>
								<span style={{ margin: "0 3px" }}>/</span>
								<span style={{ opacity: .75 }}>0 G</span>
							</p>
						</div>
					</div>
				</Vierkant>
				<Vierkant width="calc(100% - 12px)" style={{ display: this.state.loggedIn ? "block" : "none" }}>
					<h2>Recente partijen</h2>
					<table width="100%" style={{ marginTop: "16px", textAlign: "center" }}>
						<tr>
							<th style={{ width: "50%" }}>Tegenstander</th>
							<th style={{ width: "20%" }}>Uitkomst</th>
							<th style={{ width: "15%" }}>Zetten</th>
							<th style={{ width: "15%" }}>Datum</th>
						</tr>
						<tr>
							<td style={LeftAlignedTableColumn}>Naam hier</td>
							<td style={{ color: "var(--disk-b-text)" }}>Gewonnen</td>
							<td>7</td>
							<td style={RightAlignedTableColumn}>Vandaag</td>
						</tr>
						<tr>
							<td style={LeftAlignedTableColumn}>Nog meer namen</td>
							<td style={{ opacity: .6 }}>Gelijkspel</td>
							<td>42</td>
							<td style={RightAlignedTableColumn}>Gisteren</td>
						</tr>
					</table>
				</Vierkant>
				<Vierkant width="calc(100% - 12px)">
					<h2>Nieuws ofzo</h2>
					<p style={{ margin: "6px 0" }}>Chess.com heeft heel veel troep waar niemand naar kijkt</p>
				</Vierkant>
			</CenteredPage>
		</div>
	}
}