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