X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2FApp.vue;h=e06a2fef5bbede787fc1b09a70b738095e8cb530;hb=afd3240d89a2f6191fe9426960dc0c1667b40c77;hp=59b0371a3e6fac3b7a47ac63cae6bc7f8235c6cf;hpb=24340cae41e916d91088cc6988d8838b342a9c42;p=vchess.git diff --git a/client/src/App.vue b/client/src/App.vue index 59b0371a..e06a2fef 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -8,7 +8,7 @@ .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, problems + // Left: hall, variants, mygames, forum (ext. link) // Right: usermenu, settings, flag nav label.drawer-toggle(for="drawerControl") @@ -22,25 +22,24 @@ | {{ st.tr["Variants"] }} router-link(to="/mygames") | {{ st.tr["My games"] }} - router-link(to="/problems") - | {{ st.tr["Problems"] }} + // TODO: parametric URL, "forumURL" + a(href="https://forum.vchess.club") + | {{ st.tr["Forum"] }} #rightMenu .clickable(onClick="doClick('modalUser')") - | {{ !st.user.id ? "Login" : "Update" }} + | {{ st.user.id > 0 ? "Update" : "Login" }} .clickable(onClick="doClick('modalSettings')") | {{ st.tr["Settings"] }} .clickable#flagContainer(onClick="doClick('modalLang')") - img(v-if="!!st.lang" - :src="require(`@/assets/images/flags/${st.lang}.svg`)") + img(v-if="!!st.lang" :src="flagImage") router-view .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 footer - a(href="https://github.com/yagu0/vchess") {{ st.tr["Source code"] }} + router-link.menuitem(to="/about") {{ st.tr["About"] }} p.clickable(onClick="doClick('modalContact')") - | {{ st.tr["Contact form"] }} - //my-game(:game-ref="gameRef" :mode="mode" :settings="settings" @game-over="archiveGame") - //// TODO: add only the necessary icons to mini-css custom build + | {{ st.tr["Contact"] }} + // TODO: add only the necessary icons to mini-css custom build //script(src="//unpkg.com/feather-icons") @@ -63,10 +62,11 @@ export default { st: store.state, }; }, -// // TODO: $route: ... -// gameRef: function() { -// this.loadGame(); -// }, + computed: { + flagImage: function() { + return `/images/flags/${this.st.lang}.svg`; + }, + }, }; @@ -147,7 +147,7 @@ footer display: inline-flex align-items: center justify-content: center - & > a + & > .menuitem display: inline-block margin: 0 10px 0 0 &:link