Advance on users management. TODO: routes/users + debug + test
[vchess.git] / views / variant.pug
index 7de86ca..5bfcba1 100644 (file)
@@ -1,33 +1,60 @@
 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
-                               h4.rulesTitle.text-center(v-on:click="displayRules=!displayRules")
-                                       | #{variant} Rules
-                               my-rules(v-show="displayRules")
-                       .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2
-                               my-game
+                               label.drawer-toggle(for="drawer-control")
+                               input#drawer-control.drawer(type="checkbox")
+                               #menuBar
+                                       label.drawer-close(for="drawer-control")
+                                       a.icon-link(href="/")
+                                               i.material-icons home
+                                       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="document.getElementById('modalSettings').checked=true")
+                                               i.material-icons settings
+                                       #userMenu.clickable(
+                                                       onClick="document.getElementById('modalUser').checked=true")
+                                               .info-container
+                                                       i.material-icons person
+                                                       if !user.email
+                                                               p Login
+                                                       else
+                                                               p Update
+               .row
+                       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'" :gameId="gameid")
 
 block javascripts
        script(src="/javascripts/utils/misc.js")
-       script(src="/javascripts/utils/socket_url.js")
        script(src="/javascripts/utils/array.js")
-       script(src="/javascripts/utils/md5.js")
+       script(src="/javascripts/utils/printDiagram.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 VariantRules = #{variant}Rules;
-               const variant = "#{variant}";
+               const V = VariantRules; //because this variable is often used
+               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/problemSummary.js")
+       script(src="/javascripts/components/problems.js")
        script(src="/javascripts/components/game.js")
-       script.
-               new Vue({
-                       el: "#variantPage",
-                       data: { displayRules: false },
-               });
+       script(src="/javascripts/variant.js")