Fix Benedict rules for flipped colors when castling: seems more logical now
[vchess.git] / client / src / views / Hall.vue
CommitLineData
ccd4a2b7 1<template lang="pug">
9d58ef95 2main
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")
5b4de147
BA
13 .card
14 p.text-center
725da57f
BA
15 span.variantName {{ curChallToAccept.vname }}
16 span {{ curChallToAccept.cadence }}
17 span {{ st.tr["with"] + " " + curChallToAccept.from.name }}
afde7666
BA
18 .diagram(
19 v-if="!!curChallToAccept.fen"
20 v-html="tchallDiag"
21 )
22 .button-group#buttonsTchall(:style="tchallButtonsMargin()")
5b4de147
BA
23 button.acceptBtn(@click="decisionChallenge(true)")
24 span {{ st.tr["Accept challenge?"] }}
25 button.refuseBtn(@click="decisionChallenge(false)")
26 span {{ st.tr["Refuse"] }}
09d37571
BA
27 input#modalNewgame.modal(
28 type="checkbox"
29 @change="cadenceFocusIfOpened($event)"
30 )
910d631b
BA
31 div#newgameDiv(
32 role="dialog"
33 data-checkbox="modalNewgame"
34 )
89021f18 35 .card
5b020e73 36 label#closeNewgame.modal-close(for="modalNewgame")
28b32b4f 37 div(@keyup.enter="issueNewChallenge()")
89021f18
BA
38 fieldset
39 label(for="selectVariant") {{ st.tr["Variant"] }} *
725da57f
BA
40 select#selectVariant(
41 @change="loadNewchallVariant(trySetNewchallDiag)"
42 v-model="newchallenge.vid"
43 )
910d631b
BA
44 option(
45 v-for="v in st.variants"
46 :value="v.id"
47 :selected="newchallenge.vid==v.id"
48 )
89021f18
BA
49 | {{ v.name }}
50 fieldset
51 label(for="cadence") {{ st.tr["Cadence"] }} *
52 div#predefinedCadences
8477e53d 53 button(type="button") 15+5
8aa418f6 54 button(type="button") 45+30
92240cf0
BA
55 button(type="button") 3d
56 button(type="button") 7d
910d631b
BA
57 input#cadence(
58 type="text"
59 v-model="newchallenge.cadence"
92240cf0 60 placeholder="5+0, 1h+30s, 5d ..."
910d631b 61 )
7ba4a5bc 62 fieldset
b5aa30b5 63 label(for="selectRandomLevel") {{ st.tr["Randomness"] }} *
7ba4a5bc
BA
64 select#selectRandomLevel(v-model="newchallenge.randomness")
65 option(value="0") {{ st.tr["Deterministic"] }}
66 option(value="1") {{ st.tr["Symmetric random"] }}
67 option(value="2") {{ st.tr["Asymmetric random"] }}
28b32b4f 68 fieldset
b83a675a 69 label(for="memorizeChall") {{ st.tr["Memorize"] }}
28b32b4f
BA
70 input#memorizeChall(
71 type="checkbox"
72 v-model="newchallenge.memorize"
73 )
89021f18 74 fieldset(v-if="st.user.id > 0")
b83a675a
BA
75 label(for="selectPlayers") {{ st.tr["Play with"] }}
76 select#selectPlayersInList(v-model="newchallenge.to")
77 option(value="")
78 option(
79 v-for="p in Object.values(people)"
80 :value="p.name"
81 )
82 | {{ p.name }}
910d631b
BA
83 input#selectPlayers(
84 type="text"
85 v-model="newchallenge.to"
86 )
89021f18 87 fieldset(v-if="st.user.id > 0 && newchallenge.to.length > 0")
910d631b 88 input#inputFen(
725da57f
BA
89 placeholder="FEN"
90 @input="trySetNewchallDiag()"
910d631b
BA
91 type="text"
92 v-model="newchallenge.fen"
93 )
725da57f 94 .diagram(v-html="newchallenge.diag")
28b32b4f 95 button(@click="issueNewChallenge()") {{ st.tr["Send challenge"] }}
910d631b
BA
96 input#modalPeople.modal(
97 type="checkbox"
efdfb4c7 98 @click="resetSocialColor()"
910d631b
BA
99 )
100 div#peopleWrap(
101 role="dialog"
102 data-checkbox="modalPeople"
103 )
bd76b456
BA
104 .card
105 label.modal-close(for="modalPeople")
106 #people
107 #players
910d631b
BA
108 p(
109 v-for="sid in Object.keys(people)"
f9c36b2d 110 v-if="!!people[sid].name"
910d631b 111 )
bd76b456 112 span {{ people[sid].name }}
910d631b 113 button.player-action(
6d6f45bc
BA
114 v-if="isGamer(sid)"
115 @click="watchGame(sid)"
910d631b 116 )
6d6f45bc
BA
117 | {{ st.tr["Observe"] }}
118 button.player-action(
a041d5d8 119 v-else-if="isFocusedOnHall(sid)"
6d6f45bc
BA
120 @click="challenge(sid)"
121 )
122 | {{ st.tr["Challenge"] }}
bd76b456
BA
123 p.anonymous @nonymous ({{ anonymousCount }})
124 #chat
910d631b
BA
125 Chat(
126 :newChat="newChat"
127 @mychat="processChat"
128 :pastChats="[]"
129 )
bd76b456 130 .clearer
9d58ef95 131 .row
bd76b456
BA
132 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
133 .button-group
910d631b 134 button#peopleBtn(onClick="window.doClick('modalPeople')")
8a0f881d 135 | {{ st.tr["Who's there?"] }}
afde7666 136 button(@click="showNewchallengeForm()")
910d631b 137 | {{ st.tr["New game"] }}
28b32b4f
BA
138 .row(v-if="presetChalls.length > 0")
139 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
140 h4.text-center {{ st.tr["Preset challenges"] }}
141 table
142 thead
143 tr
144 th {{ st.tr["Variant"] }}
145 th {{ st.tr["Cadence"] }}
146 th {{ st.tr["Random?"] }}
147 th
148 tbody
149 tr(
150 v-for="pc in presetChalls"
151 @click="newChallFromPreset(pc)"
152 )
153 td {{ pc.vname }}
154 td {{ pc.cadence }}
155 td(:class="getRandomnessClass(pc)")
156 td.remove-preset(@click="removePresetChall($event, pc)")
157 img(src="/images/icons/delete.svg")
9d58ef95 158 .row
9ca1e26b 159 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
2f258c37 160 div#div2
ed06d9e9 161 .button-group
2f258c37 162 button.tabbtn#btnClive(@click="setDisplay('c','live',$event)")
602d6bef 163 | {{ st.tr["Live challenges"] }}
2f258c37 164 button.tabbtn#btnCcorr(@click="setDisplay('c','corr',$event)")
602d6bef 165 | {{ st.tr["Correspondance challenges"] }}
910d631b
BA
166 ChallengeList(
167 v-show="cdisplay=='live'"
168 :challenges="filterChallenges('live')"
169 @click-challenge="clickChallenge"
170 )
171 ChallengeList(
172 v-show="cdisplay=='corr'"
173 :challenges="filterChallenges('corr')"
174 @click-challenge="clickChallenge"
175 )
2f258c37 176 div#div3
ed06d9e9 177 .button-group
2f258c37 178 button.tabbtn#btnGlive(@click="setDisplay('g','live',$event)")
602d6bef 179 | {{ st.tr["Live games"] }}
2f258c37 180 button.tabbtn#btnGcorr(@click="setDisplay('g','corr',$event)")
602d6bef 181 | {{ st.tr["Correspondance games"] }}
910d631b
BA
182 GameList(
183 v-show="gdisplay=='live'"
184 :games="filterGames('live')"
185 :showBoth="true"
186 @show-game="showGame"
187 )
188 GameList(
189 v-show="gdisplay=='corr'"
190 :games="filterGames('corr')"
191 :showBoth="true"
192 @show-game="showGame"
193 )
625022fd
BA
194</template>
195
196<script>
5b020e73 197import { store } from "@/store";
9d58ef95
BA
198import { checkChallenge } from "@/data/challengeCheck";
199import { ArrayFun } from "@/utils/array";
03608482 200import { ajax } from "@/utils/ajax";
8418f0d7 201import params from "@/parameters";
4b0384fa 202import { getRandString, shuffle } from "@/utils/alea";
725da57f 203import { getDiagram } from "@/utils/printDiagram";
603b8a8b 204import Chat from "@/components/Chat.vue";
5b020e73
BA
205import GameList from "@/components/GameList.vue";
206import ChallengeList from "@/components/ChallengeList.vue";
967a2686 207import { GameStorage } from "@/utils/gameStorage";
602d6bef 208import { processModalClick } from "@/utils/modalClick";
625022fd 209export default {
cf2343ce 210 name: "my-hall",
5b020e73 211 components: {
603b8a8b 212 Chat,
5b020e73 213 GameList,
6808d7a1 214 ChallengeList
5b020e73 215 },
6808d7a1 216 data: function() {
fb54f098 217 return {
5b020e73 218 st: store.state,
6855163c 219 cdisplay: "live", //or corr
fb54f098 220 gdisplay: "live",
6855163c 221 games: [],
b4d619d1 222 challenges: [],
71468011 223 people: {},
3d55deea 224 infoMessage: "",
9d58ef95 225 newchallenge: {
fb54f098 226 fen: "",
725da57f 227 vid: parseInt(localStorage.getItem("vid")) || 0,
6fba6e0c 228 to: "", //name of challenged player (if any)
725da57f 229 cadence: localStorage.getItem("cadence") || "",
f2adb3d0 230 randomness: parseInt(localStorage.getItem("challRandomness")) || 2,
725da57f
BA
231 // VariantRules object, stored to not interfere with
232 // diagrams of targetted challenges:
233 V: null,
234 vname: "",
28b32b4f
BA
235 diag: "", //visualizing FEN
236 memorize: false //put settings in localStorage
fb54f098 237 },
725da57f
BA
238 tchallDiag: "",
239 curChallToAccept: {from: {}},
28b32b4f 240 presetChalls: JSON.parse(localStorage.getItem("presetChalls") || "[]"),
ac8f441c 241 newChat: "",
8418f0d7 242 conn: null,
51d87b52
BA
243 connexionString: "",
244 // Related to (killing of) self multi-connects:
245 newConnect: {},
6808d7a1 246 killed: {}
fb54f098
BA
247 };
248 },
fd7aea36
BA
249 watch: {
250 // st.variants changes only once, at loading from [] to [...]
6808d7a1 251 "st.variants": function() {
fd7aea36 252 // Set potential challenges and games variant names:
71468011 253 this.challenges.concat(this.games).forEach(o => {
f9c36b2d 254 if (!o.vname) o.vname = this.getVname(o.vid);
fd7aea36 255 });
725da57f
BA
256 if (!this.newchallenge.V && this.newchallenge.vid > 0)
257 this.loadNewchallVariant();
6808d7a1 258 }
fd7aea36 259 },
b4d619d1 260 computed: {
ed06d9e9
BA
261 anonymousCount: function() {
262 let count = 0;
6808d7a1 263 Object.values(this.people).forEach(p => {
efdfb4c7
BA
264 // Do not cound people who did not send their identity yet:
265 count += (!p.name && p.id === 0) ? 1 : 0;
6808d7a1 266 });
ed06d9e9 267 return count;
6808d7a1 268 }
b4d619d1 269 },
9d58ef95 270 created: function() {
725da57f
BA
271 if (this.st.variants.length > 0 && this.newchallenge.vid > 0)
272 this.loadNewchallVariant();
66d03f23 273 const my = this.st.user;
a041d5d8
BA
274 this.$set(
275 this.people,
276 my.sid,
277 {
278 id: my.id,
279 name: my.name,
280 pages: [{ path: "/", focus: true }]
281 }
282 );
e5a5d331
BA
283 const connectAndPoll = () => {
284 this.send("connect");
285 this.send("pollclientsandgamers");
286 };
287 // Initialize connection
288 this.connexionString =
289 params.socketUrl +
290 "/?sid=" +
291 this.st.user.sid +
292 "&id=" +
293 this.st.user.id +
294 "&tmpId=" +
295 getRandString() +
296 "&page=" +
297 // Hall: path is "/" (could be hard-coded as well)
298 encodeURIComponent(this.$route.path);
299 this.conn = new WebSocket(this.connexionString);
300 this.conn.onopen = connectAndPoll;
301 this.conn.onmessage = this.socketMessageListener;
302 this.conn.onclose = this.socketCloseListener;
303 },
304 mounted: function() {
305 document.addEventListener('visibilitychange', this.visibilityChange);
306 ["peopleWrap", "infoDiv", "newgameDiv"].forEach(eltName => {
307 document.getElementById(eltName)
308 .addEventListener("click", processModalClick);
309 });
310 document.querySelectorAll("#predefinedCadences > button").forEach(b => {
311 b.addEventListener("click", () => {
312 this.newchallenge.cadence = b.innerHTML;
313 });
314 });
315 const dispCorr = this.$route.query["disp"];
316 const showCtype =
317 dispCorr || localStorage.getItem("type-challenges") || "live";
318 const showGtype =
319 dispCorr || localStorage.getItem("type-games") || "live";
320 this.setDisplay('c', showCtype);
321 this.setDisplay('g', showGtype);
3d55deea
BA
322 // Ask server for current corr games (all but mines)
323 ajax(
324 "/games",
325 "GET",
e57c4de4
BA
326 {
327 data: { uid: this.st.user.id, excluded: true },
328 success: (response) => {
e5a5d331
BA
329 if (
330 response.games.length > 0 &&
331 this.games.length == 0 &&
332 this.gdisplay == "live"
333 ) {
334 document
335 .getElementById("btnGcorr")
336 .classList.add("somethingnew");
337 }
e57c4de4
BA
338 this.games = this.games.concat(
339 response.games.map(g => {
340 const type = this.classifyObject(g);
341 const vname = this.getVname(g.vid);
e727fe31
BA
342 return Object.assign(
343 {},
344 g,
345 {
346 type: type,
28b32b4f 347 vname: vname
e727fe31
BA
348 }
349 );
e57c4de4
BA
350 })
351 );
352 }
3d55deea
BA
353 }
354 );
fe4c7e67 355 // Also ask for corr challenges (open + sent by/to me)
e57c4de4
BA
356 ajax(
357 "/challenges",
358 "GET",
359 {
360 data: { uid: this.st.user.id },
361 success: (response) => {
e5a5d331
BA
362 if (
363 response.challenges.length > 0 &&
364 this.challenges.length == 0 &&
365 this.cdisplay == "live"
366 ) {
367 document
368 .getElementById("btnCcorr")
369 .classList.add("somethingnew");
370 }
e57c4de4
BA
371 // Gather all senders names, and then retrieve full identity:
372 // (TODO [perf]: some might be online...)
373 let names = {};
374 response.challenges.forEach(c => {
375 if (c.uid != this.st.user.id) names[c.uid] = "";
376 else if (!!c.target && c.target != this.st.user.id)
377 names[c.target] = "";
378 });
379 const addChallenges = () => {
380 names[this.st.user.id] = this.st.user.name; //in case of
381 this.challenges = this.challenges.concat(
382 response.challenges.map(c => {
383 const from = { name: names[c.uid], id: c.uid }; //or just name
384 const type = this.classifyObject(c);
385 const vname = this.getVname(c.vid);
386 return Object.assign(
387 {},
388 {
389 type: type,
390 vname: vname,
391 from: from,
392 to: c.target ? names[c.target] : ""
393 },
394 c
395 );
396 })
397 );
398 };
399 if (Object.keys(names).length > 0) {
400 ajax(
401 "/users",
402 "GET",
6808d7a1 403 {
e57c4de4
BA
404 data: { ids: Object.keys(names).join(",") },
405 success: (response2) => {
406 response2.users.forEach(u => {
407 names[u.id] = u.name;
408 });
409 addChallenges();
410 }
411 }
6808d7a1 412 );
e57c4de4
BA
413 } else addChallenges();
414 }
415 }
416 );
25d18342 417 },
8418f0d7 418 beforeDestroy: function() {
a041d5d8 419 document.removeEventListener('visibilitychange', this.visibilityChange);
71468011 420 this.send("disconnect");
8418f0d7 421 },
fb54f098 422 methods: {
28b32b4f
BA
423 getRandomnessClass: function(pc) {
424 return {
425 ["random-" + pc.randomness]: true
426 };
427 },
a041d5d8
BA
428 visibilityChange: function() {
429 // TODO: Use document.hidden? https://webplatform.news/issues/2019-03-27
430 this.send(
431 document.visibilityState == "visible"
432 ? "getfocus"
433 : "losefocus"
434 );
435 },
afde7666
BA
436 partialResetNewchallenge: function() {
437 // Reset potential target and custom FEN:
438 this.newchallenge.to = "";
439 this.newchallenge.fen = "";
440 this.newchallenge.diag = "";
28b32b4f 441 this.newchallenge.memorize = false;
afde7666
BA
442 },
443 showNewchallengeForm: function() {
444 this.partialResetNewchallenge();
445 window.doClick("modalNewgame");
446 },
28b32b4f
BA
447 addPresetChall: function(chall) {
448 // Add only if not already existing:
449 if (this.presetChalls.some(c =>
450 c.vid == chall.vid &&
451 c.cadence == chall.cadence &&
452 c.randomness == chall.randomness
453 )) {
454 return;
455 }
456 const L = this.presetChalls.length;
457 this.presetChalls.push({
458 index: L,
459 vid: chall.vid,
460 vname: chall.vname, //redundant, but easier
461 cadence: chall.cadence,
462 randomness: chall.randomness
463 });
464 localStorage.setItem("presetChalls", JSON.stringify(this.presetChalls));
465 },
466 removePresetChall: function(e, pchall) {
467 e.stopPropagation();
468 const pchallIdx = this.presetChalls.findIndex(pc => pc.index == pchall.index);
469 this.presetChalls.splice(pchallIdx, 1);
470 localStorage.setItem("presetChalls", JSON.stringify(this.presetChalls));
471 },
afde7666
BA
472 tchallButtonsMargin: function() {
473 if (!!this.curChallToAccept.fen) return { "margin-top": "10px" };
474 return {};
475 },
09d37571
BA
476 cadenceFocusIfOpened: function() {
477 if (event.target.checked)
478 document.getElementById("cadence").focus();
479 },
71468011 480 send: function(code, obj) {
f9c36b2d 481 if (!!this.conn) {
6808d7a1 482 this.conn.send(JSON.stringify(Object.assign({ code: code }, obj)));
51d87b52 483 }
71468011
BA
484 },
485 getVname: function(vid) {
486 const variant = this.st.variants.find(v => v.id == vid);
487 // this.st.variants might be uninitialized (variant == null)
6808d7a1 488 return variant ? variant.name : "";
71468011 489 },
6855163c
BA
490 filterChallenges: function(type) {
491 return this.challenges.filter(c => c.type == type);
492 },
493 filterGames: function(type) {
a9b131f1 494 return this.games.filter(g => g.type == type);
6855163c 495 },
6808d7a1 496 classifyObject: function(o) {
28b32b4f 497 // o: challenge or game
6808d7a1 498 return o.cadence.indexOf("d") === -1 ? "live" : "corr";
a6bddfc6 499 },
5bcc9b31
BA
500 setDisplay: function(letter, type, e) {
501 this[letter + "display"] = type;
6808d7a1
BA
502 localStorage.setItem(
503 "type-" + (letter == "c" ? "challenges" : "games"),
504 type
505 );
506 let elt = e
7f36b53a
BA
507 ? e.target
508 : document.getElementById("btn" + letter.toUpperCase() + type);
509 elt.classList.add("active");
2f258c37 510 elt.classList.remove("somethingnew"); //in case of
f9c36b2d 511 if (!!elt.previousElementSibling)
7f36b53a 512 elt.previousElementSibling.classList.remove("active");
6808d7a1 513 else elt.nextElementSibling.classList.remove("active");
7f36b53a
BA
514 },
515 isGamer: function(sid) {
a041d5d8
BA
516 return this.people[sid].pages
517 .some(p => p.focus && p.path.indexOf("/game/") >= 0);
518 },
519 isFocusedOnHall: function(sid) {
520 return (
521 // This is meant to challenge people, thus the next 2 conditions:
522 this.st.user.id > 0 &&
523 sid != this.st.user.sid &&
524 this.people[sid].pages.some(p => p.path == "/" && p.focus)
525 );
7f36b53a 526 },
6d6f45bc 527 challenge: function(sid) {
afde7666
BA
528 this.partialResetNewchallenge();
529 // Available, in Hall
6d6f45bc 530 this.newchallenge.to = this.people[sid].name;
28b32b4f 531 // TODO: also store target sid to not re-search for it
6d6f45bc
BA
532 document.getElementById("modalPeople").checked = false;
533 window.doClick("modalNewgame");
ac8f441c 534 },
6d6f45bc
BA
535 watchGame: function(sid) {
536 // In some game, maybe playing maybe not: show a random one
537 let gids = [];
538 this.people[sid].pages.forEach(p => {
a041d5d8
BA
539 if (p.focus) {
540 const matchGid = p.path.match(/[a-zA-Z0-9]+$/);
541 if (!!matchGid) gids.push(matchGid[0]);
542 }
6d6f45bc
BA
543 });
544 const gid = gids[Math.floor(Math.random() * gids.length)];
545 const game = this.games.find(g => g.id == gid);
f9c36b2d 546 if (!!game) this.showGame(game);
6d6f45bc 547 else this.$router.push("/game/" + gid); //game vs. me
71468011 548 },
51d87b52 549 showGame: function(g) {
71468011
BA
550 // NOTE: we are an observer, since only games I don't play are shown here
551 // ==> Moves sent by connected remote player(s) if live game
552 let url = "/game/" + g.id;
553 if (g.type == "live")
51d87b52 554 url += "?rid=" + g.rids[Math.floor(Math.random() * g.rids.length)];
71468011
BA
555 this.$router.push(url);
556 },
efdfb4c7 557 resetSocialColor: function() {
bd76b456 558 // TODO: this is called twice, once on opening an once on closing
2f258c37 559 document.getElementById("peopleBtn").classList.remove("somethingnew");
bd76b456 560 },
71468011 561 processChat: function(chat) {
6808d7a1 562 this.send("newchat", { data: chat });
a6bddfc6 563 },
f91bc5b0
BA
564 getOppsid: function(c) {
565 let oppsid = c.from.sid; //may not be defined if corr + offline opp
566 if (!oppsid) {
567 oppsid = Object.keys(this.people).find(
568 sid => this.people[sid].id == c.from.id
569 );
570 }
571 return oppsid;
572 },
a6bddfc6 573 // Messaging center:
9d58ef95 574 socketMessageListener: function(msg) {
6808d7a1 575 if (!this.conn) return;
9d58ef95 576 const data = JSON.parse(msg.data);
6808d7a1
BA
577 switch (data.code) {
578 case "pollclientsandgamers": {
51d87b52
BA
579 // Since people can be both in Hall and Game,
580 // need to track "askIdentity" requests:
71468011
BA
581 let identityAsked = {};
582 data.sockIds.forEach(s => {
7f36b53a 583 const page = s.page || "/";
6808d7a1 584 if (s.sid != this.st.user.sid && !identityAsked[s.sid]) {
6808d7a1 585 this.send("askidentity", { target: s.sid, page: page });
efdfb4c7 586 identityAsked[s.sid] = true;
71468011 587 }
a041d5d8 588 if (!this.people[s.sid]) {
efdfb4c7 589 // Do not set name or id: identity unknown yet
a041d5d8
BA
590 this.people[s.sid] = { pages: [{path: page, focus: true}] };
591 }
592 else if (!(this.people[s.sid].pages.find(p => p.path == page)))
593 this.people[s.sid].pages.push({ path: page, focus: true });
6808d7a1 594 if (!s.page)
efdfb4c7 595 // Peer is in Hall
28b32b4f 596 this.send("askchallenges", { target: s.sid });
efdfb4c7 597 // Peer is in Game
6808d7a1 598 else this.send("askgame", { target: s.sid, page: page });
5a3da968 599 });
ac8f441c 600 break;
71468011
BA
601 }
602 case "connect":
6808d7a1 603 case "gconnect": {
7f36b53a 604 const page = data.page || "/";
28b32b4f 605 // Only ask game / challenges if first connexion:
6808d7a1 606 if (!this.people[data.from]) {
a041d5d8 607 this.people[data.from] = { pages: [{ path: page, focus: true }] };
71468011 608 if (data.code == "connect")
28b32b4f 609 this.send("askchallenges", { target: data.from });
6808d7a1
BA
610 else this.send("askgame", { target: data.from, page: page });
611 } else {
efdfb4c7 612 // Append page if not already in list
a041d5d8
BA
613 if (!(this.people[data.from].pages.find(p => p.path == page)))
614 this.people[data.from].pages.push({ path: page, focus: true });
71468011 615 }
efdfb4c7
BA
616 if (!this.people[data.from].name && this.people[data.from].id !== 0) {
617 // Identity not known yet
51d87b52 618 this.newConnect[data.from] = true; //for self multi-connects tests
6808d7a1 619 this.send("askidentity", { target: data.from, page: page });
51d87b52 620 }
71468011 621 break;
7f36b53a 622 }
71468011 623 case "disconnect":
6808d7a1 624 case "gdisconnect": {
092de306
BA
625 // If the user reloads the page twice very quickly (experienced with Firefox),
626 // the first reload won't have time to connect but will trigger a "close" event anyway.
627 // ==> Next check is required.
6808d7a1 628 if (!this.people[data.from]) return;
71468011 629 // Disconnect means no more tmpIds:
6808d7a1 630 if (data.code == "disconnect") {
28b32b4f 631 // Remove the live challenges sent by this player:
e33e50fa
BA
632 ArrayFun.remove(
633 this.challenges,
28b32b4f
BA
634 c => c.type == "live" && c.from.sid == data.from,
635 "all"
e33e50fa 636 );
6808d7a1 637 } else {
51d87b52
BA
638 // Remove the matching live game if now unreachable
639 const gid = data.page.match(/[a-zA-Z0-9]+$/)[0];
640 const gidx = this.games.findIndex(g => g.id == gid);
6808d7a1 641 if (gidx >= 0) {
51d87b52 642 const game = this.games[gidx];
6808d7a1
BA
643 if (
644 game.type == "live" &&
645 game.rids.length == 1 &&
646 game.rids[0] == data.from
647 ) {
51d87b52
BA
648 this.games.splice(gidx, 1);
649 }
71468011
BA
650 }
651 }
51d87b52 652 const page = data.page || "/";
a041d5d8 653 ArrayFun.remove(this.people[data.from].pages, p => p.path == page);
51d87b52
BA
654 if (this.people[data.from].pages.length == 0)
655 this.$delete(this.people, data.from);
656 break;
6808d7a1 657 }
a041d5d8
BA
658 case "getfocus":
659 // If user reload a page, focus may arrive earlier than connect
660 if (!!this.people[data.from]) {
661 this.people[data.from].pages
662 .find(p => p.path == data.page).focus = true;
663 this.$forceUpdate(); //TODO: shouldn't be required
664 }
665 break;
666 case "losefocus":
667 if (!!this.people[data.from]) {
668 this.people[data.from].pages
669 .find(p => p.path == data.page).focus = false;
670 this.$forceUpdate(); //TODO: shouldn't be required
671 }
672 break;
51d87b52
BA
673 case "killed":
674 // I logged in elsewhere:
51d87b52 675 this.conn = null;
09d37571 676 alert(this.st.tr["New connexion detected: tab now offline"]);
5a3da968 677 break;
6808d7a1 678 case "askidentity": {
51d87b52
BA
679 // Request for identification (TODO: anonymous shouldn't need to reply)
680 const me = {
681 // Decompose to avoid revealing email
682 name: this.st.user.name,
683 sid: this.st.user.sid,
6808d7a1 684 id: this.st.user.id
51d87b52 685 };
6808d7a1 686 this.send("identity", { data: me, target: data.from });
5a3da968 687 break;
51d87b52 688 }
6808d7a1 689 case "identity": {
71468011 690 const user = data.data;
a041d5d8
BA
691 let player = this.people[user.sid];
692 // player.pages is already set
693 player.id = user.id;
694 player.name = user.name;
695 // TODO: this.$set(people, ...) fails. So forceUpdate.
696 // But this shouldn't be like that!
697 this.$forceUpdate();
f9c36b2d
BA
698 // If I multi-connect, kill current connexion if no mark (I'm older)
699 if (this.newConnect[user.sid]) {
6808d7a1 700 if (
6808d7a1
BA
701 user.id > 0 &&
702 user.id == this.st.user.id &&
f9c36b2d
BA
703 user.sid != this.st.user.sid &&
704 !this.killed[this.st.user.sid]
6808d7a1 705 ) {
6808d7a1 706 this.send("killme", { sid: this.st.user.sid });
51d87b52 707 this.killed[this.st.user.sid] = true;
51d87b52 708 }
f9c36b2d 709 delete this.newConnect[user.sid];
51d87b52 710 }
dcd68c41 711 break;
71468011 712 }
28b32b4f
BA
713 case "askchallenges": {
714 // Send my current live challenges (if any)
715 const myChallenges = this.challenges
716 .filter(c =>
717 c.from.sid == this.st.user.sid && c.type == "live"
718 )
719 .map(c => {
720 // NOTE: in principle, should only send targeted challenge to the target.
721 // But we may not know yet the identity of the target (just name),
722 // so cannot decide if data.from is the target or not.
723 return {
724 id: c.id,
725 from: this.st.user.sid,
726 to: c.to,
727 randomness: c.randomness,
728 fen: c.fen,
729 vid: c.vid,
730 cadence: c.cadence,
731 added: c.added
732 };
733 });
734 if (myChallenges.length > 0)
735 this.send("challenges", { data: myChallenges, target: data.from });
81d9ce72 736 break;
1efe1d79 737 }
28b32b4f
BA
738 case "challenges": //after "askchallenges"
739 data.data.forEach(this.addChallenge);
740 break;
741 case "newchallenge":
742 this.addChallenge(data.data);
81d9ce72 743 break;
6808d7a1 744 case "refusechallenge": {
71468011
BA
745 const cid = data.data;
746 ArrayFun.remove(this.challenges, c => c.id == cid);
747 alert(this.st.tr["Challenge declined"]);
748 break;
749 }
28b32b4f
BA
750 case "deletechallenge_s": {
751 // NOTE: the challenge(s) may be already removed
752 const cref = data.data;
753 if (!!cref.cid) ArrayFun.remove(this.challenges, c => c.id == cref.cid);
754 else if (!!cref.sids) {
755 cref.sids.forEach(s => {
756 ArrayFun.remove(
757 this.challenges,
758 c => c.type == "live" && c.from.sid == s,
759 "all"
760 );
761 });
762 }
71468011
BA
763 break;
764 }
765 case "game": //individual request
6808d7a1 766 case "newgame": {
71468011 767 const game = data.data;
c292ebb2 768 // Ignore games where I play (will go in MyGames page)
bd5c8a78 769 if (game.players.every(p =>
584f81b9 770 p.sid != this.st.user.sid || p.uid != this.st.user.id))
866842c3
BA
771 {
772 let locGame = this.games.find(g => g.id == game.id);
773 if (!locGame) {
774 let newGame = game;
775 newGame.type = this.classifyObject(game);
776 newGame.vname = this.getVname(game.vid);
777 if (!game.score)
e727fe31 778 // New game from Hall
866842c3
BA
779 newGame.score = "*";
780 newGame.rids = [game.rid];
781 delete newGame["rid"];
782 this.games.push(newGame);
783 if (
784 (newGame.type == "live" && this.gdisplay == "corr") ||
785 (newGame.type == "corr" && this.gdisplay == "live")
786 ) {
787 document
788 .getElementById("btnG" + newGame.type)
789 .classList.add("somethingnew");
790 }
791 } else {
792 // Append rid (if not already in list)
793 if (!locGame.rids.includes(game.rid)) locGame.rids.push(game.rid);
2f258c37 794 }
51d87b52 795 }
81d9ce72 796 break;
1efe1d79 797 }
6808d7a1 798 case "result": {
48ab808f 799 let g = this.games.find(g => g.id == data.gid);
28b32b4f 800 if (!!g) g.score = data.score;
48ab808f
BA
801 break;
802 }
6808d7a1 803 case "startgame": {
c292ebb2 804 // New game just started, I'm involved
71468011
BA
805 const gameInfo = data.data;
806 if (this.classifyObject(gameInfo) == "live")
807 this.startNewGame(gameInfo);
6808d7a1
BA
808 else {
809 this.infoMessage =
810 this.st.tr["New correspondance game:"] +
811 " <a href='#/game/" +
812 gameInfo.id +
813 "'>" +
814 "#/game/" +
815 gameInfo.id +
816 "</a>";
c292ebb2 817 document.getElementById("modalInfo").checked = true;
5d04793e 818 }
9d58ef95 819 break;
71468011 820 }
ac8f441c 821 case "newchat":
71468011 822 this.newChat = data.data;
bd76b456 823 if (!document.getElementById("modalPeople").checked)
2f258c37 824 document.getElementById("peopleBtn").classList.add("somethingnew");
9d58ef95
BA
825 break;
826 }
827 },
51d87b52 828 socketCloseListener: function() {
6808d7a1 829 if (!this.conn) return;
51d87b52
BA
830 this.conn = new WebSocket(this.connexionString);
831 this.conn.addEventListener("message", this.socketMessageListener);
832 this.conn.addEventListener("close", this.socketCloseListener);
833 },
a6bddfc6 834 // Challenge lifecycle:
28b32b4f
BA
835 addChallenge: function(chall) {
836 // NOTE about next condition: see "askchallenges" case.
837 if (
838 !chall.to ||
839 (this.people[chall.from].id > 0 &&
840 (chall.from == this.st.user.sid || chall.to == this.st.user.name))
841 ) {
842 let newChall = Object.assign({}, chall);
843 newChall.type = this.classifyObject(chall);
844 newChall.randomness = chall.randomness;
845 newChall.added = Date.now();
846 let fromValues = Object.assign({}, this.people[chall.from]);
847 delete fromValues["pages"]; //irrelevant in this context
848 newChall.from = Object.assign({ sid: chall.from }, fromValues);
849 newChall.vname = this.getVname(newChall.vid);
850 this.challenges.push(newChall);
851 if (
852 (newChall.type == "live" && this.cdisplay == "corr") ||
853 (newChall.type == "corr" && this.cdisplay == "live")
854 ) {
855 document
856 .getElementById("btnC" + newChall.type)
857 .classList.add("somethingnew");
858 }
859 }
860 },
725da57f
BA
861 loadNewchallVariant: async function(cb) {
862 const vname = this.getVname(this.newchallenge.vid);
863 const vModule = await import("@/variants/" + vname + ".js");
864 this.newchallenge.V = vModule.VariantRules;
865 this.newchallenge.vname = vname;
41c5b662 866 if (!!cb) cb();
725da57f
BA
867 },
868 trySetNewchallDiag: function() {
869 if (!this.newchallenge.fen) {
870 this.newchallenge.diag = "";
871 return;
872 }
873 // If vid > 0 then the variant is loaded (function above):
874 window.V = this.newchallenge.V;
875 if (
876 this.newchallenge.vid > 0 &&
f9c36b2d 877 !!this.newchallenge.fen &&
725da57f
BA
878 V.IsGoodFen(this.newchallenge.fen)
879 ) {
880 const parsedFen = V.ParseFen(this.newchallenge.fen);
881 this.newchallenge.diag = getDiagram({
882 position: parsedFen.position,
5b4de147 883 orientation: parsedFen.turn
725da57f
BA
884 });
885 }
886 },
28b32b4f
BA
887 newChallFromPreset(pchall) {
888 this.partialResetNewchallenge();
889 this.newchallenge.vid = pchall.vid;
890 this.newchallenge.cadence = pchall.cadence;
891 this.newchallenge.randomness = pchall.randomness;
41c5b662 892 this.loadNewchallVariant(this.issueNewChallenge);
28b32b4f
BA
893 },
894 issueNewChallenge: async function() {
188b4a8f 895 if (!!(this.newchallenge.cadence.match(/^[0-9]+$/)))
8477e53d
BA
896 this.newchallenge.cadence += "+0"; //assume minutes, no increment
897 const ctype = this.classifyObject(this.newchallenge);
898 // TODO: cadence still unchecked so ctype could be wrong...
6808d7a1 899 let error = "";
8477e53d 900 if (!this.newchallenge.vid)
6808d7a1 901 error = this.st.tr["Please select a variant"];
8477e53d
BA
902 else if (ctype == "corr" && this.st.user.id <= 0)
903 error = this.st.tr["Please log in to play correspondance games"];
f9c36b2d 904 else if (!!this.newchallenge.to) {
8477e53d
BA
905 if (this.newchallenge.to == this.st.user.name)
906 error = this.st.tr["Self-challenge is forbidden"];
907 else if (
908 ctype == "live" &&
909 Object.values(this.people).every(p => p.name != this.newchallenge.to)
910 )
911 error = this.newchallenge.to + " " + this.st.tr["is not online"];
912 }
6808d7a1
BA
913 if (error) {
914 alert(error);
915 return;
916 }
725da57f 917 window.V = this.newchallenge.V;
6808d7a1 918 error = checkChallenge(this.newchallenge);
6808d7a1
BA
919 if (error) {
920 alert(error);
921 return;
922 }
bb7dd7db 923 // NOTE: "from" information is not required here
a7808884 924 let chall = Object.assign({}, this.newchallenge);
28b32b4f
BA
925 // Add only if not already issued (not counting target or FEN):
926 if (this.challenges.some(c =>
927 (c.from.sid == this.st.user.sid || c.from.id == this.st.user.id) &&
928 c.vid == chall.vid &&
929 c.cadence == chall.cadence &&
930 c.randomness == chall.randomness
931 )) {
932 alert(this.st.tr["Challenge already exists"]);
933 return;
934 }
935 if (this.newchallenge.memorize) this.addPresetChall(this.newchallenge);
7ba4a5bc
BA
936 delete chall["V"];
937 delete chall["diag"];
6808d7a1 938 const finishAddChallenge = cid => {
1efe1d79 939 chall.id = cid || "c" + getRandString();
28b32b4f
BA
940 const MAX_ALLOWED_CHALLS = 3;
941 // Remove oldest challenge if 3 found: only 3 at a time of a given type
942 let countMyChalls = 0;
943 let challToDelIdx = 0;
944 let oldestAdded = Number.MAX_SAFE_INTEGER;
945 for (let i=0; i<this.challenges.length; i++) {
946 const c = this.challenges[i];
947 if (
948 c.type == ctype &&
949 (c.from.sid == this.st.user.sid || c.from.id == this.st.user.id)
950 ) {
951 countMyChalls++;
952 if (c.added < oldestAdded) {
953 challToDelIdx = i;
954 oldestAdded = c.added;
955 }
956 }
957 }
958 if (countMyChalls >= MAX_ALLOWED_CHALLS) {
959 this.send(
960 "deletechallenge_s",
961 { data: { cid: this.challenges[challToDelIdx].id } }
962 );
6808d7a1 963 if (ctype == "corr") {
e57c4de4
BA
964 ajax(
965 "/challenges",
966 "DELETE",
28b32b4f 967 { data: { id: this.challenges[challToDelIdx].id } }
e57c4de4 968 );
5ea8d113 969 }
28b32b4f 970 this.challenges.splice(challToDelIdx, 1);
5ea8d113 971 }
6808d7a1
BA
972 this.send("newchallenge", {
973 data: Object.assign({ from: this.st.user.sid }, chall)
974 });
5ea8d113 975 // Add new challenge:
6808d7a1 976 chall.from = {
725da57f 977 // Decompose to avoid revealing email
dcd68c41
BA
978 sid: this.st.user.sid,
979 id: this.st.user.id,
6808d7a1 980 name: this.st.user.name
dcd68c41 981 };
71468011
BA
982 chall.added = Date.now();
983 // NOTE: vname and type are redundant (can be deduced from cadence + vid)
984 chall.type = ctype;
725da57f 985 chall.vname = this.newchallenge.vname;
1efe1d79 986 this.challenges.push(chall);
71468011
BA
987 // Remember cadence + vid for quicker further challenges:
988 localStorage.setItem("cadence", chall.cadence);
25d18342 989 localStorage.setItem("vid", chall.vid);
6b7b2cf7 990 localStorage.setItem("challRandomness", chall.randomness);
b4d619d1 991 document.getElementById("modalNewgame").checked = false;
db1f1f9a
BA
992 // Show the challenge if not on current display
993 if (
994 (ctype == "live" && this.cdisplay == "corr") ||
995 (ctype == "corr" && this.cdisplay == "live")
996 ) {
997 this.setDisplay('c', ctype);
998 }
b4d619d1 999 };
6808d7a1 1000 if (ctype == "live") {
1efe1d79 1001 // Live challenges have a random ID
71468011 1002 finishAddChallenge(null);
6808d7a1 1003 } else {
b4d619d1 1004 // Correspondance game: send challenge to server
e57c4de4
BA
1005 ajax(
1006 "/challenges",
1007 "POST",
1008 {
1009 data: { chall: chall },
1010 success: (response) => {
1011 finishAddChallenge(response.cid);
1012 }
1013 }
1014 );
9d58ef95 1015 }
fb54f098 1016 },
725da57f
BA
1017 // Callback function after a diagram was showed to accept
1018 // or refuse targetted challenge:
1019 decisionChallenge: function(accepted) {
1020 this.curChallToAccept.accepted = accepted;
1021 this.finishProcessingChallenge(this.curChallToAccept);
1022 document.getElementById("modalAccept").checked = false;
1023 },
1024 finishProcessingChallenge: function(c) {
1025 if (c.accepted) {
1026 c.seat = {
1027 // Again, avoid c.seat = st.user to not reveal email
1028 sid: this.st.user.sid,
1029 id: this.st.user.id,
1030 name: this.st.user.name
1031 };
1032 this.launchGame(c);
28b32b4f
BA
1033 if (c.type == "live")
1034 // Remove all live challenges of both players
1035 this.send("deletechallenge_s", { data: { sids: [c.from.sid, c.seat.sid] } });
1036 else
1037 // Corr challenge: just remove the challenge
1038 this.send("deletechallenge_s", { data: { cid: c.id } });
725da57f 1039 } else {
f91bc5b0 1040 const oppsid = this.getOppsid(c);
f9c36b2d 1041 if (!!oppsid)
f91bc5b0 1042 this.send("refusechallenge", { data: c.id, target: oppsid });
e57c4de4
BA
1043 if (c.type == "corr") {
1044 ajax(
1045 "/challenges",
1046 "DELETE",
1047 { data: { id: c.id } }
1048 );
1049 }
28b32b4f 1050 this.send("deletechallenge_s", { data: { cid: c.id } });
725da57f 1051 }
725da57f 1052 },
e727fe31 1053 // TODO: if several players click same challenge at the same time: problem
725da57f 1054 clickChallenge: async function(c) {
6808d7a1
BA
1055 const myChallenge =
1056 c.from.sid == this.st.user.sid || //live
1057 (this.st.user.id > 0 && c.from.id == this.st.user.id); //corr
1058 if (!myChallenge) {
1059 if (c.type == "corr" && this.st.user.id <= 0) {
1060 alert(this.st.tr["Please log in to accept corr challenges"]);
1061 return;
1062 }
a6bddfc6 1063 c.accepted = true;
725da57f
BA
1064 const vModule = await import("@/variants/" + c.vname + ".js");
1065 window.V = vModule.VariantRules;
f9c36b2d 1066 if (!!c.to) {
725da57f 1067 // c.to == this.st.user.name (connected)
f9c36b2d 1068 if (!!c.fen) {
725da57f 1069 const parsedFen = V.ParseFen(c.fen);
0cd02605 1070 c.mycolor = V.GetOppCol(parsedFen.turn);
725da57f
BA
1071 this.tchallDiag = getDiagram({
1072 position: parsedFen.position,
0cd02605 1073 orientation: c.mycolor
725da57f 1074 });
725da57f 1075 }
afde7666
BA
1076 this.curChallToAccept = c;
1077 document.getElementById("modalAccept").checked = true;
485fccd5 1078 }
afde7666 1079 else this.finishProcessingChallenge(c);
725da57f 1080 }
6808d7a1 1081 else {
725da57f 1082 // My challenge
e57c4de4
BA
1083 if (c.type == "corr") {
1084 ajax(
1085 "/challenges",
1086 "DELETE",
1087 { data: { id: c.id } }
1088 );
1089 }
28b32b4f 1090 this.send("deletechallenge_s", { data: { cid: c.id } });
485fccd5 1091 }
5ea8d113 1092 // In all cases, the challenge is consumed:
3d55deea 1093 ArrayFun.remove(this.challenges, ch => ch.id == c.id);
a6bddfc6 1094 },
a64d9122 1095 // NOTE: when launching game, the challenge is already being deleted
725da57f 1096 launchGame: function(c) {
584f81b9
BA
1097 let players =
1098 !!c.mycolor
1099 ? (c.mycolor == "w" ? [c.seat, c.from] : [c.from, c.seat])
1100 : shuffle([c.from, c.seat]);
1101 // Convention for players IDs in stored games is 'uid'
1102 players.forEach(p => {
1103 let pWithUid = p;
1104 pWithUid["uid"] = p.id;
1105 delete pWithUid["id"];
1106 });
71468011 1107 // These game informations will be shared
6808d7a1 1108 let gameInfo = {
11667c79 1109 id: getRandString(),
7ba4a5bc 1110 fen: c.fen || V.GenRandInitFen(c.randomness),
0cd02605
BA
1111 // White player index 0, black player index 1:
1112 players: c.mycolor
1113 ? (c.mycolor == "w" ? [c.seat, c.from] : [c.from, c.seat])
1114 : shuffle([c.from, c.seat]),
a6bddfc6 1115 vid: c.vid,
6808d7a1 1116 cadence: c.cadence
a6bddfc6 1117 };
71468011 1118 const notifyNewgame = () => {
f91bc5b0 1119 const oppsid = this.getOppsid(c);
f9c36b2d 1120 if (!!oppsid)
c292ebb2 1121 // Opponent is online
6808d7a1 1122 this.send("startgame", { data: gameInfo, target: oppsid });
c292ebb2
BA
1123 // Send game info (only if live) to everyone except me and opponent
1124 // TODO: this double message send could be avoided.
1125 this.send("newgame", { data: gameInfo, oppsid: oppsid });
cafe0166
BA
1126 // Also to MyGames page:
1127 this.send(
1128 "notifynewgame",
1129 {
1130 data: gameInfo,
1131 targets: gameInfo.players.map(p => {
1132 return { sid: p.sid, uid: p.uid };
1133 })
1134 }
1135 );
411d23cd 1136 };
6808d7a1 1137 if (c.type == "live") {
71468011 1138 notifyNewgame();
485fccd5 1139 this.startNewGame(gameInfo);
c292ebb2
BA
1140 } else {
1141 // corr: game only on server
485fccd5
BA
1142 ajax(
1143 "/games",
1144 "POST",
e57c4de4
BA
1145 {
1146 // cid is useful to delete the challenge:
1147 data: { gameInfo: gameInfo, cid: c.id },
1148 success: (response) => {
1149 gameInfo.id = response.gameId;
1150 notifyNewgame();
1151 this.$router.push("/game/" + response.gameId);
1152 }
411d23cd 1153 }
485fccd5
BA
1154 );
1155 }
fb54f098 1156 },
a9b131f1 1157 // NOTE: for live games only (corr games start on the server)
42c15a75 1158 startNewGame: function(gameInfo) {
c292ebb2
BA
1159 const game = Object.assign(
1160 {},
1161 gameInfo,
1162 {
1163 // (other) Game infos: constant
1164 fenStart: gameInfo.fen,
1165 vname: this.getVname(gameInfo.vid),
1166 created: Date.now(),
1167 // Game state (including FEN): will be updated
1168 moves: [],
1169 clocks: [-1, -1], //-1 = unstarted
1170 initime: [0, 0], //initialized later
1171 score: "*"
8477e53d 1172 }
c292ebb2
BA
1173 );
1174 setTimeout(
1175 () => {
1176 GameStorage.add(game, (err) => {
1177 // If an error occurred, game is not added: a tab already
1178 // added the game and (if focused) is redirected toward it.
1179 // If no error and the tab is hidden: do not show anything.
1180 if (!err && !document.hidden) {
1181 if (this.st.settings.sound)
1182 new Audio("/sounds/newgame.flac").play().catch(() => {});
1183 this.$router.push("/game/" + gameInfo.id);
1184 }
1185 });
1186 },
1187 document.hidden ? 500 + 1000 * Math.random() : 0
1188 );
6808d7a1
BA
1189 }
1190 }
85e5b5c1 1191};
ccd4a2b7 1192</script>
85e5b5c1 1193
41c80bb6 1194<style lang="sass" scoped>
5bcc9b31
BA
1195.active
1196 color: #42a983
a154d45e
BA
1197
1198#infoDiv > .card
f854c94f
BA
1199 padding: 15px 0
1200 max-width: 430px
a154d45e 1201
725da57f 1202#newgameDiv > .card, #acceptDiv > .card
a154d45e
BA
1203 max-width: 767px
1204 max-height: 100%
1205
bd76b456
BA
1206div#peopleWrap > .card
1207 max-height: 100%
1208
1209@media screen and (min-width: 1281px)
1210 div#peopleWrap > .card
1211 max-width: 66.67%
1212
1213@media screen and (max-width: 1280px)
1214 div#peopleWrap > .card
1215 max-width: 83.33%
1216
1217@media screen and (max-width: 767px)
1218 div#peopleWrap > .card
1219 max-width: 100%
1220
ed06d9e9
BA
1221#players
1222 width: 50%
1223 position: relative
1224 float: left
910d631b 1225
ed06d9e9
BA
1226#chat
1227 width: 50%
1228 float: left
1229 position: relative
910d631b 1230
ed06d9e9
BA
1231@media screen and (max-width: 767px)
1232 #players, #chats
1233 width: 100%
910d631b 1234
72ccbd67
BA
1235#chat > .card
1236 max-width: 100%
1237 margin: 0;
1238 border: none;
910d631b 1239
41c80bb6 1240#players > p
ed06d9e9 1241 margin-left: 5px
910d631b 1242
dcd68c41
BA
1243.anonymous
1244 font-style: italic
910d631b 1245
dcd68c41 1246button.player-action
41c80bb6 1247 margin-left: 32px
2f258c37
BA
1248
1249.somethingnew
1250 background-color: #c5fefe !important
1251
1252.tabbtn
5fe7e71c 1253 background-color: #f9faee
2f258c37 1254
725da57f
BA
1255button.acceptBtn
1256 background-color: lightgreen
1257button.refuseBtn
1258 background-color: red
1259
1260#buttonsTchall
afde7666 1261 // margin-top set dynamically (depends if diagram showed or not)
5b4de147
BA
1262 & > button > span
1263 width: 100%
1264 text-align: center
725da57f
BA
1265
1266.variantName
1267 font-weight: bold
1268
1269.diagram
1270 margin: 0 auto
1271 max-width: 400px
5b4de147
BA
1272 // width: 100% required for Firefox
1273 width: 100%
725da57f
BA
1274
1275#inputFen
1276 width: 100%
1277
2f258c37
BA
1278#div2, #div3
1279 margin-top: 15px
1280@media screen and (max-width: 767px)
1281 #div2, #div3
1282 margin-top: 0
28b32b4f
BA
1283
1284tr > td
1285 &.random-0
1286 background-color: #FF5733
1287 &.random-1
1288 background-color: #2B63B4
1289 &.random-2
1290 background-color: #33B42B
1291
4222cf78
BA
1292@media screen and (max-width: 767px)
1293 h4
1294 margin: 5px 0
1295
28b32b4f
BA
1296td.remove-preset
1297 background-color: lightgrey
1298 text-align: center
1299 & > img
1300 height: 1em
85e5b5c1 1301</style>