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