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