X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FHall.vue;h=7697e1b534a15d1b27f75afea131b9b7ab62ef9f;hb=5ea8d11307ef9e50bdd0b93708570976f3f6012e;hp=24ec364fe276e16478d4d8271b7ebc5201bba1e6;hpb=72ccbd6730241771e6ba86b6a5b62597b4c7e2f4;p=vchess.git diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index 24ec364f..7697e1b5 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -7,7 +7,8 @@ main h3#infoMessage.section p(v-html="infoMessage") input#modalNewgame.modal(type="checkbox") - div(role="dialog" aria-labelledby="titleFenedit") + div(role="dialog" data-checkbox="modalNewgame" + aria-labelledby="titleFenedit") .card.smallpad(@keyup.enter="newChallenge") label#closeNewgame.modal-close(for="modalNewgame") fieldset @@ -30,41 +31,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 - 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}" + 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)" ) - | {{ p.name + (!!p.count ? " ("+p.count+")" : "") }} - #chat(v-show="pdisplay=='chat'") - Chat(:players="[]") - 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") + | {{ 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") -