From 82a31ed01f49cddfe35a4d391575a0bcfafa4fe3 Mon Sep 17 00:00:00 2001 From: paidge <paidge_cs@hotmail.com> Date: Sun, 30 Jan 2022 01:43:56 +0100 Subject: [PATCH] v0.10 tag --- components/navigation/menu/Sidebar.vue | 21 ++++++++++++--------- graphql/queries.js | 6 ++++++ 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/components/navigation/menu/Sidebar.vue b/components/navigation/menu/Sidebar.vue index 4ae86a5..a589bd8 100644 --- a/components/navigation/menu/Sidebar.vue +++ b/components/navigation/menu/Sidebar.vue @@ -1,16 +1,18 @@ <template> <aside class="menu shadow position-fixed"> - <div class="nav_header pb-3 mb-4"> + <div class="nav_header pb-3"> <nuxt-link :to="localePath('/')" class="d-flex"> <img :src="$icon(512)" alt="Accueil" class="logo" /> <div> - <h1 class="h2">Wotwizard</h1> + <h1 class="h3"> + Wotwizard <small><span class="small">v0.10</span></small> + </h1> <small class="text-muted">{{ $t("slogan") }}</small> </div> </nuxt-link> - <div - class="d-flex text-info justify-content-between align-items-baseline mt-3 mx-2"> - <div class="">v0.09</div> + <div class="text-info small mt-2">API graphQL v{{ version }}</div> + + <div class="text-info"> <div class="small" v-if="countMax"> {{ $t("bloc.title") }} n°<span class="font-weight-bold">{{ countMax.number @@ -39,6 +41,7 @@ <script> import { LAST_BLOCK } from "@/graphql/queries.js" +import { VERSION } from "@/graphql/queries.js" export default { props: { @@ -51,10 +54,10 @@ export default { }, apollo: { countMax: { - query: LAST_BLOCK, - error(err) { - this.error = err.message - } + query: LAST_BLOCK + }, + version: { + query: VERSION } } } diff --git a/graphql/queries.js b/graphql/queries.js index 23b1895..4de0b1d 100644 --- a/graphql/queries.js +++ b/graphql/queries.js @@ -1,5 +1,11 @@ import gql from "graphql-tag" +export const VERSION = gql` + query Version { + version + } +` + // Pour la sidebar export const LAST_BLOCK = gql` query LastBlock { -- GitLab