import Vue from 'vue' import DashboardPlugin from './plugins/dashboard-plugin' import App from './App.vue' import i18n from './i18n.js' import { loadAllRules } from './validation-rules' import { ApolloClient, ApolloLink, InMemoryCache, HttpLink } from 'apollo-boost' import VueApollo from 'vue-apollo' import CONFIG from './config' import addNavigationGuards from './routes/guards' import { store } from './store/store' import router from './routes/router' const httpLink = new HttpLink({ uri: CONFIG.GRAPHQL_URI }) const authLink = new ApolloLink((operation, forward) => { const token = store.state.token operation.setContext({ headers: { Authorization: token && token.length > 0 ? `Bearer ${token}` : '', }, }) return forward(operation).map((response) => { if (response.errors && response.errors[0].message === '403.13 - Client certificate revoked') { response.errors[0].message = i18n.t('error.session-expired') store.dispatch('logout', null) if (router.currentRoute.path !== '/login') router.push('/login') return response } const newToken = operation.getContext().response.headers.get('token') if (newToken) store.commit('token', newToken) return response }) }) const apolloClient = new ApolloClient({ link: authLink.concat(httpLink), cache: new InMemoryCache(), uri: CONFIG.GRAPHQL_URI, }) const apolloProvider = new VueApollo({ defaultClient: apolloClient, }) // plugin setup Vue.use(DashboardPlugin) Vue.config.productionTip = false loadAllRules(i18n) addNavigationGuards(router, store, apolloProvider.defaultClient) /* eslint-disable no-new */ new Vue({ el: '#app', router, store, i18n, apolloProvider, render: (h) => h(App), })