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