X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FHall.vue;h=97df499ae476082ec751003e93fad02ed9f96227;hb=a6088c906bbe6fae95707dc7028e45023fe39981;hp=ae5e78309e9a97a271620f04b434ffa9b590cc1b;hpb=9d58ef95e3affd799571838164f7c5bbfda11f64;p=vchess.git diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index ae5e7830..97df499a 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -11,81 +11,75 @@ main fieldset label(for="selectNbPlayers") {{ st.tr["Number of players"] }} select#selectNbPlayers(v-model="newchallenge.nbPlayers") - option(v-show="possibleNbplayers(2)" value="2") 2 + option(v-show="possibleNbplayers(2)" value="2" selected) 2 option(v-show="possibleNbplayers(3)" value="3") 3 option(v-show="possibleNbplayers(4)" value="4") 4 fieldset - label(for="timeControl") Time control (e.g. 3m, 1h+30s, 7d+1d) + label(for="timeControl") {{ st.tr["Time control"] }} input#timeControl(type="text" v-model="newchallenge.timeControl" - placeholder="Time control") - fieldset + placeholder="3m+2s, 1h+30s, 7d+1d ...") + fieldset(v-if="st.user.id > 0") label(for="selectPlayers") {{ st.tr["Play with? (optional)"] }} #selectPlayers - input(type="text" v-model="newchallenge.players[0].name") + input(type="text" v-model="newchallenge.to[0]") input(v-show="newchallenge.nbPlayers>=3" type="text" - v-model="newchallenge.players[1].name") + v-model="newchallenge.to[1]") input(v-show="newchallenge.nbPlayers==4" type="text" - v-model="newchallenge.players[2].name") - fieldset + v-model="newchallenge.to[2]") + fieldset(v-if="st.user.id > 0") label(for="inputFen") {{ st.tr["FEN (optional)"] }} input#inputFen(type="text" v-model="newchallenge.fen") - button(@click="newChallenge") Send challenge - .row - .col-sm-12.col-md-5.col-md-offset-1.col-lg-4.col-lg-offset-2 - ChallengeList(:challenges="challenges" @click-challenge="clickChallenge") - .col-sm-12.col-md-5.col-lg-4 - #players - h3 Online players - div(v-for="p in players" @click="challenge(p)") {{ p.name }} + button(@click="newChallenge") {{ st.tr["Send challenge"] }} .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 button(onClick="doClick('modalNewgame')") New game .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 - .button-group - button(@click="gdisplay='live'") Live games - button(@click="gdisplay='corr'") Correspondance games - GameList(v-show="gdisplay=='live'" :games="liveGames" - @show-game="showGame") - GameList(v-show="gdisplay=='corr'" :games="corrGames" - @show-game="showGame") + .collapse + input#challengeSection(type="radio" checked aria-hidden="true" name="accordion") + label(for="challengeSection" aria-hidden="true") Challenges + div + .button-group + button(@click="cdisplay='live'") Live Challenges + button(@click="cdisplay='corr'") Correspondance challenges + ChallengeList(v-show="cdisplay=='live'" + :challenges="filterChallenges('live')" @click-challenge="clickChallenge") + ChallengeList(v-show="cdisplay=='corr'" + :challenges="filterChallenges('corr')" @click-challenge="clickChallenge") + input#peopleSection(type="radio" aria-hidden="true" name="accordion") + label(for="peopleSection" aria-hidden="true") People + div + .button-group + button(@click="pdisplay='players'") Players + button(@click="pdisplay='chat'") Chat + #players(v-show="pdisplay=='players'") + h3 Online players + .player(v-for="p in uniquePlayers" @click="tryChallenge(p)" + :class="{anonymous: !!p.count}" + ) + | {{ p.name + (!!p.count ? " ("+p.count+")" : "") }} + #chat(v-show="pdisplay=='chat'") + h3 Chat (TODO) + input#gameSection(type="radio" aria-hidden="true" name="accordion") + label(for="gameSection" aria-hidden="true") Games + div + .button-group + button(@click="gdisplay='live'") Live games + button(@click="gdisplay='corr'") Correspondance games + GameList(v-show="gdisplay=='live'" :games="filterGames('live')" + @show-game="showGame") + GameList(v-show="gdisplay=='corr'" :games="filterGames('corr')" + @show-game="showGame")