aboutsummaryrefslogtreecommitdiff
path: root/pages/settings.tsx
blob: 0574b8eb47e732fe537c1737f8b543eccd7f9146 (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
196
197
198
199
200
201
202
import axios from 'axios';
import reduce from 'image-blob-reduce';
import { useContext, useEffect, useState } from 'react';
import * as cookie from 'react-cookies';

import { AccountAvatar } from '../components/account';
import { Footer } from '../components/footer';
import { CurrentGameSettings } from '../components/gameSettings';
import { NavBar } from '../components/navbar';
import { CenteredPage, PageTitle } from '../components/page';
import PreferencesContext from '../components/preferencesContext';
import ThemePicker from '../components/themes';
import { CheckBox, ColorPicker, IconLabelButton, Vierkant, Input, Button } from '../components/ui';
import { userInfo } from '../api/api';
import { DialogBox } from '../components/dialogBox';

import EditOutlinedIcon from '@material-ui/icons/EditOutlined';
import PublishOutlinedIcon from '@material-ui/icons/PublishOutlined';
import VisibilityOutlinedIcon from '@material-ui/icons/VisibilityOutlined';

async function uploadNewProfileImage() {
	if (!this.result) return;

	var result = this.result.split(';');
	var mimeType = result[0].substr(5);

	if (!['image/png', 'image/jpeg'].includes(mimeType)) return;

	var blob = await (await fetch(this.result)).blob();

	var image = await new reduce().toBlob(blob, { max: 256 });
	var reader = new FileReader();

	reader.readAsBinaryString(image);
	reader.onload = async () => {
		await axios.request({
			method: 'post',
			url: `/api/user/avatar`,
			headers: { 'content-type': 'image/png' },
			data: btoa(reader.result as string),
		});
		window.location.reload(); // TODO: this is straight garbage
	};
}

function EditImportantThingDialog(props: {
	thing: "username" | "email";
	hidden?: boolean;
	setHidden?: () => void;
}) {
	var lang = {
		"username": {
			name: "Gebruikersnaam",
			new: "Nieuwe gebruikersnaam",
		},
		"email": {
			name: "Email",
			new: "Nieuw email-adres",
		},
	}[props.thing]
	var title = lang.name + " aanpassen"
	return !props.hidden && <DialogBox title={title} onclick={props.setHidden}>
		<Input className="bg-900 pad-m fullwidth round-t" label={lang.new} id="newThing" autocomplete="off"/>
		<div className="pad-s"></div>
		<Input className="bg-900 pad-m fullwidth round-t" label="Huidig wachtwoord" id="currentPassword" type="password" autocomplete="current-password"/>
		<div className="pad-m"></div>
		<Button text={title} onclick={() => {
			var data = {
				password: (document.getElementById("currentPassword") as HTMLInputElement).value
			}
			data[props.thing] = (document.getElementById("newThing") as HTMLInputElement).value
			axios.request({
				method: "post",
				url: "/api/user/" + props.thing,
				headers: { 'content-type': 'application/json' },
				data
			}).then(() => {
				window.location.reload()
			})
			props.setHidden();
		}}/>
	</DialogBox>
}

export default function SettingsPage() {
	useEffect(() => {
		var loggedIn = !!cookie.load('token');
		if (!loggedIn) window.location.href = '/';
	}, []);

	var { preferences, updatePreference } = useContext(PreferencesContext);

	var [ userInfo, setUserInfo ] = useState<userInfo>();
	var [ emailVisible, setEmailVisible ] = useState(false);

	var [ editUsernameDiagVisisble, setEditUsernameDiagVisisble ] = useState(false);
	var [ editEmailDiagVisisble, setEditEmailDiagVisisble ] = useState(false);

	useEffect(() => {
		axios.request<userInfo>({
			url: `/api/user/info`
		}).then(req => {
			setUserInfo(req.data);
		}).catch(err => {
			console.error(err)
		})
	}, []);

	return (
		<div>
			<NavBar />
			<CenteredPage width={802}>
				<PageTitle>Instellingen</PageTitle>
				<Vierkant className='section account w100m2m pad-l bg-800'>
					<h2>Account</h2>
					<div className='subsection'>
						<AccountAvatar size={100} />
						<label htmlFor='pfUpload'>
							<IconLabelButton text='Nieuwe profielfoto uploaden' icon={<PublishOutlinedIcon />} />
						</label>
						<input
							type='file'
							id='pfUpload'
							accept='.png,.jpg,.jpeg'
							className='dispnone'
							onChange={event => {
								var file = event.target.files[0];
								if (!file) return;

								var reader = new FileReader();
								reader.onload = uploadNewProfileImage;
								reader.readAsDataURL(file);
							}}
						/>
					</div>
					<div className='subsection'>
						<EditImportantThingDialog thing="username" hidden={!editUsernameDiagVisisble} setHidden={() => setEditUsernameDiagVisisble(false)}/>
						<IconLabelButton text='Bewerken' icon={<EditOutlinedIcon />} onclick={() => setEditUsernameDiagVisisble(true)} />
						<div className='dispbl'>
							<h3>Gebruikersnaam</h3>
							<p>{ userInfo?.username }</p>
						</div>
					</div>
					<div className='subsection'>
					<EditImportantThingDialog thing="email" hidden={!editEmailDiagVisisble} setHidden={() => setEditEmailDiagVisisble(false)}/>
						<IconLabelButton text='Bewerken' icon={<EditOutlinedIcon />} onclick={() => setEditEmailDiagVisisble(true)} />
						{ emailVisible ?
							<IconLabelButton text='Verbergen' icon={<VisibilityOutlinedIcon />} onclick={() => setEmailVisible(!emailVisible)} /> :
							<IconLabelButton text='Onthullen' icon={<VisibilityOutlinedIcon />} onclick={() => setEmailVisible(!emailVisible)} />
						}
						<div className='dispbl'>
							<h3>Email</h3>
							<p>{ (() => {
								var email = userInfo?.email;
								if (email && !emailVisible) email = email.replace(/.+?(?=@)/, "************")
								return email
								 })() }</p>
						</div>
					</div>
					{false && <>
						<div className='subsection'>
							<IconLabelButton text='Bewerken' icon={<EditOutlinedIcon />} />
							<div className='dispbl'>
								<h3>Wachtwoord</h3>
							</div>
						</div>
					</>}
				</Vierkant>
				<Vierkant className='section colors w100m2m pad-l bg-800'>
					<h2>Kleuren</h2>
					{false && <div className='subsection'>
						<ColorPicker />
						<ColorPicker />
						<div className='dispbl'>
							<h3>Schijfjes</h3>
						</div>
					</div>}
					<div className='subsection'>
						<div className='floatr'>
							<CheckBox
								state={preferences?.darkMode}
								onclick={state => updatePreference({ 'darkMode': state })}
							/>
						</div>
						<h3>Donkere modus</h3>
					</div>
					<div className='subsection'>
						<h3>Thema's (WIP)</h3>
						<ThemePicker preferences={preferences} />
					</div>
				</Vierkant>
				<Vierkant className='section gamerules w100m2m pad-l bg-800'>
					<h2>Standaard spelregels</h2>
					<div className='subsection'>
						<CurrentGameSettings />
					</div>
				</Vierkant>
			</CenteredPage>
			<Footer />
		</div>
	);
}