mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
* initial dependency update with initial setup * initial dependency update with initial setup * lock update * Revert "initial dependency update with initial setup" This reverts commit aa71afc3eca20042a1e13066bee1730a15606dd2. * admin - moved to vite * feat(admin): migration packages update (#3327) * bump apollo package * extend vue config * create useCreationMonths composable * WIP * temporary * install dependencies * adjust configs * rework footer component * remove not needed spaces, * rework overview page * rework component * rework user search page * rework navbar * navbar adjustments * add depenedencies * style adjustment in footer * composable adjustments * update node version * rework search and pagination * feat(admin) - disable unit tests for migration time * feat(admin) - update eslint * wip on search user * rework creation formular component * feat(admin) - update eslint babel * feat(admin) - change stylelint version, fix eslint errors * feat(admin) - update dependency * feat(admin) - update dependency * feat(admin) - update dependency * feat(admin) - update dependency * feat(admin) - update dependency * feat(admin) - update dependency * feat(admin) - update dependency, update node * feat(admin) - update icons --------- Co-authored-by: Mateusz Michałowski <mateusz.michalowski@monterail.com> --------- Co-authored-by: Kamila Lach <80581523+unnunhexium@users.noreply.github.com>
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
import { ApolloClient, ApolloLink, InMemoryCache, HttpLink } from 'apollo-boost'
|
|
import VueApollo from 'vue-apollo'
|
|
import CONFIG from '../config'
|
|
import store from '../store/store'
|
|
import { provideApolloClient } from '@vue/apollo-composable'
|
|
|
|
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}` : '',
|
|
clientTimezoneOffset: new Date().getTimezoneOffset(),
|
|
},
|
|
})
|
|
return forward(operation).map((response) => {
|
|
if (response.errors && response.errors[0].message === '403.13 - Client certificate revoked') {
|
|
store.dispatch('logout', null)
|
|
window.location.assign(CONFIG.WALLET_LOGIN_URL)
|
|
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(),
|
|
})
|
|
|
|
provideApolloClient(apolloClient)
|
|
|
|
export const apolloProvider = new VueApollo({
|
|
defaultClient: apolloClient,
|
|
})
|