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