Commit | Line | Data |
---|---|---|
ccd4a2b7 | 1 | <template lang="pug"> |
9d58ef95 | 2 | main |
dce792f6 | 3 | input#modalInfo.modal(type="checkbox") |
910d631b BA |
4 | div#infoDiv( |
5 | role="dialog" | |
6 | data-checkbox="modalInfo" | |
7 | ) | |
a154d45e | 8 | .card.text-center |
dce792f6 | 9 | label.modal-close(for="modalInfo") |
a154d45e | 10 | p(v-html="infoMessage") |
725da57f BA |
11 | input#modalAccept.modal(type="checkbox") |
12 | div#acceptDiv(role="dialog") | |
13 | .card.text-center | |
14 | p | |
15 | span.variantName {{ curChallToAccept.vname }} | |
16 | span {{ curChallToAccept.cadence }} | |
17 | span {{ st.tr["with"] + " " + curChallToAccept.from.name }} | |
18 | .diagram(v-html="tchallDiag") | |
19 | .button-group#buttonsTchall | |
20 | button.acceptBtn(@click="decisionChallenge(true)") {{ st.tr["Accept challenge?"] }} | |
21 | button.refuseBtn(@click="decisionChallenge(false)") {{ st.tr["Refuse"] }} | |
09d37571 BA |
22 | input#modalNewgame.modal( |
23 | type="checkbox" | |
24 | @change="cadenceFocusIfOpened($event)" | |
25 | ) | |
910d631b BA |
26 | div#newgameDiv( |
27 | role="dialog" | |
28 | data-checkbox="modalNewgame" | |
29 | ) | |
89021f18 | 30 | .card |
5b020e73 | 31 | label#closeNewgame.modal-close(for="modalNewgame") |
725da57f | 32 | div(@keyup.enter="newChallenge()") |
89021f18 BA |
33 | fieldset |
34 | label(for="selectVariant") {{ st.tr["Variant"] }} * | |
725da57f BA |
35 | select#selectVariant( |
36 | @change="loadNewchallVariant(trySetNewchallDiag)" | |
37 | v-model="newchallenge.vid" | |
38 | ) | |
910d631b BA |
39 | option( |
40 | v-for="v in st.variants" | |
41 | :value="v.id" | |
42 | :selected="newchallenge.vid==v.id" | |
43 | ) | |
89021f18 BA |
44 | | {{ v.name }} |
45 | fieldset | |
46 | label(for="cadence") {{ st.tr["Cadence"] }} * | |
47 | div#predefinedCadences | |
8477e53d | 48 | button(type="button") 15+5 |
8aa418f6 | 49 | button(type="button") 45+30 |
92240cf0 BA |
50 | button(type="button") 3d |
51 | button(type="button") 7d | |
910d631b BA |
52 | input#cadence( |
53 | type="text" | |
54 | v-model="newchallenge.cadence" | |
92240cf0 | 55 | placeholder="5+0, 1h+30s, 5d ..." |
910d631b | 56 | ) |
7ba4a5bc | 57 | fieldset |
b5aa30b5 | 58 | label(for="selectRandomLevel") {{ st.tr["Randomness"] }} * |
7ba4a5bc BA |
59 | select#selectRandomLevel(v-model="newchallenge.randomness") |
60 | option(value="0") {{ st.tr["Deterministic"] }} | |
61 | option(value="1") {{ st.tr["Symmetric random"] }} | |
62 | option(value="2") {{ st.tr["Asymmetric random"] }} | |
89021f18 BA |
63 | fieldset(v-if="st.user.id > 0") |
64 | label(for="selectPlayers") {{ st.tr["Play with?"] }} | |
910d631b BA |
65 | input#selectPlayers( |
66 | type="text" | |
67 | v-model="newchallenge.to" | |
68 | ) | |
89021f18 | 69 | fieldset(v-if="st.user.id > 0 && newchallenge.to.length > 0") |
910d631b | 70 | input#inputFen( |
725da57f BA |
71 | placeholder="FEN" |
72 | @input="trySetNewchallDiag()" | |
910d631b BA |
73 | type="text" |
74 | v-model="newchallenge.fen" | |
75 | ) | |
725da57f | 76 | .diagram(v-html="newchallenge.diag") |
9ddaf8da | 77 | button(@click="newChallenge()") {{ st.tr["Send challenge"] }} |
910d631b BA |
78 | input#modalPeople.modal( |
79 | type="checkbox" | |
efdfb4c7 | 80 | @click="resetSocialColor()" |
910d631b BA |
81 | ) |
82 | div#peopleWrap( | |
83 | role="dialog" | |
84 | data-checkbox="modalPeople" | |
85 | ) | |
bd76b456 BA |
86 | .card |
87 | label.modal-close(for="modalPeople") | |
88 | #people | |
89 | #players | |
910d631b BA |
90 | p( |
91 | v-for="sid in Object.keys(people)" | |
efdfb4c7 | 92 | v-if="people[sid].name" |
910d631b | 93 | ) |
bd76b456 | 94 | span {{ people[sid].name }} |
910d631b | 95 | button.player-action( |
6d6f45bc BA |
96 | v-if="isGamer(sid)" |
97 | @click="watchGame(sid)" | |
910d631b | 98 | ) |
6d6f45bc BA |
99 | | {{ st.tr["Observe"] }} |
100 | button.player-action( | |
101 | v-else-if="st.user.id > 0 && sid!=st.user.sid" | |
102 | @click="challenge(sid)" | |
103 | ) | |
104 | | {{ st.tr["Challenge"] }} | |
bd76b456 BA |
105 | p.anonymous @nonymous ({{ anonymousCount }}) |
106 | #chat | |
910d631b BA |
107 | Chat( |
108 | :newChat="newChat" | |
109 | @mychat="processChat" | |
110 | :pastChats="[]" | |
111 | ) | |
bd76b456 | 112 | .clearer |
9d58ef95 | 113 | .row |
bd76b456 BA |
114 | .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 |
115 | .button-group | |
910d631b | 116 | button#peopleBtn(onClick="window.doClick('modalPeople')") |
8a0f881d | 117 | | {{ st.tr["Who's there?"] }} |
910d631b BA |
118 | button(onClick="window.doClick('modalNewgame')") |
119 | | {{ st.tr["New game"] }} | |
9d58ef95 | 120 | .row |
9ca1e26b | 121 | .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 |
2f258c37 | 122 | div#div2 |
ed06d9e9 | 123 | .button-group |
2f258c37 | 124 | button.tabbtn#btnClive(@click="setDisplay('c','live',$event)") |
602d6bef | 125 | | {{ st.tr["Live challenges"] }} |
2f258c37 | 126 | button.tabbtn#btnCcorr(@click="setDisplay('c','corr',$event)") |
602d6bef | 127 | | {{ st.tr["Correspondance challenges"] }} |
910d631b BA |
128 | ChallengeList( |
129 | v-show="cdisplay=='live'" | |
130 | :challenges="filterChallenges('live')" | |
131 | @click-challenge="clickChallenge" | |
132 | ) | |
133 | ChallengeList( | |
134 | v-show="cdisplay=='corr'" | |
135 | :challenges="filterChallenges('corr')" | |
136 | @click-challenge="clickChallenge" | |
137 | ) | |
2f258c37 | 138 | div#div3 |
ed06d9e9 | 139 | .button-group |
2f258c37 | 140 | button.tabbtn#btnGlive(@click="setDisplay('g','live',$event)") |
602d6bef | 141 | | {{ st.tr["Live games"] }} |
2f258c37 | 142 | button.tabbtn#btnGcorr(@click="setDisplay('g','corr',$event)") |
602d6bef | 143 | | {{ st.tr["Correspondance games"] }} |
910d631b BA |
144 | GameList( |
145 | v-show="gdisplay=='live'" | |
146 | :games="filterGames('live')" | |
147 | :showBoth="true" | |
148 | @show-game="showGame" | |
149 | ) | |
150 | GameList( | |
151 | v-show="gdisplay=='corr'" | |
152 | :games="filterGames('corr')" | |
153 | :showBoth="true" | |
154 | @show-game="showGame" | |
155 | ) | |
625022fd BA |
156 | </template> |
157 | ||
158 | <script> | |
5b020e73 | 159 | import { store } from "@/store"; |
9d58ef95 BA |
160 | import { checkChallenge } from "@/data/challengeCheck"; |
161 | import { ArrayFun } from "@/utils/array"; | |
03608482 | 162 | import { ajax } from "@/utils/ajax"; |
8418f0d7 | 163 | import params from "@/parameters"; |
4b0384fa | 164 | import { getRandString, shuffle } from "@/utils/alea"; |
725da57f | 165 | import { getDiagram } from "@/utils/printDiagram"; |
603b8a8b | 166 | import Chat from "@/components/Chat.vue"; |
5b020e73 BA |
167 | import GameList from "@/components/GameList.vue"; |
168 | import ChallengeList from "@/components/ChallengeList.vue"; | |
967a2686 | 169 | import { GameStorage } from "@/utils/gameStorage"; |
602d6bef | 170 | import { processModalClick } from "@/utils/modalClick"; |
625022fd | 171 | export default { |
cf2343ce | 172 | name: "my-hall", |
5b020e73 | 173 | components: { |
603b8a8b | 174 | Chat, |
5b020e73 | 175 | GameList, |
6808d7a1 | 176 | ChallengeList |
5b020e73 | 177 | }, |
6808d7a1 | 178 | data: function() { |
fb54f098 | 179 | return { |
5b020e73 | 180 | st: store.state, |
6855163c | 181 | cdisplay: "live", //or corr |
fb54f098 | 182 | gdisplay: "live", |
6855163c | 183 | games: [], |
b4d619d1 | 184 | challenges: [], |
71468011 | 185 | people: {}, |
3d55deea | 186 | infoMessage: "", |
9d58ef95 | 187 | newchallenge: { |
fb54f098 | 188 | fen: "", |
725da57f | 189 | vid: parseInt(localStorage.getItem("vid")) || 0, |
6fba6e0c | 190 | to: "", //name of challenged player (if any) |
725da57f | 191 | cadence: localStorage.getItem("cadence") || "", |
7ba4a5bc | 192 | randomness: parseInt(localStorage.getItem("randomness")) || 2, |
725da57f BA |
193 | // VariantRules object, stored to not interfere with |
194 | // diagrams of targetted challenges: | |
195 | V: null, | |
196 | vname: "", | |
197 | diag: "" //visualizing FEN | |
fb54f098 | 198 | }, |
725da57f BA |
199 | tchallDiag: "", |
200 | curChallToAccept: {from: {}}, | |
ac8f441c | 201 | newChat: "", |
8418f0d7 | 202 | conn: null, |
51d87b52 BA |
203 | connexionString: "", |
204 | // Related to (killing of) self multi-connects: | |
205 | newConnect: {}, | |
6808d7a1 | 206 | killed: {} |
fb54f098 BA |
207 | }; |
208 | }, | |
fd7aea36 BA |
209 | watch: { |
210 | // st.variants changes only once, at loading from [] to [...] | |
6808d7a1 | 211 | "st.variants": function() { |
fd7aea36 | 212 | // Set potential challenges and games variant names: |
71468011 | 213 | this.challenges.concat(this.games).forEach(o => { |
6808d7a1 | 214 | if (o.vname == "") o.vname = this.getVname(o.vid); |
fd7aea36 | 215 | }); |
725da57f BA |
216 | if (!this.newchallenge.V && this.newchallenge.vid > 0) |
217 | this.loadNewchallVariant(); | |
6808d7a1 | 218 | } |
fd7aea36 | 219 | }, |
b4d619d1 | 220 | computed: { |
ed06d9e9 BA |
221 | anonymousCount: function() { |
222 | let count = 0; | |
6808d7a1 | 223 | Object.values(this.people).forEach(p => { |
efdfb4c7 BA |
224 | // Do not cound people who did not send their identity yet: |
225 | count += (!p.name && p.id === 0) ? 1 : 0; | |
6808d7a1 | 226 | }); |
ed06d9e9 | 227 | return count; |
6808d7a1 | 228 | } |
b4d619d1 | 229 | }, |
9d58ef95 | 230 | created: function() { |
725da57f BA |
231 | if (this.st.variants.length > 0 && this.newchallenge.vid > 0) |
232 | this.loadNewchallVariant(); | |
66d03f23 | 233 | const my = this.st.user; |
6808d7a1 | 234 | this.$set(this.people, my.sid, { id: my.id, name: my.name, pages: ["/"] }); |
3d55deea BA |
235 | // Ask server for current corr games (all but mines) |
236 | ajax( | |
237 | "/games", | |
238 | "GET", | |
6808d7a1 | 239 | { uid: this.st.user.id, excluded: true }, |
3d55deea | 240 | response => { |
6808d7a1 BA |
241 | this.games = this.games.concat( |
242 | response.games.map(g => { | |
243 | const type = this.classifyObject(g); | |
244 | const vname = this.getVname(g.vid); | |
245 | return Object.assign({}, g, { type: type, vname: vname }); | |
246 | }) | |
247 | ); | |
3d55deea BA |
248 | } |
249 | ); | |
fe4c7e67 | 250 | // Also ask for corr challenges (open + sent by/to me) |
6808d7a1 BA |
251 | ajax("/challenges", "GET", { uid: this.st.user.id }, response => { |
252 | // Gather all senders names, and then retrieve full identity: | |
253 | // (TODO [perf]: some might be online...) | |
254 | let names = {}; | |
255 | response.challenges.forEach(c => { | |
256 | if (c.uid != this.st.user.id) names[c.uid] = ""; | |
0c4c3896 | 257 | else if (c.target && c.target != this.st.user.id) |
6808d7a1 BA |
258 | names[c.target] = ""; |
259 | }); | |
260 | const addChallenges = () => { | |
261 | names[this.st.user.id] = this.st.user.name; //in case of | |
262 | this.challenges = this.challenges.concat( | |
263 | response.challenges.map(c => { | |
264 | const from = { name: names[c.uid], id: c.uid }; //or just name | |
265 | const type = this.classifyObject(c); | |
266 | const vname = this.getVname(c.vid); | |
267 | return Object.assign( | |
268 | {}, | |
269 | { | |
270 | type: type, | |
271 | vname: vname, | |
272 | from: from, | |
273 | to: c.target ? names[c.target] : "" | |
274 | }, | |
275 | c | |
276 | ); | |
277 | }) | |
278 | ); | |
279 | }; | |
280 | if (Object.keys(names).length > 0) { | |
281 | ajax( | |
282 | "/users", | |
283 | "GET", | |
284 | { ids: Object.keys(names).join(",") }, | |
285 | response2 => { | |
286 | response2.users.forEach(u => { | |
287 | names[u.id] = u.name; | |
288 | }); | |
289 | addChallenges(); | |
290 | } | |
291 | ); | |
292 | } else addChallenges(); | |
293 | }); | |
71468011 BA |
294 | const connectAndPoll = () => { |
295 | this.send("connect"); | |
296 | this.send("pollclientsandgamers"); | |
4d64881e | 297 | }; |
8418f0d7 | 298 | // Initialize connection |
6808d7a1 BA |
299 | this.connexionString = |
300 | params.socketUrl + | |
301 | "/?sid=" + | |
302 | this.st.user.sid + | |
303 | "&tmpId=" + | |
304 | getRandString() + | |
305 | "&page=" + | |
306 | encodeURIComponent(this.$route.path); | |
51d87b52 | 307 | this.conn = new WebSocket(this.connexionString); |
71468011 | 308 | this.conn.onopen = connectAndPoll; |
8418f0d7 | 309 | this.conn.onmessage = this.socketMessageListener; |
51d87b52 | 310 | this.conn.onclose = this.socketCloseListener; |
9d58ef95 | 311 | }, |
25d18342 | 312 | mounted: function() { |
6808d7a1 | 313 | ["peopleWrap", "infoDiv", "newgameDiv"].forEach(eltName => { |
bd76b456 BA |
314 | let elt = document.getElementById(eltName); |
315 | elt.addEventListener("click", processModalClick); | |
316 | }); | |
6808d7a1 BA |
317 | document.querySelectorAll("#predefinedCadences > button").forEach(b => { |
318 | b.addEventListener("click", () => { | |
319 | this.newchallenge.cadence = b.innerHTML; | |
320 | }); | |
321 | }); | |
8a0f881d BA |
322 | const dispCorr = this.$route.query["disp"]; |
323 | const showCtype = | |
324 | dispCorr || localStorage.getItem("type-challenges") || "live"; | |
325 | const showGtype = | |
326 | dispCorr || localStorage.getItem("type-games") || "live"; | |
6808d7a1 BA |
327 | this.setDisplay("c", showCtype); |
328 | this.setDisplay("g", showGtype); | |
25d18342 | 329 | }, |
8418f0d7 | 330 | beforeDestroy: function() { |
71468011 | 331 | this.send("disconnect"); |
8418f0d7 | 332 | }, |
fb54f098 | 333 | methods: { |
a6bddfc6 | 334 | // Helpers: |
09d37571 BA |
335 | cadenceFocusIfOpened: function() { |
336 | if (event.target.checked) | |
337 | document.getElementById("cadence").focus(); | |
338 | }, | |
71468011 | 339 | send: function(code, obj) { |
6808d7a1 BA |
340 | if (this.conn) { |
341 | this.conn.send(JSON.stringify(Object.assign({ code: code }, obj))); | |
51d87b52 | 342 | } |
71468011 BA |
343 | }, |
344 | getVname: function(vid) { | |
345 | const variant = this.st.variants.find(v => v.id == vid); | |
346 | // this.st.variants might be uninitialized (variant == null) | |
6808d7a1 | 347 | return variant ? variant.name : ""; |
71468011 | 348 | }, |
6855163c BA |
349 | filterChallenges: function(type) { |
350 | return this.challenges.filter(c => c.type == type); | |
351 | }, | |
352 | filterGames: function(type) { | |
a9b131f1 | 353 | return this.games.filter(g => g.type == type); |
6855163c | 354 | }, |
6808d7a1 BA |
355 | classifyObject: function(o) { |
356 | //challenge or game | |
357 | return o.cadence.indexOf("d") === -1 ? "live" : "corr"; | |
a6bddfc6 | 358 | }, |
5bcc9b31 BA |
359 | setDisplay: function(letter, type, e) { |
360 | this[letter + "display"] = type; | |
6808d7a1 BA |
361 | localStorage.setItem( |
362 | "type-" + (letter == "c" ? "challenges" : "games"), | |
363 | type | |
364 | ); | |
365 | let elt = e | |
7f36b53a BA |
366 | ? e.target |
367 | : document.getElementById("btn" + letter.toUpperCase() + type); | |
368 | elt.classList.add("active"); | |
2f258c37 | 369 | elt.classList.remove("somethingnew"); //in case of |
6808d7a1 | 370 | if (elt.previousElementSibling) |
7f36b53a | 371 | elt.previousElementSibling.classList.remove("active"); |
6808d7a1 | 372 | else elt.nextElementSibling.classList.remove("active"); |
7f36b53a BA |
373 | }, |
374 | isGamer: function(sid) { | |
375 | return this.people[sid].pages.some(p => p.indexOf("/game/") >= 0); | |
376 | }, | |
6d6f45bc BA |
377 | challenge: function(sid) { |
378 | // Available, in Hall (only) | |
379 | this.newchallenge.to = this.people[sid].name; | |
380 | document.getElementById("modalPeople").checked = false; | |
381 | window.doClick("modalNewgame"); | |
ac8f441c | 382 | }, |
6d6f45bc BA |
383 | watchGame: function(sid) { |
384 | // In some game, maybe playing maybe not: show a random one | |
385 | let gids = []; | |
386 | this.people[sid].pages.forEach(p => { | |
387 | const matchGid = p.match(/[a-zA-Z0-9]+$/); | |
388 | if (matchGid) gids.push(matchGid[0]); | |
389 | }); | |
390 | const gid = gids[Math.floor(Math.random() * gids.length)]; | |
391 | const game = this.games.find(g => g.id == gid); | |
392 | if (game) this.showGame(game); | |
393 | else this.$router.push("/game/" + gid); //game vs. me | |
71468011 | 394 | }, |
51d87b52 | 395 | showGame: function(g) { |
71468011 BA |
396 | // NOTE: we are an observer, since only games I don't play are shown here |
397 | // ==> Moves sent by connected remote player(s) if live game | |
398 | let url = "/game/" + g.id; | |
399 | if (g.type == "live") | |
51d87b52 | 400 | url += "?rid=" + g.rids[Math.floor(Math.random() * g.rids.length)]; |
71468011 BA |
401 | this.$router.push(url); |
402 | }, | |
efdfb4c7 | 403 | resetSocialColor: function() { |
bd76b456 | 404 | // TODO: this is called twice, once on opening an once on closing |
2f258c37 | 405 | document.getElementById("peopleBtn").classList.remove("somethingnew"); |
bd76b456 | 406 | }, |
71468011 | 407 | processChat: function(chat) { |
6808d7a1 | 408 | this.send("newchat", { data: chat }); |
a6bddfc6 | 409 | }, |
f91bc5b0 BA |
410 | getOppsid: function(c) { |
411 | let oppsid = c.from.sid; //may not be defined if corr + offline opp | |
412 | if (!oppsid) { | |
413 | oppsid = Object.keys(this.people).find( | |
414 | sid => this.people[sid].id == c.from.id | |
415 | ); | |
416 | } | |
417 | return oppsid; | |
418 | }, | |
a6bddfc6 | 419 | // Messaging center: |
9d58ef95 | 420 | socketMessageListener: function(msg) { |
6808d7a1 | 421 | if (!this.conn) return; |
9d58ef95 | 422 | const data = JSON.parse(msg.data); |
6808d7a1 BA |
423 | switch (data.code) { |
424 | case "pollclientsandgamers": { | |
51d87b52 BA |
425 | // Since people can be both in Hall and Game, |
426 | // need to track "askIdentity" requests: | |
71468011 BA |
427 | let identityAsked = {}; |
428 | data.sockIds.forEach(s => { | |
7f36b53a | 429 | const page = s.page || "/"; |
6808d7a1 | 430 | if (s.sid != this.st.user.sid && !identityAsked[s.sid]) { |
6808d7a1 | 431 | this.send("askidentity", { target: s.sid, page: page }); |
efdfb4c7 | 432 | identityAsked[s.sid] = true; |
71468011 BA |
433 | } |
434 | if (!this.people[s.sid]) | |
efdfb4c7 BA |
435 | // Do not set name or id: identity unknown yet |
436 | this.$set(this.people, s.sid, { pages: [page] }); | |
7f36b53a BA |
437 | else if (this.people[s.sid].pages.indexOf(page) < 0) |
438 | this.people[s.sid].pages.push(page); | |
6808d7a1 | 439 | if (!s.page) |
efdfb4c7 | 440 | // Peer is in Hall |
6808d7a1 | 441 | this.send("askchallenge", { target: s.sid }); |
efdfb4c7 | 442 | // Peer is in Game |
6808d7a1 | 443 | else this.send("askgame", { target: s.sid, page: page }); |
5a3da968 | 444 | }); |
ac8f441c | 445 | break; |
71468011 BA |
446 | } |
447 | case "connect": | |
6808d7a1 | 448 | case "gconnect": { |
7f36b53a | 449 | const page = data.page || "/"; |
71468011 BA |
450 | // NOTE: player could have been polled earlier, but might have logged in then |
451 | // So it's a good idea to ask identity if he was anonymous. | |
452 | // But only ask game / challenge if currently disconnected. | |
6808d7a1 | 453 | if (!this.people[data.from]) { |
efdfb4c7 | 454 | this.$set(this.people, data.from, { pages: [page] }); |
71468011 | 455 | if (data.code == "connect") |
6808d7a1 BA |
456 | this.send("askchallenge", { target: data.from }); |
457 | else this.send("askgame", { target: data.from, page: page }); | |
458 | } else { | |
efdfb4c7 | 459 | // Append page if not already in list |
7f36b53a BA |
460 | if (this.people[data.from].pages.indexOf(page) < 0) |
461 | this.people[data.from].pages.push(page); | |
71468011 | 462 | } |
efdfb4c7 BA |
463 | if (!this.people[data.from].name && this.people[data.from].id !== 0) { |
464 | // Identity not known yet | |
51d87b52 | 465 | this.newConnect[data.from] = true; //for self multi-connects tests |
6808d7a1 | 466 | this.send("askidentity", { target: data.from, page: page }); |
51d87b52 | 467 | } |
71468011 | 468 | break; |
7f36b53a | 469 | } |
71468011 | 470 | case "disconnect": |
6808d7a1 | 471 | case "gdisconnect": { |
092de306 BA |
472 | // If the user reloads the page twice very quickly (experienced with Firefox), |
473 | // the first reload won't have time to connect but will trigger a "close" event anyway. | |
474 | // ==> Next check is required. | |
6808d7a1 | 475 | if (!this.people[data.from]) return; |
71468011 | 476 | // Disconnect means no more tmpIds: |
6808d7a1 | 477 | if (data.code == "disconnect") { |
51d87b52 | 478 | // Remove the live challenge sent by this player: |
e33e50fa BA |
479 | ArrayFun.remove( |
480 | this.challenges, | |
481 | c => c.type == "live" && c.from.sid == data.from | |
482 | ); | |
6808d7a1 | 483 | } else { |
51d87b52 BA |
484 | // Remove the matching live game if now unreachable |
485 | const gid = data.page.match(/[a-zA-Z0-9]+$/)[0]; | |
486 | const gidx = this.games.findIndex(g => g.id == gid); | |
6808d7a1 | 487 | if (gidx >= 0) { |
51d87b52 | 488 | const game = this.games[gidx]; |
6808d7a1 BA |
489 | if ( |
490 | game.type == "live" && | |
491 | game.rids.length == 1 && | |
492 | game.rids[0] == data.from | |
493 | ) { | |
51d87b52 BA |
494 | this.games.splice(gidx, 1); |
495 | } | |
71468011 BA |
496 | } |
497 | } | |
51d87b52 BA |
498 | const page = data.page || "/"; |
499 | ArrayFun.remove(this.people[data.from].pages, p => p == page); | |
500 | if (this.people[data.from].pages.length == 0) | |
501 | this.$delete(this.people, data.from); | |
502 | break; | |
6808d7a1 | 503 | } |
51d87b52 BA |
504 | case "killed": |
505 | // I logged in elsewhere: | |
51d87b52 | 506 | this.conn = null; |
09d37571 | 507 | alert(this.st.tr["New connexion detected: tab now offline"]); |
5a3da968 | 508 | break; |
6808d7a1 | 509 | case "askidentity": { |
51d87b52 BA |
510 | // Request for identification (TODO: anonymous shouldn't need to reply) |
511 | const me = { | |
512 | // Decompose to avoid revealing email | |
513 | name: this.st.user.name, | |
514 | sid: this.st.user.sid, | |
6808d7a1 | 515 | id: this.st.user.id |
51d87b52 | 516 | }; |
6808d7a1 | 517 | this.send("identity", { data: me, target: data.from }); |
5a3da968 | 518 | break; |
51d87b52 | 519 | } |
6808d7a1 | 520 | case "identity": { |
71468011 | 521 | const user = data.data; |
efdfb4c7 BA |
522 | this.$set(this.people, user.sid, { |
523 | id: user.id, | |
524 | name: user.name, | |
525 | pages: this.people[user.sid].pages | |
526 | }); | |
6808d7a1 | 527 | if (user.name) { |
51d87b52 | 528 | // If I multi-connect, kill current connexion if no mark (I'm older) |
6808d7a1 BA |
529 | if ( |
530 | this.newConnect[user.sid] && | |
531 | user.id > 0 && | |
532 | user.id == this.st.user.id && | |
533 | user.sid != this.st.user.sid | |
534 | ) { | |
535 | if (!this.killed[this.st.user.sid]) { | |
536 | this.send("killme", { sid: this.st.user.sid }); | |
51d87b52 BA |
537 | this.killed[this.st.user.sid] = true; |
538 | } | |
539 | } | |
51d87b52 BA |
540 | } |
541 | delete this.newConnect[user.sid]; | |
dcd68c41 | 542 | break; |
71468011 | 543 | } |
6808d7a1 | 544 | case "askchallenge": { |
6855163c | 545 | // Send my current live challenge (if any) |
6808d7a1 BA |
546 | const cIdx = this.challenges.findIndex( |
547 | c => c.from.sid == this.st.user.sid && c.type == "live" | |
548 | ); | |
549 | if (cIdx >= 0) { | |
dd75774d | 550 | const c = this.challenges[cIdx]; |
71468011 BA |
551 | // NOTE: in principle, should only send targeted challenge to the target. |
552 | // But we may not know yet the identity of the target (just name), | |
553 | // so cannot decide if data.from is the target or not. | |
6808d7a1 | 554 | const myChallenge = { |
2ada153c | 555 | id: c.id, |
71468011 | 556 | from: this.st.user.sid, |
81d9ce72 | 557 | to: c.to, |
7ba4a5bc | 558 | randomness: c.randomness, |
81d9ce72 BA |
559 | fen: c.fen, |
560 | vid: c.vid, | |
71468011 | 561 | cadence: c.cadence, |
6808d7a1 | 562 | added: c.added |
dd75774d | 563 | }; |
6808d7a1 | 564 | this.send("challenge", { data: myChallenge, target: data.from }); |
81d9ce72 BA |
565 | } |
566 | break; | |
1efe1d79 | 567 | } |
71468011 | 568 | case "challenge": //after "askchallenge" |
6808d7a1 | 569 | case "newchallenge": { |
a64d9122 | 570 | // NOTE about next condition: see "askchallenge" case. |
71468011 | 571 | const chall = data.data; |
6808d7a1 BA |
572 | if ( |
573 | !chall.to || | |
574 | (this.people[chall.from].id > 0 && | |
575 | (chall.from == this.st.user.sid || chall.to == this.st.user.name)) | |
576 | ) { | |
71468011 BA |
577 | let newChall = Object.assign({}, chall); |
578 | newChall.type = this.classifyObject(chall); | |
7ba4a5bc | 579 | newChall.randomness = chall.randomness; |
71468011 BA |
580 | newChall.added = Date.now(); |
581 | let fromValues = Object.assign({}, this.people[chall.from]); | |
582 | delete fromValues["pages"]; //irrelevant in this context | |
6808d7a1 | 583 | newChall.from = Object.assign({ sid: chall.from }, fromValues); |
a64d9122 BA |
584 | newChall.vname = this.getVname(newChall.vid); |
585 | this.challenges.push(newChall); | |
6808d7a1 BA |
586 | if ( |
587 | (newChall.type == "live" && this.cdisplay == "corr") || | |
588 | (newChall.type == "corr" && this.cdisplay == "live") | |
589 | ) { | |
590 | document | |
591 | .getElementById("btnC" + newChall.type) | |
592 | .classList.add("somethingnew"); | |
2f258c37 | 593 | } |
a64d9122 | 594 | } |
81d9ce72 | 595 | break; |
71468011 | 596 | } |
6808d7a1 | 597 | case "refusechallenge": { |
71468011 BA |
598 | const cid = data.data; |
599 | ArrayFun.remove(this.challenges, c => c.id == cid); | |
600 | alert(this.st.tr["Challenge declined"]); | |
601 | break; | |
602 | } | |
6808d7a1 | 603 | case "deletechallenge": { |
71468011 BA |
604 | // NOTE: the challenge may be already removed |
605 | const cid = data.data; | |
606 | ArrayFun.remove(this.challenges, c => c.id == cid); | |
607 | break; | |
608 | } | |
609 | case "game": //individual request | |
6808d7a1 | 610 | case "newgame": { |
71468011 BA |
611 | // NOTE: it may be live or correspondance |
612 | const game = data.data; | |
866842c3 | 613 | // Ignore games where I play (corr games) |
bd5c8a78 BA |
614 | if (game.players.every(p => |
615 | p.sid != this.st.user.sid || p.id != this.st.user.id)) | |
866842c3 BA |
616 | { |
617 | let locGame = this.games.find(g => g.id == game.id); | |
618 | if (!locGame) { | |
619 | let newGame = game; | |
620 | newGame.type = this.classifyObject(game); | |
621 | newGame.vname = this.getVname(game.vid); | |
622 | if (!game.score) | |
623 | //if new game from Hall | |
624 | newGame.score = "*"; | |
625 | newGame.rids = [game.rid]; | |
626 | delete newGame["rid"]; | |
627 | this.games.push(newGame); | |
628 | if ( | |
629 | (newGame.type == "live" && this.gdisplay == "corr") || | |
630 | (newGame.type == "corr" && this.gdisplay == "live") | |
631 | ) { | |
632 | document | |
633 | .getElementById("btnG" + newGame.type) | |
634 | .classList.add("somethingnew"); | |
635 | } | |
636 | } else { | |
637 | // Append rid (if not already in list) | |
638 | if (!locGame.rids.includes(game.rid)) locGame.rids.push(game.rid); | |
2f258c37 | 639 | } |
51d87b52 | 640 | } |
81d9ce72 | 641 | break; |
1efe1d79 | 642 | } |
6808d7a1 | 643 | case "result": { |
48ab808f | 644 | let g = this.games.find(g => g.id == data.gid); |
6808d7a1 | 645 | if (g) g.score = data.score; |
48ab808f BA |
646 | break; |
647 | } | |
6808d7a1 | 648 | case "startgame": { |
5d04793e | 649 | // New game just started: data contain all information |
71468011 BA |
650 | const gameInfo = data.data; |
651 | if (this.classifyObject(gameInfo) == "live") | |
652 | this.startNewGame(gameInfo); | |
6808d7a1 BA |
653 | else { |
654 | this.infoMessage = | |
655 | this.st.tr["New correspondance game:"] + | |
656 | " <a href='#/game/" + | |
657 | gameInfo.id + | |
658 | "'>" + | |
659 | "#/game/" + | |
660 | gameInfo.id + | |
661 | "</a>"; | |
dce792f6 BA |
662 | let modalBox = document.getElementById("modalInfo"); |
663 | modalBox.checked = true; | |
5d04793e | 664 | } |
9d58ef95 | 665 | break; |
71468011 | 666 | } |
ac8f441c | 667 | case "newchat": |
71468011 | 668 | this.newChat = data.data; |
bd76b456 | 669 | if (!document.getElementById("modalPeople").checked) |
2f258c37 | 670 | document.getElementById("peopleBtn").classList.add("somethingnew"); |
9d58ef95 BA |
671 | break; |
672 | } | |
673 | }, | |
51d87b52 | 674 | socketCloseListener: function() { |
6808d7a1 | 675 | if (!this.conn) return; |
51d87b52 BA |
676 | this.conn = new WebSocket(this.connexionString); |
677 | this.conn.addEventListener("message", this.socketMessageListener); | |
678 | this.conn.addEventListener("close", this.socketCloseListener); | |
679 | }, | |
a6bddfc6 | 680 | // Challenge lifecycle: |
725da57f BA |
681 | loadNewchallVariant: async function(cb) { |
682 | const vname = this.getVname(this.newchallenge.vid); | |
683 | const vModule = await import("@/variants/" + vname + ".js"); | |
684 | this.newchallenge.V = vModule.VariantRules; | |
685 | this.newchallenge.vname = vname; | |
686 | if (cb) | |
687 | cb(); | |
688 | }, | |
689 | trySetNewchallDiag: function() { | |
690 | if (!this.newchallenge.fen) { | |
691 | this.newchallenge.diag = ""; | |
692 | return; | |
693 | } | |
694 | // If vid > 0 then the variant is loaded (function above): | |
695 | window.V = this.newchallenge.V; | |
696 | if ( | |
697 | this.newchallenge.vid > 0 && | |
698 | this.newchallenge.fen && | |
699 | V.IsGoodFen(this.newchallenge.fen) | |
700 | ) { | |
701 | const parsedFen = V.ParseFen(this.newchallenge.fen); | |
702 | this.newchallenge.diag = getDiagram({ | |
703 | position: parsedFen.position, | |
704 | orientation: V.GetOppCol(parsedFen.turn) | |
705 | }); | |
706 | } | |
707 | }, | |
9d58ef95 | 708 | newChallenge: async function() { |
8477e53d BA |
709 | if (this.newchallenge.cadence.match(/^[0-9]+$/)) |
710 | this.newchallenge.cadence += "+0"; //assume minutes, no increment | |
711 | const ctype = this.classifyObject(this.newchallenge); | |
712 | // TODO: cadence still unchecked so ctype could be wrong... | |
6808d7a1 | 713 | let error = ""; |
8477e53d | 714 | if (!this.newchallenge.vid) |
6808d7a1 | 715 | error = this.st.tr["Please select a variant"]; |
8477e53d BA |
716 | else if (ctype == "corr" && this.st.user.id <= 0) |
717 | error = this.st.tr["Please log in to play correspondance games"]; | |
718 | else if (this.newchallenge.to) { | |
719 | if (this.newchallenge.to == this.st.user.name) | |
720 | error = this.st.tr["Self-challenge is forbidden"]; | |
721 | else if ( | |
722 | ctype == "live" && | |
723 | Object.values(this.people).every(p => p.name != this.newchallenge.to) | |
724 | ) | |
725 | error = this.newchallenge.to + " " + this.st.tr["is not online"]; | |
726 | } | |
6808d7a1 BA |
727 | if (error) { |
728 | alert(error); | |
729 | return; | |
730 | } | |
725da57f | 731 | window.V = this.newchallenge.V; |
6808d7a1 | 732 | error = checkChallenge(this.newchallenge); |
6808d7a1 BA |
733 | if (error) { |
734 | alert(error); | |
735 | return; | |
736 | } | |
bb7dd7db | 737 | // NOTE: "from" information is not required here |
a7808884 | 738 | let chall = Object.assign({}, this.newchallenge); |
7ba4a5bc BA |
739 | delete chall["V"]; |
740 | delete chall["diag"]; | |
6808d7a1 | 741 | const finishAddChallenge = cid => { |
1efe1d79 | 742 | chall.id = cid || "c" + getRandString(); |
fe4c7e67 | 743 | // Remove old challenge if any (only one at a time of a given type): |
6808d7a1 BA |
744 | const cIdx = this.challenges.findIndex( |
745 | c => | |
746 | (c.from.sid == this.st.user.sid || c.from.id == this.st.user.id) && | |
747 | c.type == ctype | |
748 | ); | |
749 | if (cIdx >= 0) { | |
5ea8d113 | 750 | // Delete current challenge (will be replaced now) |
6808d7a1 BA |
751 | this.send("deletechallenge", { data: this.challenges[cIdx].id }); |
752 | if (ctype == "corr") { | |
753 | ajax("/challenges", "DELETE", { id: this.challenges[cIdx].id }); | |
5ea8d113 BA |
754 | } |
755 | this.challenges.splice(cIdx, 1); | |
756 | } | |
6808d7a1 BA |
757 | this.send("newchallenge", { |
758 | data: Object.assign({ from: this.st.user.sid }, chall) | |
759 | }); | |
5ea8d113 | 760 | // Add new challenge: |
6808d7a1 | 761 | chall.from = { |
725da57f | 762 | // Decompose to avoid revealing email |
dcd68c41 BA |
763 | sid: this.st.user.sid, |
764 | id: this.st.user.id, | |
6808d7a1 | 765 | name: this.st.user.name |
dcd68c41 | 766 | }; |
71468011 BA |
767 | chall.added = Date.now(); |
768 | // NOTE: vname and type are redundant (can be deduced from cadence + vid) | |
769 | chall.type = ctype; | |
725da57f | 770 | chall.vname = this.newchallenge.vname; |
1efe1d79 | 771 | this.challenges.push(chall); |
71468011 BA |
772 | // Remember cadence + vid for quicker further challenges: |
773 | localStorage.setItem("cadence", chall.cadence); | |
25d18342 | 774 | localStorage.setItem("vid", chall.vid); |
7ba4a5bc | 775 | localStorage.setItem("randomness", chall.randomness); |
b4d619d1 | 776 | document.getElementById("modalNewgame").checked = false; |
db1f1f9a BA |
777 | // Show the challenge if not on current display |
778 | if ( | |
779 | (ctype == "live" && this.cdisplay == "corr") || | |
780 | (ctype == "corr" && this.cdisplay == "live") | |
781 | ) { | |
782 | this.setDisplay('c', ctype); | |
783 | } | |
b4d619d1 | 784 | }; |
6808d7a1 | 785 | if (ctype == "live") { |
1efe1d79 | 786 | // Live challenges have a random ID |
71468011 | 787 | finishAddChallenge(null); |
6808d7a1 | 788 | } else { |
b4d619d1 | 789 | // Correspondance game: send challenge to server |
6808d7a1 BA |
790 | ajax("/challenges", "POST", { chall: chall }, response => { |
791 | finishAddChallenge(response.cid); | |
792 | }); | |
9d58ef95 | 793 | } |
fb54f098 | 794 | }, |
725da57f BA |
795 | // Callback function after a diagram was showed to accept |
796 | // or refuse targetted challenge: | |
797 | decisionChallenge: function(accepted) { | |
798 | this.curChallToAccept.accepted = accepted; | |
799 | this.finishProcessingChallenge(this.curChallToAccept); | |
800 | document.getElementById("modalAccept").checked = false; | |
801 | }, | |
802 | finishProcessingChallenge: function(c) { | |
803 | if (c.accepted) { | |
804 | c.seat = { | |
805 | // Again, avoid c.seat = st.user to not reveal email | |
806 | sid: this.st.user.sid, | |
807 | id: this.st.user.id, | |
808 | name: this.st.user.name | |
809 | }; | |
810 | this.launchGame(c); | |
811 | } else { | |
f91bc5b0 | 812 | const oppsid = this.getOppsid(c); |
0c4c3896 | 813 | if (oppsid) |
f91bc5b0 | 814 | this.send("refusechallenge", { data: c.id, target: oppsid }); |
1511c610 BA |
815 | if (c.type == "corr") |
816 | ajax("/challenges", "DELETE", { id: c.id }); | |
725da57f BA |
817 | } |
818 | this.send("deletechallenge", { data: c.id }); | |
819 | }, | |
820 | clickChallenge: async function(c) { | |
6808d7a1 BA |
821 | const myChallenge = |
822 | c.from.sid == this.st.user.sid || //live | |
823 | (this.st.user.id > 0 && c.from.id == this.st.user.id); //corr | |
824 | if (!myChallenge) { | |
825 | if (c.type == "corr" && this.st.user.id <= 0) { | |
826 | alert(this.st.tr["Please log in to accept corr challenges"]); | |
827 | return; | |
828 | } | |
a6bddfc6 | 829 | c.accepted = true; |
725da57f BA |
830 | const vModule = await import("@/variants/" + c.vname + ".js"); |
831 | window.V = vModule.VariantRules; | |
6808d7a1 | 832 | if (c.to) { |
725da57f BA |
833 | // c.to == this.st.user.name (connected) |
834 | if (c.fen) { | |
835 | const parsedFen = V.ParseFen(c.fen); | |
0cd02605 | 836 | c.mycolor = V.GetOppCol(parsedFen.turn); |
725da57f BA |
837 | this.tchallDiag = getDiagram({ |
838 | position: parsedFen.position, | |
0cd02605 | 839 | orientation: c.mycolor |
725da57f BA |
840 | }); |
841 | this.curChallToAccept = c; | |
842 | document.getElementById("modalAccept").checked = true; | |
843 | } | |
844 | else { | |
845 | if (!confirm(this.st.tr["Accept challenge?"])) | |
846 | c.accepted = false; | |
847 | this.finishProcessingChallenge(c); | |
848 | } | |
485fccd5 | 849 | } |
725da57f BA |
850 | else |
851 | this.finishProcessingChallenge(c); | |
852 | } | |
6808d7a1 | 853 | else { |
725da57f | 854 | // My challenge |
1511c610 | 855 | if (c.type == "corr") |
6808d7a1 | 856 | ajax("/challenges", "DELETE", { id: c.id }); |
6808d7a1 | 857 | this.send("deletechallenge", { data: c.id }); |
485fccd5 | 858 | } |
5ea8d113 | 859 | // In all cases, the challenge is consumed: |
3d55deea | 860 | ArrayFun.remove(this.challenges, ch => ch.id == c.id); |
a6bddfc6 | 861 | }, |
a64d9122 | 862 | // NOTE: when launching game, the challenge is already being deleted |
725da57f | 863 | launchGame: function(c) { |
71468011 | 864 | // These game informations will be shared |
6808d7a1 | 865 | let gameInfo = { |
11667c79 | 866 | id: getRandString(), |
7ba4a5bc | 867 | fen: c.fen || V.GenRandInitFen(c.randomness), |
0cd02605 BA |
868 | // White player index 0, black player index 1: |
869 | players: c.mycolor | |
870 | ? (c.mycolor == "w" ? [c.seat, c.from] : [c.from, c.seat]) | |
871 | : shuffle([c.from, c.seat]), | |
a6bddfc6 | 872 | vid: c.vid, |
6808d7a1 | 873 | cadence: c.cadence |
a6bddfc6 | 874 | }; |
71468011 | 875 | const notifyNewgame = () => { |
f91bc5b0 | 876 | const oppsid = this.getOppsid(c); |
6808d7a1 BA |
877 | if (oppsid) |
878 | //opponent is online | |
879 | this.send("startgame", { data: gameInfo, target: oppsid }); | |
71468011 | 880 | // Send game info (only if live) to everyone except me in this tab |
6808d7a1 | 881 | this.send("newgame", { data: gameInfo }); |
411d23cd | 882 | }; |
6808d7a1 | 883 | if (c.type == "live") { |
71468011 | 884 | notifyNewgame(); |
485fccd5 | 885 | this.startNewGame(gameInfo); |
6808d7a1 BA |
886 | } //corr: game only on server |
887 | else { | |
485fccd5 BA |
888 | ajax( |
889 | "/games", | |
890 | "POST", | |
6808d7a1 | 891 | { gameInfo: gameInfo, cid: c.id }, //cid useful to delete challenge |
411d23cd | 892 | response => { |
11667c79 | 893 | gameInfo.id = response.gameId; |
71468011 | 894 | notifyNewgame(); |
411d23cd BA |
895 | this.$router.push("/game/" + response.gameId); |
896 | } | |
485fccd5 BA |
897 | ); |
898 | } | |
fb54f098 | 899 | }, |
a9b131f1 | 900 | // NOTE: for live games only (corr games start on the server) |
42c15a75 | 901 | startNewGame: function(gameInfo) { |
25996aed BA |
902 | const game = Object.assign({}, gameInfo, { |
903 | // (other) Game infos: constant | |
6d01bb17 | 904 | fenStart: gameInfo.fen, |
71468011 BA |
905 | vname: this.getVname(gameInfo.vid), |
906 | created: Date.now(), | |
25996aed | 907 | // Game state (including FEN): will be updated |
967a2686 | 908 | moves: [], |
a9b131f1 | 909 | clocks: [-1, -1], //-1 = unstarted |
66d03f23 | 910 | initime: [0, 0], //initialized later |
6808d7a1 | 911 | score: "*" |
a7808884 | 912 | }); |
8477e53d BA |
913 | GameStorage.add(game, (err) => { |
914 | // If an error occurred, game is not added: abort | |
915 | if (!err) { | |
db1f1f9a | 916 | if (this.st.settings.sound) |
1fc6df1e | 917 | new Audio("/sounds/newgame.flac").play().catch(() => {}); |
8477e53d BA |
918 | this.$router.push("/game/" + gameInfo.id); |
919 | } | |
920 | }); | |
6808d7a1 BA |
921 | } |
922 | } | |
85e5b5c1 | 923 | }; |
ccd4a2b7 | 924 | </script> |
85e5b5c1 | 925 | |
41c80bb6 | 926 | <style lang="sass" scoped> |
5bcc9b31 BA |
927 | .active |
928 | color: #42a983 | |
a154d45e BA |
929 | |
930 | #infoDiv > .card | |
f854c94f BA |
931 | padding: 15px 0 |
932 | max-width: 430px | |
a154d45e | 933 | |
725da57f | 934 | #newgameDiv > .card, #acceptDiv > .card |
a154d45e BA |
935 | max-width: 767px |
936 | max-height: 100% | |
937 | ||
bd76b456 BA |
938 | div#peopleWrap > .card |
939 | max-height: 100% | |
940 | ||
941 | @media screen and (min-width: 1281px) | |
942 | div#peopleWrap > .card | |
943 | max-width: 66.67% | |
944 | ||
945 | @media screen and (max-width: 1280px) | |
946 | div#peopleWrap > .card | |
947 | max-width: 83.33% | |
948 | ||
949 | @media screen and (max-width: 767px) | |
950 | div#peopleWrap > .card | |
951 | max-width: 100% | |
952 | ||
ed06d9e9 BA |
953 | #players |
954 | width: 50% | |
955 | position: relative | |
956 | float: left | |
910d631b | 957 | |
ed06d9e9 BA |
958 | #chat |
959 | width: 50% | |
960 | float: left | |
961 | position: relative | |
910d631b | 962 | |
ed06d9e9 BA |
963 | @media screen and (max-width: 767px) |
964 | #players, #chats | |
965 | width: 100% | |
910d631b | 966 | |
72ccbd67 BA |
967 | #chat > .card |
968 | max-width: 100% | |
969 | margin: 0; | |
970 | border: none; | |
910d631b | 971 | |
41c80bb6 | 972 | #players > p |
ed06d9e9 | 973 | margin-left: 5px |
910d631b | 974 | |
dcd68c41 BA |
975 | .anonymous |
976 | font-style: italic | |
910d631b | 977 | |
dcd68c41 | 978 | button.player-action |
41c80bb6 | 979 | margin-left: 32px |
2f258c37 BA |
980 | |
981 | .somethingnew | |
982 | background-color: #c5fefe !important | |
983 | ||
984 | .tabbtn | |
5fe7e71c | 985 | background-color: #f9faee |
2f258c37 | 986 | |
725da57f BA |
987 | button.acceptBtn |
988 | background-color: lightgreen | |
989 | button.refuseBtn | |
990 | background-color: red | |
991 | ||
992 | #buttonsTchall | |
993 | margin-top: 10px | |
994 | ||
995 | .variantName | |
996 | font-weight: bold | |
997 | ||
998 | .diagram | |
999 | margin: 0 auto | |
1000 | max-width: 400px | |
1001 | ||
1002 | #inputFen | |
1003 | width: 100% | |
1004 | ||
2f258c37 BA |
1005 | #div2, #div3 |
1006 | margin-top: 15px | |
1007 | @media screen and (max-width: 767px) | |
1008 | #div2, #div3 | |
1009 | margin-top: 0 | |
85e5b5c1 | 1010 | </style> |