diff --git a/README.md b/README.md index 5f4ef4934b1d934de9bd3e0c0f52963e587de735..8f28066ae36b5b7d900bf0ce3c90c3f8494b38f4 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ The schema documentation is stored in the `./graphql/doc/graphQLschema.txt` file In `queries.js` you'll find all queries. -If you want to add a 2nd graphQL server, edit `./graphql/endpoints.js` to put your URL. +If you want to add a graphQL server, add a file in `./graphql/endpoints/` and edit `./nuxt.config.js` to add an entry in `apollo.clientConfigs` for your file. ### Special Directories diff --git a/components/apollo/List.vue b/components/apollo/List.vue index 2962f047037a421f84b4a98b2a616b5083ef6699..ad1b7597289cfb1ee14723bd340a7a9e7597bd89 100644 --- a/components/apollo/List.vue +++ b/components/apollo/List.vue @@ -4,7 +4,7 @@ class="form-select" id="selectClient" @change="setClient($event)" - v-model="currentClient"> + v-model="getApolloClient"> <option :value="clientName" v-for="(clientObject, clientName) in $nuxt.$apolloProvider.clients" @@ -23,15 +23,11 @@ <script> export default { - data() { - return { - currentClient: this.$getApolloClient() - } - }, methods: { setClient(e) { localStorage.setItem("apollo-client", e.target.value) - location.assign(this.$i18n.locale + "/index.html") + window.location = + window.location.origin + "/" + this.$i18n.locale + "/index.html" } } } diff --git a/components/navigation/menu/Sidebar.vue b/components/navigation/menu/Sidebar.vue index 9d7af8526ff592306ab0eb5f0fe3ad0566115d6e..d9a79ee6ec7f21b2b8481b13b1c21ed9ad1b6950 100644 --- a/components/navigation/menu/Sidebar.vue +++ b/components/navigation/menu/Sidebar.vue @@ -82,7 +82,7 @@ export default { }, apollo: { $client() { - return this.$getApolloClient() + return this.getApolloClient }, countMax: { query: LAST_BLOCK diff --git a/graphql/cache.js b/graphql/cache.js index 80866f311f46ee3dc6d9df7ce14b931e4c65baa3..435b8921d707b8e77b356b2582f815f8ab8b3c95 100644 --- a/graphql/cache.js +++ b/graphql/cache.js @@ -1,4 +1,5 @@ import { + InMemoryCache, IntrospectionFragmentMatcher, defaultDataIdFromObject } from "apollo-cache-inmemory" @@ -9,7 +10,7 @@ const fragmentMatcher = new IntrospectionFragmentMatcher({ }) // Apparemment il faut utiliser la syntaxe Apollo v2 -export const cache = { +export const cache = new InMemoryCache({ addTypename: false, fragmentMatcher, dataIdFromObject: (object) => { @@ -34,4 +35,4 @@ export const cache = { return defaultDataIdFromObject(object) // fall back to default handling } } -} +}) diff --git a/graphql/config.js b/graphql/config.js deleted file mode 100644 index db4b788665770fe6762b8cff8ee556c0674d07c0..0000000000000000000000000000000000000000 --- a/graphql/config.js +++ /dev/null @@ -1,17 +0,0 @@ -import { cache } from "./cache" -import * as endpoints from "./endpoints" - -let clientConfigs = {} - -for (const key in endpoints) { - if (key != "default") - clientConfigs[key] = { - httpEndpoint: endpoints[key], - inMemoryCacheOptions: cache, - httpLinkOptions: { - credentials: "same-origin" - } - } -} - -export default { clientConfigs } diff --git a/graphql/endpoints.js b/graphql/endpoints.js deleted file mode 100644 index 959aeb9b1bc87920170d4e2a73103099921a16cb..0000000000000000000000000000000000000000 --- a/graphql/endpoints.js +++ /dev/null @@ -1,4 +0,0 @@ -module.exports = { - coindufEu: "https://wwgql.coinduf.eu", - trentesauxFr: "https://gql.wotwizard.trentesaux.fr/" -} diff --git a/graphql/endpoints/coindufeu.js b/graphql/endpoints/coindufeu.js new file mode 100644 index 0000000000000000000000000000000000000000..a7d180116825c4aff08cfa651505351869452b77 --- /dev/null +++ b/graphql/endpoints/coindufeu.js @@ -0,0 +1,26 @@ +import { HttpLink } from "apollo-link-http" +import { setContext } from "apollo-link-context" +import { from } from "apollo-link" +import { cache } from "../cache" + +export default (ctx) => { + const ssrMiddleware = setContext((_, { headers }) => { + if (process.client) return headers + return { + headers + } + }) + + const httpLink = new HttpLink({ + uri: "https://wwgql.coinduf.eu" + }) + + const link = from([ssrMiddleware, httpLink]) + + return { + link, + cache, + // https://github.com/nuxt-community/apollo-module/issues/306#issuecomment-607225431 + defaultHttpLink: false + } +} diff --git a/graphql/endpoints/trentesaux.js b/graphql/endpoints/trentesaux.js new file mode 100644 index 0000000000000000000000000000000000000000..464caf49a5213f07136586d6c1646a4b15474fcc --- /dev/null +++ b/graphql/endpoints/trentesaux.js @@ -0,0 +1,26 @@ +import { HttpLink } from "apollo-link-http" +import { setContext } from "apollo-link-context" +import { from } from "apollo-link" +import { cache } from "../cache" + +export default (ctx) => { + const ssrMiddleware = setContext((_, { headers }) => { + if (process.client) return headers + return { + headers + } + }) + + const httpLink = new HttpLink({ + uri: "https://gql.wotwizard.trentesaux.fr/" + }) + + const link = from([ssrMiddleware, httpLink]) + + return { + link, + cache, + // https://github.com/nuxt-community/apollo-module/issues/306#issuecomment-607225431 + defaultHttpLink: false + } +} diff --git a/graphql/schemaQuery.js b/graphql/schemaQuery.js index 31c2bba669d465e78f9b6cd1ac125e35d60c4054..a3f48ac4f5ff9498a8acade4d2c7896c26e01239 100644 --- a/graphql/schemaQuery.js +++ b/graphql/schemaQuery.js @@ -1,8 +1,7 @@ -const endpoints = require("./endpoints") const fetch = require("node-fetch") const fs = require("fs") -fetch(Object.values(endpoints)[0], { +fetch("https://gql.wotwizard.trentesaux.fr/", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ diff --git a/nuxt.config.js b/nuxt.config.js index 00ceac73d0a42045dfe1eaea5cd00d9a874cf416..316cd0a98787ff318edad23b1c518dfff5811e1f 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -1,5 +1,4 @@ import i18n from "./i18n" -import APOLLO_CONFIG from "./graphql/config" export default { // Disable server-side rendering: https://go.nuxtjs.dev/ssr-mode @@ -126,7 +125,12 @@ export default { } }, - apollo: APOLLO_CONFIG, + apollo: { + clientConfigs: { + coindufeu: "~/graphql/endpoints/coindufeu", + trentesaux: "~/graphql/endpoints/trentesaux" + } + }, router: { linkExactActiveClass: "active" diff --git a/package.json b/package.json index 4ba640fd09ef581c507bbb06c2b96af401534c8a..56449c5b13f8739d12423e3778c88dfdcb61cf2e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wotwizard-ui", - "version": "2.4.1", + "version": "2.4.2", "private": true, "scripts": { "dev": "nuxt", diff --git a/pages/favoris.vue b/pages/favoris.vue index 18a1e12d4ae58d59603951fcc9ef6f998b559f99..34af878e1b4b3033f1df6b03ee629da1fa94d687 100644 --- a/pages/favoris.vue +++ b/pages/favoris.vue @@ -75,7 +75,7 @@ export default { }, apollo: { $client() { - return this.$getApolloClient() + return this.getApolloClient }, favoris: { query: FAVORIS, diff --git a/pages/index.vue b/pages/index.vue index 66febf5d16f98b6ed83b72c5554db0d7426f50d2..40c21267428d2b10089da320edadff7a97865b28 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -78,7 +78,7 @@ export default { }, apollo: { $client() { - return this.$getApolloClient() + return this.getApolloClient }, newMembers: { query: LAST_EVENTS, diff --git a/pages/membre.vue b/pages/membre.vue index 4cd4918bbe64fc8880dee5afcb5ee50087fa2f31..fd0c819faacb99c6d45042c44c77921e8cdb4264 100644 --- a/pages/membre.vue +++ b/pages/membre.vue @@ -45,7 +45,7 @@ export default { }, apollo: { $client() { - return this.$getApolloClient() + return this.getApolloClient }, idFromHash: { query: SEARCH_MEMBER, diff --git a/pages/membres/index.vue b/pages/membres/index.vue index 6fc26c0966685071524a5cb6f5678fc95587bec2..18e0157e89444c654c70dae63313c326b57414d6 100644 --- a/pages/membres/index.vue +++ b/pages/membres/index.vue @@ -59,7 +59,7 @@ export default { }, apollo: { $client() { - return this.$getApolloClient() + return this.getApolloClient }, idSearch: { query: SEARCH_MEMBERS, diff --git a/pages/parametres.vue b/pages/parametres.vue index 8e17fba5fab71773f6a639aba14dd5e6c4e1e318..62ebdacba3eb7d64710b4c40bc6e5caf696d29dd 100644 --- a/pages/parametres.vue +++ b/pages/parametres.vue @@ -88,7 +88,7 @@ export default { }, apollo: { $client() { - return this.$getApolloClient() + return this.getApolloClient }, allParameters: { query: PARAMS, diff --git a/pages/previsions/futures_entrees.vue b/pages/previsions/futures_entrees.vue index 927726b90c159360bdfd634be6d2ecc245781522..a6d1155491e13f408ee781896d3f2859719d1eff 100644 --- a/pages/previsions/futures_entrees.vue +++ b/pages/previsions/futures_entrees.vue @@ -199,7 +199,7 @@ export default { }, apollo: { $client() { - return this.$getApolloClient() + return this.getApolloClient }, wwResult: { query: NEWCOMERS, diff --git a/pages/previsions/futures_sorties.vue b/pages/previsions/futures_sorties.vue index 3786db67a63eff06a9a48b5ae58cd014d5768e28..c5d5218bea132528b430a371efdfd8d18d21f724 100644 --- a/pages/previsions/futures_sorties.vue +++ b/pages/previsions/futures_sorties.vue @@ -89,7 +89,7 @@ export default { }, apollo: { $client() { - return this.$getApolloClient() + return this.getApolloClient }, memEnds: { query: NEXT_EXITS, diff --git a/plugins/getApolloClient.js b/plugins/getApolloClient.js index 6eb01deff5fd90ae3d5e01da4375c1d734f32ed0..0ce80661c44c94746255c65b04d67d33cf7625ec 100644 --- a/plugins/getApolloClient.js +++ b/plugins/getApolloClient.js @@ -1,8 +1,14 @@ -import * as endpoints from "../graphql/endpoints" +import Vue from "vue" -export default ({ app }, inject) => { - inject( - "getApolloClient", - () => localStorage.getItem("apollo-client") || Object.keys(endpoints)[0] - ) +let mixin = { + computed: { + getApolloClient() { + return ( + localStorage.getItem("apollo-client") || + Object.keys($nuxt.$apolloProvider.clients)[0] + ) + } + } } + +Vue.mixin(mixin) diff --git a/web-ext/manifest.json b/web-ext/manifest.json index 923fe9f0a2bb4eff9316fbc0c2c3e47fbb50d404..68b4a3905eacec53e99a2bea8d194c3898a7b323 100644 --- a/web-ext/manifest.json +++ b/web-ext/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Wotwizard UI", "description": "Le magicien de la toile de confiance", - "version": "2.4.1", + "version": "2.4.2", "homepage_url": "https://wotwizard.axiom-team.fr", "browser_action": { "browser_style": true,