-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·171 lines (165 loc) · 4.36 KB
/
index.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl">
<head>
<title>KontestGra</title>
<style>
html {
background: cornsilk;
color: black;
}
body > h1 {
display: table;
margin: 1ex auto;
background: linear-gradient(20deg, red, gold, red, gold, red);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font: 900 5ex sans-serif;
}
fieldset {
float: right;
background: lightgrey;
}
details {
margin-top: 1ex;
}
details > * + * {
display: table-row;
}
legend {
display: block;
margin: auto;
background: gainsboro;
font-weight: bold;
}
#status {
font-weight: bold;
text-decoration: underline;
}
#question {
max-width: 777px;
}
#success p, #finish {
font: oblique x-large Desdemona, "Comic Sans MS", fantasy;
}
</style>
<script>
<![CDATA[
"use strict"
const
$ = document.getElementById.bind(document),
statuses = ["niezalogowany", "zalogowany"]
let logged = false
this.onload = play
function setLogin(v) {
logged = v
$("status").textContent = statuses[+v]
$("continue").disabled = !v
}
async function remoteCall(fn, flags) {
const body = new FormData(document.forms[0])
for (const [k, v] of Object.entries(flags)) if (v) body.set(k, 1)
console.log(fn, flags, [...body.entries()])
return (await fetch("endpoint/" + fn, {method: "POST", body})).json()
}
async function login(signup) {
if (!$("user").value || !$("pass").value)
return alert("Nazwa użytkownika i hasło muszą być wypełnione!")
$("log").hidden = true
try {
if (await remoteCall("login", {signup})) {
setLogin(true)
$("logout").hidden = false
await play()
}
else {
$("log").hidden = false
alert(signup ?
"Użytkownika o takiej nazwie nie można zarejestrować, bo już istnieje!"
: "Nieprawidłowa nazwa użytkownika lub hasło!")
}
}
catch {
$("log").hidden = false
alert("Wystąpił błąd!")
}
}
function log_out() {
setLogin(false)
$("log").hidden = false
$("user").value = $("pass").value = ""
for (const id of ["logout", "quiz", "success", "failure", "finish"])
$(id).hidden = true
}
async function play() {
$("success").hidden = true
try {
const [{text} = {}] = await remoteCall("getQuestion", {logged}) || []
if (text >= "") {
$("question").innerHTML = text
$("answer").value = ""
$("quiz").hidden = false
}
else {
$("quiz").hidden = true
$("finish").hidden = false
}
}
//catch { alert("Wystąpił błąd!") }
catch(e) { alert("Wystąpił błąd! " + e) }
finally { $("send").disabled = false }
}
async function attempt() {
try {
const {closest} = await remoteCall("attempt", {logged})
if ($("failure").hidden = closest != null) {
$("send").disabled = true
$("correct").textContent = closest
$("success").hidden = false
if (!logged) {
alert("Zaloguj się, aby móc kontynuować grę.")
$("log").open = true
}
}
}
catch { alert("Wystąpił błąd!") }
}
]]>
</script>
</head>
<body>
<h1>Witaj w KontestGrze! Have fun!</h1>
<form onsubmit="event.preventDefault()">
<!--Only one game for now, but prepare for more.-->
<input type="hidden" name="game" value="1"/>
<fieldset>
<legend>Rejestracja i logowanie</legend>
Status: <span id="status">niezalogowany</span>
<details id="log">
<summary>Opcje logowania</summary>
<label>Nazwa użytkownika: <input id="user" name="user"/></label>
<label>Hasło: <input type="password" id="pass" name="pass"/></label>
<button type="button" onclick="login()">Zaloguj</button>
<button type="button" onclick="login(true)">Zarejestruj i zaloguj</button>
</details>
<button type="button" id="logout" onclick="log_out()" hidden="">Wyloguj</button>
</fieldset>
<section id="quiz" hidden="">
<h1 id="question"/>
<label>
Twoja odpowiedź:
<input id="answer" name="answer"/>
</label>
<button type="button" id="send" onclick="attempt()">Wyślij odpowiedź</button>
</section>
<section>
<div id="success" hidden="">
<p>Wyzwanie zaliczone, gratulujemy! Prawidłowa odpowiedź to: <b id="correct"/></p>
<button type="button" id="continue" onclick="play()" disabled="">Kontynuuj grę</button>
</div>
<div id="failure" hidden="">Odpowiedź nieprawidłowa. Spróbuj jeszcze raz!</div>
<div id="finish" hidden="">Przeszedłeś całą grę! Jesteś zwycięzcą! Spraw sobie fajną nagrodę, a z nami się podziel 😁</div>
</section>
</form>
</body>
</html>