-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathurql.ts
191 lines (166 loc) · 5.75 KB
/
urql.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import { Client, ClientOptions, Exchange, createClient, dedupExchange, errorExchange, fetchExchange, ssrExchange } from '@urql/core'
import { ref } from 'vue'
import { devtoolsExchange } from '@urql/devtools'
import * as Session from 'supertokens-web-js/recipe/session'
import { authExchange } from '@urql/exchange-auth'
import { relayPagination } from '@urql/exchange-graphcache/extras'
import { offlineExchange } from '@urql/exchange-graphcache'
import { makeDefaultStorage } from '@urql/exchange-graphcache/default-storage'
import { provideClient } from '@urql/vue'
import { defineNuxtPlugin } from '#app'
import { makeAsyncStorage } from '~/utils/makeAsyncStorage'
import { GraphCacheConfig } from '~/graphql/schema'
import introspection from '~/graphql/introspection'
const ssrKey = '__URQL_DATA__'
export default defineNuxtPlugin((nuxtApp) => {
const env = useRuntimeConfig()
const ssr = ssrExchange({
isClient: process.client,
})
// when app is created in browser, restore SSR state from nuxt payload
if (process.client) {
nuxtApp.hook('app:created', () => {
ssr.restoreData(nuxtApp.payload[ssrKey])
})
}
// send SSR status to client when application is created on server
if (process.server) {
nuxtApp.hook('app:rendered', () => {
if (nuxtApp.payload.data)
nuxtApp.payload[ssrKey] = ssr.extractData()
})
}
// Restore SSR payload once app is created on the client
if (process.client) {
nuxtApp.hook('app:created', () => {
if (nuxtApp.payload?.data)
ssr.restoreData(nuxtApp.payload.data[ssrKey])
})
}
const storage = makeDefaultStorage({
idbName: 'graphcache-v3', // The name of the IndexedDB database
maxAge: 7, // The maximum age of the persisted data in days
})
const storageMobile = makeAsyncStorage({
dataKey: 'graphcache-data', // The AsyncStorage key used for the data (defaults to graphcache-data)
metadataKey: 'graphcache-metadata', // The AsyncStorage key used for the metadata (defaults to graphcache-metadata)
maxAge: 7, // How long to persist the data in storage (defaults to 7 days)
})
const schema = introspection as GraphCacheConfig['schema']
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
const cache = offlineExchange<GraphCacheConfig>({
schema,
storage: env.public.mobile ? storageMobile : storage,
updates: {
/* ... */
Mutation: {
},
},
optimistic: {
/* ... */
},
resolvers: {
/* ... */
},
keys: {
/* ... */
},
})
const exchanges = [
cache,
dedupExchange,
ssr, // Add `ssr`
fetchExchange,
errorExchange({
onError(error) {
if (error.response?.status === 401)
window.location.href = '/logout'
},
}),
authExchange<{ token: string }>({
getAuth: async ({ authState }) => {
if (!authState) {
const token = await Session.getAccessToken() || ''
return { token }
}
return authState
},
addAuthToOperation: ({ authState, operation }) => {
const isMobile = env.public.mobile
if (!authState || !authState.token || !isMobile)
return operation
const fetchOptions
= typeof operation.context.fetchOptions === 'function'
? operation.context.fetchOptions()
: (operation.context.fetchOptions || {})
return {
...operation,
context: {
...operation.context,
fetchOptions: {
...fetchOptions,
headers: {
...fetchOptions.headers,
Authorization: `Bearer ${authState.token}`,
},
},
},
}
},
}),
] as Exchange[]
const isDev = process.env.NODE_ENV === 'development'
// Devtools exchange
if (isDev)
exchanges.unshift(devtoolsExchange)
const options: ClientOptions = {
url: env.public.graphql,
exchanges,
fetchOptions: () => {
const env = useRuntimeConfig()
const isMobile = env.public.mobile
const lang = 'en'
const header = isMobile
? {
'X-language': lang || 'en',
'X-Client': isMobile ? 'mobile' : 'web',
} as HeadersInit
: {
'X-language': lang || 'en',
'X-Client': isMobile ? 'mobile' : 'web',
} as HeadersInit
return process.client
? {
headers: header as HeadersInit,
}
: {}
},
}
const client = ref(createClient(options))
function urqlReset() {
client.value = createClient(options)
}
nuxtApp.hook('vue:setup', () => {
const { $urql } = useNuxtApp()
provideClient($urql)
})
return {
provide: {
urql: client,
urqlReset,
},
}
})
declare module '#app' {
interface NuxtApp {
$urql: Ref<Client>
urqlReset: () => undefined
}
}
declare module 'nuxt/dist/app/nuxt' {
interface NuxtApp {
$urql: Ref<Client>
urqlReset: () => undefined
}
}