X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FHall.vue;h=2180509c6ce3adbb77d8d155b6523743f3665540;hb=dac395887d96e2d642b209c6db6aaacc3ffacb34;hp=0bc037a7a95de145f36b22a4c1a6e80d5eadb2b0;hpb=4f51861013271a060b358884097a676e3d42d496;p=vchess.git diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index 0bc037a7..2180509c 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -14,15 +14,21 @@ main fieldset label(for="selectVariant") {{ st.tr["Variant"] }} select#selectVariant(v-model="newchallenge.vid") - option(v-for="v in st.variants" :value="v.id") {{ v.name }} + option(v-for="v in st.variants" :value="v.id" + :selected="newchallenge.vid==v.id") + | {{ v.name }} fieldset label(for="timeControl") {{ st.tr["Time control"] }} + div#predefinedTimeControls + button 3+2 + button 5+3 + button 15+5 input#timeControl(type="text" v-model="newchallenge.timeControl" - placeholder="3m+2s, 1h+30s, 7d+1d ...") + placeholder="5+0, 1h+30s, 7d+1d ...") fieldset(v-if="st.user.id > 0") label(for="selectPlayers") {{ st.tr["Play with? (optional)"] }} input#selectPlayers(type="text" v-model="newchallenge.to") - fieldset(v-if="st.user.id > 0") + fieldset(v-if="st.user.id > 0 && newchallenge.to.length > 0") label(for="inputFen") {{ st.tr["FEN (optional)"] }} input#inputFen(type="text" v-model="newchallenge.fen") button(@click="newChallenge") {{ st.tr["Send challenge"] }} @@ -31,36 +37,40 @@ main button#newGame(onClick="doClick('modalNewgame')") New game .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 - .collapse - 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") - div - .button-group - button(@click="pdisplay='players'") Players - button(@click="pdisplay='chat'") Chat - #players(v-show="pdisplay=='players'") - p(v-for="p in uniquePlayers") - span(:class="{anonymous: !!p.count}") - | {{ (p.name || '@nonymous') + (!!p.count ? " ("+p.count+")" : "") }} - button.player-action(v-if="!p.count && p.name != st.user.name" - @click="challOrWatch(p,$event)") - | {{ whatPlayerDoes(p) }} - #chat(v-show="pdisplay=='chat'") - Chat(:players="[]") - 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") + div + .button-group + button(@click="(e) => setDisplay('c','live',e)" class="active") + | Live Challenges + button(@click="(e) => setDisplay('c','corr',e)") + | Correspondance challenges + ChallengeList(v-show="cdisplay=='live'" + :challenges="filterChallenges('live')" @click-challenge="clickChallenge") + ChallengeList(v-show="cdisplay=='corr'" + :challenges="filterChallenges('corr')" @click-challenge="clickChallenge") + #people + h3.text-center Who's there? + #players + p(v-for="p in Object.values(people)" v-if="!!p.name") + span {{ p.name }} + button.player-action( + v-if="p.name != st.user.name" + @click="challOrWatch(p,$event)" + ) + | {{ whatPlayerDoes(p) }} + p.anonymous @nonymous ({{ anonymousCount }}) + #chat + Chat(:players="[]") + .clearer + div + .button-group + button(@click="(e) => setDisplay('g','live',e)" class="active") + | Live games + button(@click="(e) => setDisplay('g','corr',e)") + | Correspondance games + GameList(v-show="gdisplay=='live'" :games="filterGames('live')" + @show-game="showGame") + GameList(v-show="gdisplay=='corr'" :games="filterGames('corr')" + @show-game="showGame")