X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2FApp.vue;h=e97fc41022be0c1a1583ef23c235a0f4d9d6dd92;hb=9a3049f3a48fa4b3627ef26ccdf213a8e550d478;hp=f337394ef791785eca539c7ee680550a0f820178;hpb=4f8871051c030acd51172b73cd20aedce687c2a8;p=vchess.git diff --git a/client/src/App.vue b/client/src/App.vue index f337394e..e97fc410 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -4,16 +4,17 @@ Settings ContactForm UpsertUser + Welcome .container .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 // Menu (top of page): - // Left: hall, variants, mygames, forum (ext. link) + // Left: hall, variants, mygames // Right: usermenu, settings, flag nav label.drawer-toggle(for="drawerControl") input#drawerControl.drawer(type="checkbox") - #menuBar(@click="hideDrawer") + #menuBar(@click="hideDrawer($event)") label.drawer-close(for="drawerControl") #leftMenu router-link(to="/") @@ -22,11 +23,9 @@ | {{ st.tr["Variants"] }} router-link(to="/mygames") | {{ st.tr["My games"] }} - a(href="https://forum.vchess.club") - | {{ st.tr["Forum"] }} #rightMenu .clickable(onClick="doClick('modalUser')") - | {{ st.user.id > 0 ? "Update" : "Login" }} + | {{ st.user.id > 0 ? (st.user.name || "@nonymous") : "Login" }} .clickable(onClick="doClick('modalSettings')") | {{ st.tr["Settings"] }} .clickable#flagContainer(onClick="doClick('modalLang')") @@ -38,23 +37,25 @@ router-link.menuitem(to="/about") {{ st.tr["About"] }} p.clickable(onClick="doClick('modalContact')") | {{ st.tr["Contact"] }} - // TODO: add only the necessary icons to mini-css custom build - //script(src="//unpkg.com/feather-icons") + a.menuitem(href="https://forum.vchess.club") + | {{ st.tr["Forum"] }}