X-Git-Url: https://git.auder.net/game/%22%20%20%20data.gameInfo.gameId%20%20%20%22?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=b50af21e53989f2d64a10cf16cf669adae26e23b;hb=26d8a01a40dc198b633ae86f698b1ae82415e5e1;hp=863d17fc42ff24e675519c8fd1ccfcba1b913f5e;hpb=5fe7e71c7d34afbaed99d5bb75525db411bade61;p=vchess.git diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 863d17fc..b50af21e 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -3,23 +3,58 @@ main .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 .button-group - button.tabbtn#liveGames(@click="setDisplay('live',$event)") {{ st.tr["Live games"] }} - button.tabbtn#corrGames(@click="setDisplay('corr',$event)") {{ st.tr["Correspondance games"] }} - GameList(v-show="display=='live'" :games="liveGames" - @show-game="showGame") - GameList(v-show="display=='corr'" :games="corrGames" - @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"] }} + button.tabbtn#importGames(@click="setDisplay('import',$event)") + | {{ st.tr["Imported games"] }} + GameList( + ref="livegames" + v-show="display=='live'" + :games="liveGames" + @show-game="showGame" + @abortgame="abortGame" + ) + GameList( + v-show="display=='corr'" + ref="corrgames" + :games="corrGames" + @show-game="showGame" + @abortgame="abortGame" + ) + UploadGame( + v-show="display=='import'" + @game-uploaded="addGameImport" + ) + GameList( + v-show="display=='import'" + ref="importgames" + :games="importGames" + @show-game="showGame" + ) + button#loadMoreBtn( + v-show="hasMore[display]" + @click="loadMore(display)" + ) + | {{ st.tr["Load more"] }} @@ -76,4 +398,14 @@ export default { .tabbtn background-color: #f9faee + +table.game-list + max-height: 100% + +button#loadMoreBtn + display: block + margin: 0 auto + +.somethingnew + background-color: #c5fefe !important