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