X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FHall.vue;h=190717d0dbe2df25c4529f597aba68565102163c;hb=6808d7a16ec1e761c6a2dffec2281c96953e4d89;hp=16af9c9abac200ab8ae9971c2a2ef21d896378c2;hpb=a154d45ebb7e409cd714d0c517e79c8147bdea69;p=vchess.git diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index 16af9c9a..190717d0 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -4,73 +4,74 @@ main div#infoDiv(role="dialog" data-checkbox="modalInfo") .card.text-center label.modal-close(for="modalInfo") - h3.section p(v-html="infoMessage") input#modalNewgame.modal(type="checkbox") div#newgameDiv(role="dialog" data-checkbox="modalNewgame") - .card(@keyup.enter="newChallenge()") + .card label#closeNewgame.modal-close(for="modalNewgame") - fieldset - label(for="selectVariant") {{ st.tr["Variant"] }} * - select#selectVariant(v-model="newchallenge.vid") - option(v-for="v in st.variants" :value="v.id" - :selected="newchallenge.vid==v.id") - | {{ v.name }} - fieldset - label(for="cadence") {{ st.tr["Cadence"] }} * - div#predefinedCadences - button 3+2 - button 5+3 - button 15+5 - input#cadence(type="text" v-model="newchallenge.cadence" - placeholder="5+0, 1h+30s, 7d+1d ...") - fieldset(v-if="st.user.id > 0") - label(for="selectPlayers") {{ st.tr["Play with?"] }} - input#selectPlayers(type="text" v-model="newchallenge.to") - fieldset(v-if="st.user.id > 0 && newchallenge.to.length > 0") - label(for="inputFen") FEN - input#inputFen(type="text" v-model="newchallenge.fen") + form(@submit.prevent="newChallenge()" @keyup.enter="newChallenge()") + fieldset + label(for="selectVariant") {{ st.tr["Variant"] }} * + select#selectVariant(v-model="newchallenge.vid") + option(v-for="v in st.variants" :value="v.id" + :selected="newchallenge.vid==v.id") + | {{ v.name }} + fieldset + label(for="cadence") {{ st.tr["Cadence"] }} * + div#predefinedCadences + button 3+2 + button 5+3 + button 15+5 + input#cadence(type="text" v-model="newchallenge.cadence" + placeholder="5+0, 1h+30s, 7d+1d ...") + fieldset(v-if="st.user.id > 0") + label(for="selectPlayers") {{ st.tr["Play with?"] }} + input#selectPlayers(type="text" v-model="newchallenge.to") + fieldset(v-if="st.user.id > 0 && newchallenge.to.length > 0") + label(for="inputFen") FEN + input#inputFen(type="text" v-model="newchallenge.fen") button(@click="newChallenge()") {{ st.tr["Send challenge"] }} + input#modalPeople.modal(type="checkbox" @click="resetChatColor()") + div#peopleWrap(role="dialog" data-checkbox="modalPeople") + .card + label.modal-close(for="modalPeople") + #people + #players + p(v-for="sid in Object.keys(people)" v-if="!!people[sid].name") + span {{ people[sid].name }} + button.player-action(v-if="sid!=st.user.sid || isGamer(sid)" @click="challOrWatch(sid)") + | {{ getActionLabel(sid) }} + p.anonymous @nonymous ({{ anonymousCount }}) + #chat + Chat(:newChat="newChat" @mychat="processChat" :pastChats="[]") + .clearer .row - .col-sm-12 - button#newGame(onClick="doClick('modalNewgame')") {{ st.tr["New game"] }} + .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 + .button-group + button#peopleBtn(onClick="doClick('modalPeople')") {{ st.tr["Social"] }} + button(onClick="doClick('modalNewgame')") {{ st.tr["New game"] }} .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 - div + div#div2 .button-group - button(@click="setDisplay('c','live',$event)" class="active") + button.tabbtn#btnClive(@click="setDisplay('c','live',$event)") | {{ st.tr["Live challenges"] }} - button(@click="setDisplay('c','corr',$event)") + button.tabbtn#btnCcorr(@click="setDisplay('c','corr',$event)") | {{ st.tr["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 {{ st.tr["Who's there?"] }} - #players - p(v-for="sid in Object.keys(people)" v-if="!!people[sid].name") - span {{ people[sid].name }} - // Check: anonymous players cannot send individual challenges or be challenged individually - button.player-action( - v-if="sid != st.user.sid && !!st.user.name && people[sid].id > 0" - @click="challOrWatch(sid)" - ) - | {{ getActionLabel(sid) }} - p.anonymous @nonymous ({{ anonymousCount }}) - #chat - Chat(:newChat="newChat" @mychat="processChat" :pastChats="[]") - .clearer - div + div#div3 .button-group - button(@click="setDisplay('g','live',$event)" class="active") + button.tabbtn#btnGlive(@click="setDisplay('g','live',$event)") | {{ st.tr["Live games"] }} - button(@click="setDisplay('g','corr',$event)") + button.tabbtn#btnGcorr(@click="setDisplay('g','corr',$event)") | {{ st.tr["Correspondance games"] }} GameList(v-show="gdisplay=='live'" :games="filterGames('live')" - @show-game="showGame") + :showBoth="true" @show-game="showGame") GameList(v-show="gdisplay=='corr'" :games="filterGames('corr')" - @show-game="showGame") + :showBoth="true" @show-game="showGame")