More balanced Shinobi according to Couch Tomato + Fables tests
[vchess.git] / client / src / views / MyGames.vue
CommitLineData
afd3240d
BA
1<template lang="pug">
2main
3 .row
4 .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
5 .button-group
910d631b
BA
6 button.tabbtn#liveGames(@click="setDisplay('live',$event)")
7 | {{ st.tr["Live games"] }}
8 button.tabbtn#corrGames(@click="setDisplay('corr',$event)")
6e0f2842 9 | {{ st.tr["Correspondence games"] }}
5f918a27
BA
10 button.tabbtn#importGames(@click="setDisplay('import',$event)")
11 | {{ st.tr["Imported games"] }}
910d631b 12 GameList(
585d0955 13 ref="livegames"
910d631b
BA
14 v-show="display=='live'"
15 :games="liveGames"
16 @show-game="showGame"
3b0f26c1 17 @abortgame="abortGame"
910d631b 18 )
934f7f70
BA
19 GameList(
20 v-show="display=='corr'"
21 ref="corrgames"
22 :games="corrGames"
23 @show-game="showGame"
24 @abortgame="abortGame"
25 )
73f8753f
BA
26 UploadGame(
27 v-show="display=='import'"
28 @game-uploaded="addGameImport"
29 )
5f918a27
BA
30 GameList(
31 v-show="display=='import'"
32 ref="importgames"
33 :games="importGames"
5b18515f 34 :show-both="true"
5f918a27
BA
35 @show-game="showGame"
36 )
934f7f70
BA
37 button#loadMoreBtn(
38 v-show="hasMore[display]"
39 @click="loadMore(display)"
40 )
41 | {{ st.tr["Load more"] }}
afd3240d
BA
42</template>
43
44<script>
afd3240d
BA
45import { store } from "@/store";
46import { GameStorage } from "@/utils/gameStorage";
5f918a27 47import { ImportgameStorage } from "@/utils/importgameStorage";
afd3240d 48import { ajax } from "@/utils/ajax";
aae89b49 49import { getScoreMessage } from "@/utils/scoring";
23ecf008
BA
50import params from "@/parameters";
51import { getRandString } from "@/utils/alea";
afd3240d 52import GameList from "@/components/GameList.vue";
91777c2c 53import UploadGame from "@/components/UploadGame.vue";
afd3240d 54export default {
89021f18 55 name: "my-my-games",
afd3240d 56 components: {
5f918a27
BA
57 GameList,
58 UploadGame
afd3240d
BA
59 },
60 data: function() {
61 return {
62 st: store.state,
dac39588 63 display: "live",
2f258c37 64 liveGames: [],
db1f1f9a 65 corrGames: [],
5f918a27 66 importGames: [],
934f7f70
BA
67 // timestamp of last showed (oldest) game:
68 cursor: {
69 live: Number.MAX_SAFE_INTEGER,
5f918a27 70 "import": Number.MAX_SAFE_INTEGER,
934f7f70
BA
71 corr: Number.MAX_SAFE_INTEGER
72 },
0234201f 73 // hasMore == TRUE: a priori there could be more games to load
5f918a27
BA
74 hasMore: {
75 live: true,
76 "import": true,
77 corr: (store.state.user.id > 0)
78 },
db1f1f9a 79 conn: null,
882ec6fe
BA
80 connexionString: "",
81 socketCloseListener: 0
afd3240d
BA
82 };
83 },
1112f1fd
BA
84 watch: {
85 $route: function(to, from) {
86 if (to.path != "/mygames") this.cleanBeforeDestroy();
87 }
88 },
afd3240d 89 created: function() {
1112f1fd 90 window.addEventListener("beforeunload", this.cleanBeforeDestroy);
db1f1f9a
BA
91 // Initialize connection
92 this.connexionString =
93 params.socketUrl +
7e476ce4
BA
94 "/?sid=" + this.st.user.sid +
95 "&id=" + this.st.user.id +
96 "&tmpId=" + getRandString() +
db1f1f9a
BA
97 "&page=" +
98 encodeURIComponent(this.$route.path);
99 this.conn = new WebSocket(this.connexionString);
100 this.conn.onmessage = this.socketMessageListener;
882ec6fe
BA
101 this.socketCloseListener = setInterval(
102 () => {
103 if (this.conn.readyState == 3) {
104 // Connexion is closed: re-open
105 this.conn.removeEventListener("message", this.socketMessageListener);
106 this.conn = new WebSocket(this.connexionString);
107 this.conn.addEventListener("message", this.socketMessageListener);
108 }
109 },
110 1000
111 );
afd3240d 112 },
2f258c37 113 mounted: function() {
585d0955 114 const adjustAndSetDisplay = () => {
0705a80c 115 // showType is the last type viewed by the user (default)
585d0955
BA
116 let showType = localStorage.getItem("type-myGames") || "live";
117 // Live games, my turn: highest priority:
118 if (this.liveGames.some(g => !!g.myTurn)) showType = "live";
119 // Then corr games, my turn:
120 else if (this.corrGames.some(g => !!g.myTurn)) showType = "corr";
121 else {
122 // If a listing is empty, try showing the other (if non-empty)
123 const types = ["corr", "live"];
124 for (let i of [0,1]) {
125 if (
126 this[types[i] + "Games"].length > 0 &&
127 this[types[1-i] + "Games"].length == 0
128 ) {
129 showType = types[i];
130 }
131 }
132 }
133 this.setDisplay(showType);
134 };
934f7f70 135 GameStorage.getRunning(localGames => {
585d0955
BA
136 localGames.forEach(g => g.type = "live");
137 this.decorate(localGames);
138 this.liveGames = localGames;
139 if (this.st.user.id > 0) {
0234201f 140 // Ask running corr games first
585d0955 141 ajax(
0234201f 142 "/runninggames",
585d0955
BA
143 "GET",
144 {
f14572c4 145 credentials: true,
585d0955 146 success: (res) => {
0234201f
BA
147 // These games are garanteed to not be deleted
148 this.corrGames = res.games;
f14572c4
BA
149 this.corrGames.forEach(g => {
150 g.type = "corr";
151 g.score = "*";
152 });
0234201f
BA
153 this.decorate(this.corrGames);
154 // Now ask completed games (partial list)
934f7f70
BA
155 this.loadMore(
156 "live",
1ef65040
BA
157 () => this.loadMore("corr", () => {
158 this.loadMore("import", adjustAndSetDisplay);
159 })
0234201f 160 );
585d0955
BA
161 }
162 }
163 );
1ef65040
BA
164 }
165 else {
166 this.loadMore("live", () => {
167 this.loadMore("import", adjustAndSetDisplay);
168 });
169 }
585d0955 170 });
2f258c37 171 },
23ecf008 172 beforeDestroy: function() {
1112f1fd 173 this.cleanBeforeDestroy();
23ecf008 174 },
afd3240d 175 methods: {
1112f1fd 176 cleanBeforeDestroy: function() {
882ec6fe 177 clearInterval(this.socketCloseListener);
1112f1fd 178 window.removeEventListener("beforeunload", this.cleanBeforeDestroy);
68e3aa8c 179 this.conn.removeEventListener("message", this.socketMessageListener);
1112f1fd 180 this.conn.send(JSON.stringify({code: "disconnect"}));
68e3aa8c 181 this.conn = null;
1112f1fd 182 },
2f258c37
BA
183 setDisplay: function(type, e) {
184 this.display = type;
185 localStorage.setItem("type-myGames", type);
0705a80c 186 let elt = (!!e ? e.target : document.getElementById(type + "Games"));
2f258c37 187 elt.classList.add("active");
23ecf008 188 elt.classList.remove("somethingnew"); //in case of
73f8753f
BA
189 for (let t of ["live","corr","import"]) {
190 if (t != type)
191 document.getElementById(t + "Games").classList.remove("active");
192 }
2f258c37 193 },
5f918a27 194 addGameImport(game) {
1ef65040
BA
195 game.type = "import";
196 ImportgameStorage.add(game, (err) => {
197 if (!!err) {
198 if (err.message.indexOf("Key already exists") < 0) {
199 alert(this.st.tr["An error occurred. Try again!"]);
200 return;
201 }
fef153df
BA
202 // NOTE: since a random new ID is generated for imported games,
203 // this error will not occur.
1ef65040
BA
204 else alert(this.st.tr["The game was already imported"]);
205 }
206 this.$router.push("/game/" + game.id);
207 });
5f918a27 208 },
cafe0166
BA
209 tryShowNewsIndicator: function(type) {
210 if (
73f8753f
BA
211 (type == "live" && this.display != "live") ||
212 (type == "corr" && this.display != "corr")
cafe0166
BA
213 ) {
214 document
215 .getElementById(type + "Games")
216 .classList.add("somethingnew");
217 }
218 },
28b32b4f 219 // Called at loading to augment games with myColor + myTurn infos
e727fe31
BA
220 decorate: function(games) {
221 games.forEach(g => {
6b7b2cf7 222 g.myColor =
0234201f 223 (g.type == "corr" && g.players[0].id == this.st.user.id) ||
6b7b2cf7
BA
224 (g.type == "live" && g.players[0].sid == this.st.user.sid)
225 ? 'w'
226 : 'b';
227 // If game is over, myTurn doesn't exist:
e727fe31 228 if (g.score == "*") {
e727fe31 229 const rem = g.movesCount % 2;
6b7b2cf7 230 if ((rem == 0 && g.myColor == 'w') || (rem == 1 && g.myColor == 'b'))
e727fe31 231 g.myTurn = true;
e727fe31
BA
232 }
233 });
234 },
cafe0166 235 socketMessageListener: function(msg) {
68e3aa8c 236 if (!this.conn) return;
cafe0166 237 const data = JSON.parse(msg.data);
5f918a27 238 // NOTE: no imported games here
e727fe31
BA
239 let gamesArrays = {
240 "corr": this.corrGames,
241 "live": this.liveGames
242 };
cafe0166 243 switch (data.code) {
cafe0166
BA
244 case "notifyturn":
245 case "notifyscore": {
246 const info = data.data;
e50a8025 247 const type = (!!parseInt(info.gid, 10) ? "corr" : "live");
e727fe31 248 let game = gamesArrays[type].find(g => g.id == info.gid);
cafe0166
BA
249 // "notifything" --> "thing":
250 const thing = data.code.substr(6);
e727fe31 251 game[thing] = info[thing];
585d0955
BA
252 if (thing == "turn") {
253 game.myTurn = !game.myTurn;
254 if (game.myTurn) this.tryShowNewsIndicator(type);
0705a80c
BA
255 }
256 else game.myTurn = false;
585d0955
BA
257 // TODO: forcing refresh like that is ugly and wrong.
258 // How to do it cleanly?
259 this.$refs[type + "games"].$forceUpdate();
cafe0166
BA
260 break;
261 }
262 case "notifynewgame": {
263 const gameInfo = data.data;
264 // st.variants might be uninitialized,
265 // if unlucky and newgame right after connect:
266 const v = this.st.variants.find(v => v.id == gameInfo.vid);
267 const vname = !!v ? v.name : "";
e727fe31
BA
268 const type = (gameInfo.cadence.indexOf('d') >= 0 ? "corr": "live");
269 let game = Object.assign(
cafe0166
BA
270 {
271 vname: vname,
272 type: type,
2a8a94c9 273 score: "*",
e727fe31 274 created: Date.now()
cafe0166
BA
275 },
276 gameInfo
277 );
28b32b4f 278 game.myTurn =
0234201f 279 (type == "corr" && game.players[0].id == this.st.user.id) ||
28b32b4f 280 (type == "live" && game.players[0].sid == this.st.user.sid);
e727fe31 281 gamesArrays[type].push(game);
585d0955
BA
282 if (game.myTurn) this.tryShowNewsIndicator(type);
283 // TODO: cleaner refresh
284 this.$refs[type + "games"].$forceUpdate();
cafe0166
BA
285 break;
286 }
287 }
288 },
feaf1bf7 289 showGame: function(game) {
5f918a27 290 if (game.type != "corr" || !game.myTurn) {
feaf1bf7 291 this.$router.push("/game/" + game.id);
620a88ed
BA
292 return;
293 }
feaf1bf7
BA
294 // It's my turn in this game. Are there others?
295 let nextIds = "";
e727fe31
BA
296 let otherCorrGamesMyTurn = this.corrGames.filter(g =>
297 g.id != game.id && !!g.myTurn);
feaf1bf7
BA
298 if (otherCorrGamesMyTurn.length > 0) {
299 nextIds += "/?next=[";
300 otherCorrGamesMyTurn.forEach(g => { nextIds += g.id + ","; });
301 // Remove last comma and close array:
302 nextIds = nextIds.slice(0, -1) + "]";
303 }
304 this.$router.push("/game/" + game.id + nextIds);
db1f1f9a 305 },
aae89b49
BA
306 abortGame: function(game) {
307 // Special "trans-pages" case: from MyGames to Game
308 // TODO: also for corr games? (It's less important)
309 if (game.type == "live") {
310 const oppsid =
311 game.players[0].sid == this.st.user.sid
312 ? game.players[1].sid
313 : game.players[0].sid;
68e3aa8c
BA
314 if (!!this.conn) {
315 this.conn.send(
316 JSON.stringify(
317 {
318 code: "mabort",
319 gid: game.id,
320 // NOTE: target might not be online
321 target: oppsid
322 }
323 )
324 );
325 }
aae89b49 326 }
5f918a27 327 // NOTE: no imported games here
aae89b49
BA
328 else if (!game.deletedByWhite || !game.deletedByBlack) {
329 // Set score if game isn't deleted on server:
330 ajax(
331 "/games",
332 "PUT",
333 {
e57c4de4
BA
334 data: {
335 gid: game.id,
336 newObj: {
337 score: "?",
338 scoreMsg: getScoreMessage("?")
339 }
aae89b49
BA
340 }
341 }
342 );
343 }
0234201f 344 },
934f7f70 345 loadMore: function(type, cb) {
7ebc0408 346 if (type == "corr" && this.st.user.id > 0) {
934f7f70
BA
347 ajax(
348 "/completedgames",
349 "GET",
350 {
351 credentials: true,
352 data: { cursor: this.cursor["corr"] },
353 success: (res) => {
354 const L = res.games.length;
355 if (L > 0) {
356 this.cursor["corr"] = res.games[L - 1].created;
357 let moreGames = res.games;
358 moreGames.forEach(g => g.type = "corr");
359 this.decorate(moreGames);
360 this.corrGames = this.corrGames.concat(moreGames);
0705a80c
BA
361 }
362 else this.hasMore["corr"] = false;
934f7f70
BA
363 if (!!cb) cb();
364 }
0234201f 365 }
934f7f70 366 );
5f918a27
BA
367 }
368 else if (type == "live") {
934f7f70
BA
369 GameStorage.getNext(this.cursor["live"], localGames => {
370 const L = localGames.length;
371 if (L > 0) {
2c5d7b20 372 // Add "-1" because IDBKeyRange.upperBound includes boundary
934f7f70
BA
373 this.cursor["live"] = localGames[L - 1].created - 1;
374 localGames.forEach(g => g.type = "live");
375 this.decorate(localGames);
376 this.liveGames = this.liveGames.concat(localGames);
0705a80c
BA
377 }
378 else this.hasMore["live"] = false;
934f7f70
BA
379 if (!!cb) cb();
380 });
381 }
5f918a27
BA
382 else if (type == "import") {
383 ImportgameStorage.getNext(this.cursor["import"], importGames => {
384 const L = importGames.length;
385 if (L > 0) {
386 // Add "-1" because IDBKeyRange.upperBound includes boundary
387 this.cursor["import"] = importGames[L - 1].created - 1;
388 importGames.forEach(g => g.type = "import");
389 this.importGames = this.importGames.concat(importGames);
0705a80c
BA
390 }
391 else this.hasMore["import"] = false;
5f918a27
BA
392 if (!!cb) cb();
393 });
394 }
6808d7a1
BA
395 }
396 }
afd3240d
BA
397};
398</script>
2f258c37 399
26d8a01a 400<style lang="sass" scoped>
2f258c37 401.active
5fbc0680 402 color: #388e3c
5fe7e71c
BA
403
404.tabbtn
405 background-color: #f9faee
e2590fa8 406
0234201f 407button#loadMoreBtn
f14572c4
BA
408 display: block
409 margin: 0 auto
0234201f 410
23ecf008 411.somethingnew
107dc1bd 412 background-color: #90C4EC !important
2f258c37 413</style>
4b8cf8ef
BA
414
415<!-- Not scoped because acting on GameList -->
416<style lang="sass">
417table.game-list
418 max-height: 100%
419</style>