main
input#modalInfo.modal(type="checkbox")
div#infoDiv(
role="dialog"
data-checkbox="modalInfo"
)
.card.text-center
label.modal-close(for="modalInfo")
p(v-html="infoMessage")
input#modalAccept.modal(type="checkbox")
div#acceptDiv(role="dialog")
.card.text-center
p
span.variantName {{ curChallToAccept.vname }}
span {{ curChallToAccept.cadence }}
span {{ st.tr["with"] + " " + curChallToAccept.from.name }}
.diagram(v-html="tchallDiag")
.button-group#buttonsTchall
button.acceptBtn(@click="decisionChallenge(true)") {{ st.tr["Accept challenge?"] }}
button.refuseBtn(@click="decisionChallenge(false)") {{ st.tr["Refuse"] }}
input#modalNewgame.modal(type="checkbox")
div#newgameDiv(
role="dialog"
data-checkbox="modalNewgame"
)
.card
label#closeNewgame.modal-close(for="modalNewgame")
div(@keyup.enter="newChallenge()")
fieldset
label(for="selectVariant") {{ st.tr["Variant"] }} *
select#selectVariant(
@change="loadNewchallVariant(trySetNewchallDiag)"
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(type="button") 5+3
button(type="button") 15+5
button(type="button") 45+30
button(type="button") 7d+2d
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")
input#inputFen(
placeholder="FEN"
@input="trySetNewchallDiag()"
type="text"
v-model="newchallenge.fen"
)
.diagram(v-html="newchallenge.diag")
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="isGamer(sid) || (st.user.id > 0 && sid!=st.user.sid)"
@click="challOrWatch(sid)"
)
| {{ getActionLabel(sid) }}
p.anonymous @nonymous ({{ anonymousCount }})
#chat
Chat(
:newChat="newChat"
@mychat="processChat"
:pastChats="[]"
)
.clearer
.row
.col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
.button-group
button#peopleBtn(onClick="window.doClick('modalPeople')")
| {{ st.tr["Who's there?"] }}
button(onClick="window.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#div2
.button-group
button.tabbtn#btnClive(@click="setDisplay('c','live',$event)")
| {{ st.tr["Live challenges"] }}
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"
)
div#div3
.button-group
button.tabbtn#btnGlive(@click="setDisplay('g','live',$event)")
| {{ st.tr["Live games"] }}
button.tabbtn#btnGcorr(@click="setDisplay('g','corr',$event)")
| {{ st.tr["Correspondance games"] }}
GameList(
v-show="gdisplay=='live'"
:games="filterGames('live')"
:showBoth="true"
@show-game="showGame"
)
GameList(
v-show="gdisplay=='corr'"
:games="filterGames('corr')"
:showBoth="true"
@show-game="showGame"
)