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=a48c8d4792027cbbb46e298e20e721fe1856adad;hb=29d33c8ac72a9ea5d72d8c48c426d8380e188bd7;hp=863d17fc42ff24e675519c8fd1ccfcba1b913f5e;hpb=5fe7e71c7d34afbaed99d5bb75525db411bade61;p=vchess.git diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 863d17fc..a48c8d47 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -3,23 +3,59 @@ 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-both="true" + @show-game="showGame" + ) + button#loadMoreBtn( + v-show="hasMore[display]" + @click="loadMore(display)" + ) + | {{ st.tr["Load more"] }} @@ -76,4 +399,17 @@ export default { .tabbtn background-color: #f9faee + +button#loadMoreBtn + display: block + margin: 0 auto + +.somethingnew + background-color: #c5fefe !important + + + +