X-Git-Url: https://git.auder.net/img/rock_paper_scissors_lizard_spock.gif?a=blobdiff_plain;f=views%2Fvariant.pug;h=c7f4e55f399d7a550a3e9621f941b9dac79c6937;hb=d44df0b01732d1948525daef5df62211ea6e1f64;hp=ff41740ec898da920aa7f9538d59e7a60efd70b5;hpb=a48ee8b80ae4902f1e70629a608396fe3ff046d0;p=vchess.git diff --git a/views/variant.pug b/views/variant.pug index ff41740e..c7f4e55f 100644 --- a/views/variant.pug +++ b/views/variant.pug @@ -1,63 +1,56 @@ extends layout block css - link(rel="stylesheet" href="//fonts.googleapis.com/icon?family=Material+Icons") link(rel="stylesheet" href="/stylesheets/variant.css") block content - .container#variantPage + include settings + .container .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 label.drawer-toggle(for="drawer-control") input#drawer-control.drawer(type="checkbox") #menuBar label.drawer-close(for="drawer-control") - a#homeLink(href="/") + a.icon-link(href="/") i.material-icons home - .info-container - a(href="#rules" @click="setDisplay('rules')") - | Rules - a(href="#play" @click="setDisplay('play')") - | Play! - a(href="#problems" @click="setDisplay('problems')") - | Problems - #flagMenu.clickable( - onClick="document.getElementById('modalLang').checked=true") - img(src="/images/flags/" + lang + ".svg") - #helpMenu.clickable( - onClick="document.getElementById('modalHelp').checked=true") - .info-container - p Help + a(href="#room" @click="setDisplay('room')") + =translations["Hall"] + a(href="#gameList" @click="setDisplay('gameList')") + =translations["My games"] + a(href="#rules" @click="setDisplay('rules')") + =translations["Rules"] + a(href="#problems" @click="setDisplay('problems')") + =translations["Problems"] + #settings.clickable(onClick="doClick('modalSettings')") + i.material-icons settings + include userMenu .row - my-rules(v-show="display=='rules'") - my-game(v-show="display=='play'" v-bind:problem="problem") - my-problems(v-show="display=='problems'" v-on:show-problem="showProblem($event)") - // (Some) Modals: - include modal-help.pug - include modal-lang.pug - input#modal-newgame.modal(type="checkbox") - div(role="dialog" aria-labelledby="newGameTxt") - .card.smallpad.small-modal - label#close-newgame.modal-close(for="modal-newgame") - h3#newGameTxt New game - p Waiting for opponent... + //my-room(v-show="display=='room'") + //my-game-list(v-show="display=='gameList'") + //my-rules(v-show="display=='rules'") + //my-problems(v-show="display=='problems'") + my-game(v-show="display=='game'" :game-id="gameid" :conn="conn" + :allow-chat="allowChat" :allow-movelist="allowMovelist" + :mode="mode" :fen="fen") + //my-board(:vr="vr" :mode="mode" :orientation="orientation" + :user-color="userColor" v-on:play-move="play") block javascripts - script(src="/javascripts/utils/misc.js") script(src="/javascripts/utils/array.js") - script(src="/javascripts/utils/md5.js") script(src="/javascripts/utils/printDiagram.js") - script(src="/javascripts/utils/ajax.js") script(src="/javascripts/utils/datetime.js") script(src="/javascripts/socket_url.js") script(src="/javascripts/base_rules.js") - script(src="/javascripts/variants/" + variant + ".js") + script(src="/javascripts/variants/" + variant.name + ".js") script. const V = VariantRules; //because this variable is often used - const variant = "#{variant}"; - const problemArray = !{JSON.stringify(problemArray)}; - script(src="/javascripts/components/rules.js") + const variant = !{JSON.stringify(variant)}; + //script(src="/javascripts/components/room.js") + //script(src="/javascripts/components/gameList.js") + //script(src="/javascripts/components/rules.js") + script(src="/javascripts/components/board.js") + //script(src="/javascripts/components/problemPreview.js") + //script(src="/javascripts/components/problems.js") script(src="/javascripts/components/game.js") - script(src="/javascripts/components/problemSummary.js") - script(src="/javascripts/components/problems.js") script(src="/javascripts/variant.js")