X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FHall.vue;h=957ffad9ef012ceb769afe0a9dd659e5d288557c;hb=bd76b45611cbb58dcf774745a4d690277a82aacd;hp=079584c02fedc155365842a29206ad31955e3c0e;hpb=d8b1800bcec983faabc34bdb1057ef880488a160;p=vchess.git diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index 079584c0..957ffad9 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -31,9 +31,25 @@ main 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 @@ -46,17 +62,6 @@ main :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 }} - 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 div .button-group button#btnGlive(@click="setDisplay('g','live',$event)" class="active") @@ -64,9 +69,9 @@ main button#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")