X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=aef3387da379bb9b13f42027a62aafffcb44fa86;hb=902378e6276422d38b45f7d79282c2462f1124b1;hp=1362cb24176c4b8876f44e99157a4db57cb2e403;hpb=585d095517ca2aedab8ad125cc7c39b90e13d5cc;p=vchess.git diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 1362cb24..aef3387d 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -6,7 +6,9 @@ main button.tabbtn#liveGames(@click="setDisplay('live',$event)") | {{ st.tr["Live games"] }} button.tabbtn#corrGames(@click="setDisplay('corr',$event)") - | {{ st.tr["Correspondance games"] }} + | {{ st.tr["Correspondence games"] }} + button.tabbtn#importGames(@click="setDisplay('import',$event)") + | {{ st.tr["Imported games"] }} GameList( ref="livegames" v-show="display=='live'" @@ -15,26 +17,45 @@ main @abortgame="abortGame" ) GameList( - ref="corrgames" 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"] }} - + + +