X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=c89b2d6f71c1a7e0876c416daf68a1177cce12a2;hb=89021f181ac0689bbc785ce0ebd9a910e66352b0;hp=c24e7203bfe34e5ab308e1f3b292beef1256176c;hpb=25d183426e276870f57793f1f043c40a412d18c6;p=vchess.git diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index c24e7203..c89b2d6f 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -3,8 +3,8 @@ main .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 .button-group - button(@click="display='live'") Live games - button(@click="display='corr'") Correspondance games + button(@click="display='live'") {{ st.tr["Live games"] }} + button(@click="display='corr'") {{ st.tr["Correspondance games"] }} GameList(v-show="display=='live'" :games="filterGames('live')" @show-game="showGame") GameList(v-show="display=='corr'" :games="filterGames('corr')" @@ -16,23 +16,22 @@ import { store } from "@/store"; import { GameStorage } from "@/utils/gameStorage"; import { ajax } from "@/utils/ajax"; import GameList from "@/components/GameList.vue"; - export default { - name: "my-games", + name: "my-my-games", components: { GameList, }, data: function() { return { st: store.state, - display: "live", + display: "live", games: [], }; }, created: function() { GameStorage.getAll((localGames) => { localGames.forEach((g) => g.type = this.classifyObject(g)); - //Array.prototype.push.apply(this.games, localGames); /TODO: Vue3... + //Array.prototype.push.apply(this.games, localGames); //TODO: Vue 3 this.games = this.games.concat(localGames); }); if (this.st.user.id > 0) @@ -47,7 +46,7 @@ export default { methods: { // TODO: classifyObject and filterGames are redundant (see Hall.vue) classifyObject: function(o) { - return (o.timeControl.indexOf('d') === -1 ? "live" : "corr"); + return (o.cadence.indexOf('d') === -1 ? "live" : "corr"); }, filterGames: function(type) { return this.games.filter(g => g.type == type);