X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=628d72ebbcbb1ac6c5a3f914a3b68b545785c940;hp=a8d9e1270c640b97a43878800c898566ed0de8dc;hb=0234201fb338fc239d6f613c677fa932c7c3697c;hpb=41c80bb63b85b2696d3925c10784c3d7bb5d2aa3 diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index a8d9e127..628d72eb 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -3,57 +3,322 @@ 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 - GameList(v-show="display=='live'" :games="filterGames('live')" - @show-game="showGame") - GameList(v-show="display=='corr'" :games="filterGames('corr')" - @show-game="showGame") + button.tabbtn#liveGames(@click="setDisplay('live',$event)") + | {{ st.tr["Live games"] }} + button.tabbtn#corrGames(@click="setDisplay('corr',$event)") + | {{ st.tr["Correspondance games"] }} + GameList( + ref="livegames" + v-show="display=='live'" + :games="liveGames" + @show-game="showGame" + @abortgame="abortGame" + ) + div(v-show="display=='corr'") + GameList( + ref="corrgames" + :games="corrGames" + @show-game="showGame" + @abortgame="abortGame" + ) + button#loadMoreBtn( + v-if="hasMore" + @click="loadMore()" + ) + | {{ st.tr["Load more"] }} + +