Styling
[vchess.git] / client / src / views / Hall.vue
CommitLineData
ccd4a2b7 1<template lang="pug">
9d58ef95 2main
dce792f6
BA
3 input#modalInfo.modal(type="checkbox")
4 div(role="dialog" aria-labelledby="infoMessage")
5 .card.smallpad.small-modal.text-center
6 label.modal-close(for="modalInfo")
7 h3#infoMessage.section
3d55deea 8 p(v-html="infoMessage")
5b020e73
BA
9 input#modalNewgame.modal(type="checkbox")
10 div(role="dialog" aria-labelledby="titleFenedit")
c97830ea 11 .card.smallpad(@keyup.enter="newChallenge")
5b020e73
BA
12 label#closeNewgame.modal-close(for="modalNewgame")
13 fieldset
14 label(for="selectVariant") {{ st.tr["Variant"] }}
9d58ef95 15 select#selectVariant(v-model="newchallenge.vid")
85e5b5c1 16 option(v-for="v in st.variants" :value="v.id") {{ v.name }}
5b020e73 17 fieldset
b4d619d1 18 label(for="timeControl") {{ st.tr["Time control"] }}
9d58ef95 19 input#timeControl(type="text" v-model="newchallenge.timeControl"
b4d619d1
BA
20 placeholder="3m+2s, 1h+30s, 7d+1d ...")
21 fieldset(v-if="st.user.id > 0")
9d58ef95 22 label(for="selectPlayers") {{ st.tr["Play with? (optional)"] }}
6fba6e0c 23 input#selectPlayers(type="text" v-model="newchallenge.to")
b4d619d1 24 fieldset(v-if="st.user.id > 0")
9d58ef95
BA
25 label(for="inputFen") {{ st.tr["FEN (optional)"] }}
26 input#inputFen(type="text" v-model="newchallenge.fen")
b4d619d1 27 button(@click="newChallenge") {{ st.tr["Send challenge"] }}
9d58ef95 28 .row
9ca1e26b
BA
29 .col-sm-12
30 button#newGame(onClick="doClick('modalNewgame')") New game
9d58ef95 31 .row
9ca1e26b 32 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
6855163c
BA
33 .collapse
34 input#challengeSection(type="radio" checked aria-hidden="true" name="accordion")
35 label(for="challengeSection" aria-hidden="true") Challenges
36 div
37 .button-group
38 button(@click="cdisplay='live'") Live Challenges
39 button(@click="cdisplay='corr'") Correspondance challenges
40 ChallengeList(v-show="cdisplay=='live'"
41 :challenges="filterChallenges('live')" @click-challenge="clickChallenge")
42 ChallengeList(v-show="cdisplay=='corr'"
43 :challenges="filterChallenges('corr')" @click-challenge="clickChallenge")
1efe1d79 44 input#peopleSection(type="radio" aria-hidden="true" name="accordion")
6855163c
BA
45 label(for="peopleSection" aria-hidden="true") People
46 div
1efe1d79
BA
47 .button-group
48 button(@click="pdisplay='players'") Players
49 button(@click="pdisplay='chat'") Chat
6855163c
BA
50 #players(v-show="pdisplay=='players'")
51 h3 Online players
52 .player(v-for="p in uniquePlayers" @click="tryChallenge(p)"
53 :class="{anonymous: !!p.count}"
54 )
55 | {{ p.name + (!!p.count ? " ("+p.count+")" : "") }}
56 #chat(v-show="pdisplay=='chat'")
9ca1e26b 57 Chat(:players="[]")
1efe1d79 58 input#gameSection(type="radio" aria-hidden="true" name="accordion")
6855163c
BA
59 label(for="gameSection" aria-hidden="true") Games
60 div
61 .button-group
62 button(@click="gdisplay='live'") Live games
63 button(@click="gdisplay='corr'") Correspondance games
64 GameList(v-show="gdisplay=='live'" :games="filterGames('live')"
65 @show-game="showGame")
66 GameList(v-show="gdisplay=='corr'" :games="filterGames('corr')"
67 @show-game="showGame")
625022fd
BA
68</template>
69
70<script>
5b020e73 71import { store } from "@/store";
9d58ef95
BA
72import { checkChallenge } from "@/data/challengeCheck";
73import { ArrayFun } from "@/utils/array";
03608482 74import { ajax } from "@/utils/ajax";
4b0384fa 75import { getRandString, shuffle } from "@/utils/alea";
603b8a8b 76import Chat from "@/components/Chat.vue";
5b020e73
BA
77import GameList from "@/components/GameList.vue";
78import ChallengeList from "@/components/ChallengeList.vue";
967a2686 79import { GameStorage } from "@/utils/gameStorage";
625022fd 80export default {
cf2343ce 81 name: "my-hall",
5b020e73 82 components: {
603b8a8b 83 Chat,
5b020e73
BA
84 GameList,
85 ChallengeList,
86 },
fb54f098
BA
87 data: function () {
88 return {
5b020e73 89 st: store.state,
6855163c
BA
90 cdisplay: "live", //or corr
91 pdisplay: "players", //or chat
fb54f098 92 gdisplay: "live",
6855163c 93 games: [],
b4d619d1 94 challenges: [],
92a523d1 95 people: [], //people in main hall
3d55deea 96 infoMessage: "",
9d58ef95 97 newchallenge: {
fb54f098
BA
98 fen: "",
99 vid: 0,
6fba6e0c 100 to: "", //name of challenged player (if any)
6faa92f2 101 timeControl: "", //"2m+2s" ...etc
fb54f098
BA
102 },
103 };
104 },
fd7aea36
BA
105 watch: {
106 // st.variants changes only once, at loading from [] to [...]
107 "st.variants": function(variantArray) {
108 // Set potential challenges and games variant names:
109 this.challenges.forEach(c => {
110 if (c.vname == "")
111 c.vname = this.getVname(c.vid);
112 });
113 this.games.forEach(g => {
114 if (g.vname == "")
f41ce580 115 g.vname = this.getVname(g.vid);
fd7aea36
BA
116 });
117 },
118 },
b4d619d1
BA
119 computed: {
120 uniquePlayers: function() {
6855163c 121 // Show e.g. "@nonymous (5)", and do nothing on click on anonymous
bcaa8c00
BA
122 let anonymous = {name:"@nonymous", count:0};
123 let playerList = {};
6fba6e0c 124 this.people.forEach(p => {
b4d619d1 125 if (p.id > 0)
bcaa8c00
BA
126 {
127 // We don't count registered users connections: either they are here or not.
128 if (!playerList[p.id])
129 playerList[p.id] = {name: p.name, count: 0};
130 }
b4d619d1 131 else
4d64881e 132 anonymous.count++;
b4d619d1 133 });
4d64881e 134 if (anonymous.count > 0)
bcaa8c00
BA
135 playerList[0] = anonymous;
136 return Object.values(playerList);
b4d619d1
BA
137 },
138 },
9d58ef95 139 created: function() {
4d64881e 140 // Always add myself to players' list
66d03f23
BA
141 const my = this.st.user;
142 this.people.push({sid:my.sid, id:my.id, name:my.name});
f6f2bef1
BA
143 // Retrieve live challenge (not older than 30 minute) if any:
144 const chall = JSON.parse(localStorage.getItem("challenge") || "false");
145 if (!!chall)
146 {
147 if ((Date.now() - chall.added)/1000 <= 30*60)
148 this.challenges.push(chall);
149 else
150 localStorage.removeItem("challenge");
151 }
3d55deea
BA
152 // Ask server for current corr games (all but mines)
153 ajax(
154 "/games",
155 "GET",
156 {uid: this.st.user.id, excluded: true},
157 response => {
158 this.games = this.games.concat(response.games.map(g => {
159 const type = this.classifyObject(g);
160 const vname = this.getVname(g.vid);
161 return Object.assign({}, g, {type: type, vname: vname});
162 }));
163 }
164 );
165 // Also ask for corr challenges (open + sent to me)
166 ajax(
167 "/challenges",
168 "GET",
169 {uid: this.st.user.id},
170 response => {
171 // Gather all senders names, and then retrieve full identity:
172 // (TODO [perf]: some might be online...)
173 const uids = response.challenges.map(c => { return c.uid });
174 ajax("/users",
175 "GET",
176 { ids: uids.join(",") },
177 response2 => {
178 let names = {};
179 response2.users.forEach(u => {names[u.id] = u.name});
180 this.challenges = this.challenges.concat(
181 response.challenges.map(c => {
182 // (just players names in fact)
183 const from = {name: names[c.uid], id: c.uid};
184 const type = this.classifyObject(c);
185 const vname = this.getVname(c.vid);
186 return Object.assign({}, c, {type: type, vname: vname, from: from});
187 })
188 )
189 }
190 );
191 }
192 );
2ada153c 193 // 0.1] Ask server for room composition:
7b01e447 194 const funcPollClients = () => {
81d9ce72 195 this.st.conn.send(JSON.stringify({code:"pollclients"}));
4d64881e 196 };
7b01e447
BA
197 if (!!this.st.conn && this.st.conn.readyState == 1) //1 == OPEN state
198 funcPollClients();
199 else //socket not ready yet (initial loading)
3cb412e9 200 this.st.conn.onopen = funcPollClients;
4d64881e
BA
201 this.st.conn.onmessage = this.socketMessageListener;
202 const socketCloseListener = () => {
cdb34c93 203 store.socketCloseListener(); //reinitialize connexion (in store.js)
4d64881e
BA
204 this.st.conn.addEventListener('message', this.socketMessageListener);
205 this.st.conn.addEventListener('close', socketCloseListener);
206 };
207 this.st.conn.onclose = socketCloseListener;
9d58ef95 208 },
fb54f098 209 methods: {
a6bddfc6 210 // Helpers:
6855163c
BA
211 filterChallenges: function(type) {
212 return this.challenges.filter(c => c.type == type);
213 },
214 filterGames: function(type) {
a9b131f1 215 return this.games.filter(g => g.type == type);
6855163c 216 },
2ada153c 217 classifyObject: function(o) { //challenge or game
6855163c 218 // Heuristic: should work for most cases... (TODO)
2ada153c 219 return (o.timeControl.indexOf('d') === -1 ? "live" : "corr");
6855163c 220 },
2ada153c 221 showGame: function(g) {
5bd05dba 222 // NOTE: we are an observer, since only games I don't play are shown here
2ada153c 223 // ==> Moves sent by connected remote player(s) if live game
d9b86b16 224 let url = "/game/" + g.id;
2ada153c 225 if (g.type == "live")
dc284d90 226 url += "?rid=" + g.rid;
2ada153c 227 this.$router.push(url);
a6bddfc6
BA
228 },
229 getVname: function(vid) {
f41ce580
BA
230 const variant = this.st.variants.find(v => v.id == vid);
231 // this.st.variants might be uninitialized (variant == null)
232 return (!!variant ? variant.name : "");
a6bddfc6
BA
233 },
234 getSid: function(pname) {
6fba6e0c
BA
235 const pIdx = this.people.findIndex(pl => pl.name == pname);
236 return (pIdx === -1 ? null : this.people[pIdx].sid);
a6bddfc6 237 },
5bd05dba 238 getPname: function(sid) {
6fba6e0c
BA
239 const pIdx = this.people.findIndex(pl => pl.sid == sid);
240 return (pIdx === -1 ? null : this.people[pIdx].name);
5bd05dba 241 },
a6bddfc6
BA
242 sendSomethingTo: function(to, code, obj, warnDisconnected) {
243 const doSend = (code, obj, sid) => {
244 this.st.conn.send(JSON.stringify(Object.assign(
245 {},
246 {code: code},
247 obj,
248 {target: sid}
249 )));
250 };
c9695cb1 251 if (!!to)
a6bddfc6 252 {
c9695cb1
BA
253 // Challenge with targeted players
254 const targetSid = this.getSid(to);
255 if (!targetSid)
256 {
257 if (!!warnDisconnected)
258 alert("Warning: " + pname + " is not connected");
259 }
260 else
261 doSend(code, obj, targetSid);
a6bddfc6
BA
262 }
263 else
264 {
265 // Open challenge: send to all connected players (except us)
6fba6e0c 266 this.people.forEach(p => {
a6bddfc6
BA
267 if (p.sid != this.st.user.sid) //only sid is always set
268 doSend(code, obj, p.sid);
269 });
270 }
271 },
272 // Messaging center:
9d58ef95
BA
273 socketMessageListener: function(msg) {
274 const data = JSON.parse(msg.data);
275 switch (data.code)
276 {
6d9f4315
BA
277 case "duplicate":
278 alert("Warning: duplicate 'offline' connection");
279 break;
f4f4c03c 280 // 0.2] Receive clients list (just socket IDs)
81d9ce72 281 case "pollclients":
1efe1d79 282 {
5a3da968 283 data.sockIds.forEach(sid => {
6fba6e0c 284 this.people.push({sid:sid, id:0, name:""});
81d9ce72 285 // Ask identity, challenges and game(s)
5a3da968 286 this.st.conn.send(JSON.stringify({code:"askidentity", target:sid}));
2ada153c 287 this.st.conn.send(JSON.stringify({code:"askchallenge", target:sid}));
5a3da968 288 });
cd0d7743
BA
289 // Also ask current games to all playing peers (TODO: some design issue)
290 this.st.conn.send(JSON.stringify({code:"askgames"}));
5a3da968 291 break;
1efe1d79 292 }
81d9ce72 293 case "askidentity":
1efe1d79 294 {
6855163c
BA
295 // Request for identification: reply if I'm not anonymous
296 if (this.st.user.id > 0)
297 {
298 this.st.conn.send(JSON.stringify(
66d03f23
BA
299 // people[0] instead of st.user to avoid sending email
300 {code:"identity", user:this.people[0], target:data.from}));
6855163c 301 }
5a3da968 302 break;
1efe1d79 303 }
dd75774d 304 case "askchallenge":
1efe1d79 305 {
6855163c 306 // Send my current live challenge (if any)
dd75774d 307 const cIdx = this.challenges
6855163c 308 .findIndex(c => c.from.sid == this.st.user.sid && c.type == "live");
dd75774d
BA
309 if (cIdx >= 0)
310 {
311 const c = this.challenges[cIdx];
312 const myChallenge =
313 {
81d9ce72 314 // Minimal challenge informations: (from not required)
2ada153c 315 id: c.id,
81d9ce72
BA
316 to: c.to,
317 fen: c.fen,
318 vid: c.vid,
319 timeControl: c.timeControl
dd75774d
BA
320 };
321 this.st.conn.send(JSON.stringify({code:"challenge",
42c15a75 322 chall:myChallenge, target:data.from}));
81d9ce72
BA
323 }
324 break;
1efe1d79 325 }
5a3da968 326 case "identity":
1efe1d79 327 {
6fba6e0c
BA
328 const pIdx = this.people.findIndex(p => p.sid == data.user.sid);
329 this.people[pIdx].id = data.user.id;
330 this.people[pIdx].name = data.user.name;
5a3da968 331 break;
1efe1d79 332 }
dd75774d 333 case "challenge":
1efe1d79 334 {
dd75774d 335 // Receive challenge from some player (+sid)
6855163c 336 let newChall = data.chall;
2ada153c 337 newChall.type = this.classifyObject(data.chall);
6fba6e0c
BA
338 const pIdx = this.people.findIndex(p => p.sid == data.from);
339 newChall.from = this.people[pIdx]; //may be anonymous
42c15a75 340 newChall.added = Date.now(); //TODO: this is reception timestamp, not creation
25996aed 341 newChall.vname = this.getVname(newChall.vid);
6855163c 342 this.challenges.push(newChall);
81d9ce72 343 break;
1efe1d79 344 }
dd75774d 345 case "game":
1efe1d79 346 {
6855163c 347 // Receive game from some player (+sid)
6855163c 348 // NOTE: it may be correspondance (if newgame while we are connected)
d9b86b16
BA
349 if (!this.games.some(g => g.id == data.game.id)) //ignore duplicates
350 {
351 let newGame = data.game;
352 newGame.type = this.classifyObject(data.game);
a9b131f1 353 newGame.vname = this.getVname(data.game.vid);
d9b86b16
BA
354 newGame.rid = data.from;
355 newGame.score = "*";
356 this.games.push(newGame);
357 }
81d9ce72 358 break;
1efe1d79 359 }
9d58ef95 360 case "newgame":
1efe1d79 361 {
66d03f23
BA
362 // TODO: next line required ?!
363 //ArrayFun.remove(this.challenges, c => c.id == data.cid);
5d04793e 364 // New game just started: data contain all information
66d03f23 365 if (this.classifyObject(data.gameInfo) == "live")
5d04793e 366 this.startNewGame(data.gameInfo);
5d04793e
BA
367 else
368 {
3d55deea 369 this.infoMessage = "New game started: " +
11667c79
BA
370 "<a href='#/game/" + data.gameInfo.id + "'>" +
371 "#/game/" + data.gameInfo.id + "</a>";
dce792f6
BA
372 let modalBox = document.getElementById("modalInfo");
373 modalBox.checked = true;
3d55deea 374 setTimeout(() => { modalBox.checked = false; }, 3000);
5d04793e 375 }
9d58ef95 376 break;
1efe1d79 377 }
bb7dd7db
BA
378 case "refusechallenge":
379 {
485fccd5 380 alert(this.getPname(data.from) + " declined your challenge");
5bd05dba 381 ArrayFun.remove(this.challenges, c => c.id == data.cid);
bb7dd7db
BA
382 break;
383 }
1efe1d79
BA
384 case "deletechallenge":
385 {
1ba761c8 386 // NOTE: the challenge may be already removed
9d58ef95 387 ArrayFun.remove(this.challenges, c => c.id == data.cid);
66d03f23 388 localStorage.removeItem("challenge"); //in case of
9d58ef95 389 break;
1efe1d79 390 }
b4d619d1 391 case "connect":
1efe1d79 392 {
c6788ecf
BA
393 this.people.push({name:"", id:0, sid:data.from});
394 this.st.conn.send(JSON.stringify({code:"askidentity", target:data.from}));
395 this.st.conn.send(JSON.stringify({code:"askchallenge", target:data.from}));
396 this.st.conn.send(JSON.stringify({code:"askgame", target:data.from}));
9d58ef95 397 break;
1efe1d79 398 }
b4d619d1 399 case "disconnect":
1efe1d79 400 {
c6788ecf 401 ArrayFun.remove(this.people, p => p.sid == data.from);
a6bddfc6 402 // Also remove all challenges sent by this player:
c6788ecf 403 ArrayFun.remove(this.challenges, c => c.from.sid == data.from);
2ada153c
BA
404 // And all live games where he plays and no other opponent is online
405 ArrayFun.remove(this.games, g =>
c6788ecf 406 g.type == "live" && (g.players.every(p => p.sid == data.from
6fba6e0c 407 || !this.people.some(pl => pl.sid == p.sid))), "all");
9d58ef95 408 break;
1efe1d79 409 }
9d58ef95
BA
410 }
411 },
a6bddfc6 412 // Challenge lifecycle:
b4d619d1
BA
413 tryChallenge: function(player) {
414 if (player.id == 0)
415 return; //anonymous players cannot be challenged
a7808884 416 this.newchallenge.to = player.name;
b4d619d1 417 doClick("modalNewgame");
fb54f098 418 },
9d58ef95 419 newChallenge: async function() {
bb7dd7db 420 const vname = this.getVname(this.newchallenge.vid);
1efe1d79
BA
421 const vModule = await import("@/variants/" + vname + ".js");
422 window.V = vModule.VariantRules;
9d58ef95
BA
423 const error = checkChallenge(this.newchallenge);
424 if (!!error)
425 return alert(error);
2ada153c 426 const ctype = this.classifyObject(this.newchallenge);
098cd7f1
BA
427 if (ctype == "corr" && this.st.user.id <= 0)
428 return alert("Please log in to play correspondance games");
bb7dd7db 429 // NOTE: "from" information is not required here
a7808884 430 let chall = Object.assign({}, this.newchallenge);
2ada153c 431 const finishAddChallenge = (cid,warnDisconnected) => {
1efe1d79 432 chall.id = cid || "c" + getRandString();
2ada153c 433 // Send challenge to peers (if connected)
c9695cb1 434 this.sendSomethingTo(chall.to, "challenge", {chall:chall}, !!warnDisconnected);
1efe1d79 435 chall.added = Date.now();
a9b131f1 436 // NOTE: vname and type are redundant (can be deduced from timeControl + vid)
bb7dd7db
BA
437 chall.type = ctype;
438 chall.vname = vname;
66d03f23 439 chall.from = this.people[0]; //avoid sending email
1efe1d79 440 this.challenges.push(chall);
f41ce580
BA
441 if (ctype == "live")
442 localStorage.setItem("challenge", JSON.stringify(chall));
b4d619d1
BA
443 document.getElementById("modalNewgame").checked = false;
444 };
1efe1d79
BA
445 const cIdx = this.challenges.findIndex(
446 c => c.from.sid == this.st.user.sid && c.type == ctype);
447 if (cIdx >= 0)
b4d619d1 448 {
1efe1d79 449 // Delete current challenge (will be replaced now)
bb7dd7db 450 this.sendSomethingTo(this.challenges[cIdx].to,
1efe1d79
BA
451 "deletechallenge", {cid:this.challenges[cIdx].id});
452 if (ctype == "corr")
453 {
454 ajax(
455 "/challenges",
456 "DELETE",
457 {id: this.challenges[cIdx].id}
458 );
459 }
460 this.challenges.splice(cIdx, 1);
461 }
462 if (ctype == "live")
463 {
464 // Live challenges have a random ID
2ada153c 465 finishAddChallenge(null, "warnDisconnected");
03608482 466 }
b4d619d1 467 else
03608482 468 {
b4d619d1 469 // Correspondance game: send challenge to server
03608482 470 ajax(
1efe1d79 471 "/challenges",
03608482 472 "POST",
bebcc8d4 473 { chall: chall },
1efe1d79 474 response => { finishAddChallenge(response.cid); }
03608482 475 );
9d58ef95 476 }
fb54f098 477 },
a6bddfc6 478 clickChallenge: function(c) {
485fccd5
BA
479 const myChallenge = (c.from.sid == this.st.user.sid //live
480 || (this.st.user.id > 0 && c.from.id == this.st.user.id)); //corr
481 if (!myChallenge)
a6bddfc6 482 {
3d55deea
BA
483 if (c.type == "corr" && this.st.user.id <= 0)
484 return alert("Please log in to accept corr challenges");
a6bddfc6 485 c.accepted = true;
485fccd5 486 if (!!c.to) //c.to == this.st.user.name (connected)
a6bddfc6
BA
487 {
488 // TODO: if special FEN, show diagram after loading variant
489 c.accepted = confirm("Accept challenge?");
490 }
485fccd5 491 if (c.accepted)
36093eba 492 {
8c564f46 493 c.seat = this.people[0]; //== this.st.user, avoid revealing email
485fccd5
BA
494 this.launchGame(c);
495 }
496 else
497 {
498 this.st.conn.send(JSON.stringify({
499 code: "refusechallenge",
500 cid: c.id, target: c.from.sid}));
36093eba 501 }
a6bddfc6 502 }
2be5d614 503 else //my challenge
485fccd5 504 {
2be5d614
BA
505 if (c.type == "corr")
506 {
507 ajax(
508 "/challenges",
509 "DELETE",
510 {id: c.id}
511 );
512 }
f41ce580
BA
513 else //live
514 localStorage.removeItem("challenge");
485fccd5 515 }
3d55deea
BA
516 // In (almost) all cases, the challenge is consumed:
517 ArrayFun.remove(this.challenges, ch => ch.id == c.id);
518 // NOTE: deletechallenge event might be redundant (but it's easier this way)
519 this.sendSomethingTo((!!c.to ? c.from : null), "deletechallenge", {cid:c.id});
a6bddfc6 520 },
485fccd5 521 // NOTE: when launching game, the challenge is already deleted
36093eba 522 launchGame: async function(c) {
a9b131f1 523 const vModule = await import("@/variants/" + c.vname + ".js");
a6bddfc6 524 window.V = vModule.VariantRules;
4b0384fa
BA
525 // These game informations will be sent to other players
526 const gameInfo =
a6bddfc6 527 {
11667c79 528 id: getRandString(),
a6bddfc6 529 fen: c.fen || V.GenRandInitFen(),
5d04793e 530 players: shuffle([c.from, c.seat]), //white then black
a6bddfc6 531 vid: c.vid,
f41ce580 532 vname: c.vname, //theoretically vid is enough, but much easier with vname
a9b131f1 533 timeControl: c.timeControl,
a6bddfc6 534 };
8c564f46
BA
535 let target = c.from.sid; //may not be defined if corr + offline opp
536 if (!target)
537 {
538 const opponent = this.people.find(p => p.id == c.from.id);
539 if (!!opponent)
540 target = opponent.sid
541 }
411d23cd
BA
542 const tryNotifyOpponent = () => {
543 if (!!target) //opponent is online
544 {
545 this.st.conn.send(JSON.stringify({code:"newgame",
546 gameInfo:gameInfo, target:target, cid:c.id}));
547 }
548 };
485fccd5 549 if (c.type == "live")
411d23cd
BA
550 {
551 tryNotifyOpponent();
485fccd5 552 this.startNewGame(gameInfo);
411d23cd 553 }
485fccd5
BA
554 else //corr: game only on server
555 {
556 ajax(
557 "/games",
558 "POST",
2be5d614 559 {gameInfo: gameInfo, cid: c.id}, //cid useful to delete challenge
411d23cd 560 response => {
11667c79 561 gameInfo.id = response.gameId;
411d23cd
BA
562 tryNotifyOpponent();
563 this.$router.push("/game/" + response.gameId);
564 }
485fccd5
BA
565 );
566 }
c6788ecf
BA
567 // Send game info to everyone except opponent (and me)
568 this.st.conn.send(JSON.stringify({code:"game",
569 game: { //minimal game info:
570 id: gameInfo.id,
571 players: gameInfo.players.map(p => p.name),
572 vid: gameInfo.vid,
573 timeControl: gameInfo.timeControl,
574 },
575 oppsid: target}));
fb54f098 576 },
a9b131f1 577 // NOTE: for live games only (corr games start on the server)
42c15a75 578 startNewGame: function(gameInfo) {
25996aed
BA
579 const game = Object.assign({}, gameInfo, {
580 // (other) Game infos: constant
6d01bb17 581 fenStart: gameInfo.fen,
92a523d1 582 added: Date.now(),
25996aed 583 // Game state (including FEN): will be updated
967a2686 584 moves: [],
a9b131f1 585 clocks: [-1, -1], //-1 = unstarted
66d03f23 586 initime: [0, 0], //initialized later
967a2686 587 score: "*",
a7808884 588 });
967a2686 589 GameStorage.add(game);
7b626bdd
BA
590 if (this.st.settings.sound >= 1)
591 new Audio("/sounds/newgame.mp3").play().catch(err => {});
11667c79 592 this.$router.push("/game/" + gameInfo.id);
1efe1d79 593 },
fb54f098 594 },
85e5b5c1 595};
ccd4a2b7 596</script>
85e5b5c1
BA
597
598<style lang="sass">
9ca1e26b
BA
599#newGame
600 display: block
72ccbd67
BA
601 margin: 10px auto 5px auto
602#chat > .card
603 max-width: 100%
604 margin: 0;
605 border: none;
85e5b5c1 606</style>