forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.js
More file actions
126 lines (115 loc) · 3.27 KB
/
Copy pathclient.js
File metadata and controls
126 lines (115 loc) · 3.27 KB
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
import 'isomorphic-unfetch'
import { ApolloClient, createHttpLink, InMemoryCache, makeVar, split } from '@apollo/client'
import { getMainDefinition, relayStylePagination } from '@apollo/client/utilities'
import { setContext } from '@apollo/client/link/context'
import { i18n } from '@lingui/core'
import { WebSocketLink } from '@apollo/client/link/ws'
import { SubscriptionClient } from 'subscriptions-transport-ws'
export function createCache() {
return new InMemoryCache({
typePolicies: {
Query: {
fields: {
findMyDomains: relayStylePagination(),
findMyDmarcSummaries: relayStylePagination(),
findMyOrganizations: relayStylePagination(['isAdmin']),
findMyUsers: relayStylePagination(),
findAuditLogs: relayStylePagination(),
findMyWebCheckOrganizations: relayStylePagination(),
getOneTimeScans: {
merge(existing = [], incoming) {
return [...existing, incoming]
},
},
},
},
DetailTables: {
fields: {
dkimFailure: relayStylePagination(),
dmarcFailure: relayStylePagination(),
spfFailure: relayStylePagination(),
fullPass: relayStylePagination(),
},
},
Domain: {
fields: {
status: {
merge(existing, incoming, { mergeObjects }) {
return mergeObjects(existing, incoming)
},
},
},
},
Organization: {
fields: {
affiliations: relayStylePagination(),
domains: relayStylePagination(),
},
},
Period: {
keyFields: ['month', 'year', 'domain'],
fields: {
detailTables: {
merge(existing = {}, incoming) {
return { ...existing, ...incoming }
},
},
},
},
PersonalUser: {
keyFields: [],
},
SharedUser: {
fields: {
affiliations: relayStylePagination(),
},
},
},
})
}
export const cache = createCache()
export const currentUserVar = makeVar({
jwt: null,
tfaSendMethod: null,
userName: null,
})
const httpLink = createHttpLink({
uri: process.env.NODE_ENV === 'production' ? `https://${window.location.host}/graphql` : '/graphql',
})
const headersLink = setContext((_, { headers }) => {
const language = i18n.locale
return {
headers: {
...headers,
...(currentUserVar().jwt && { authorization: currentUserVar().jwt }),
'Accept-Language': language,
},
}
})
const httpLinkWithHeaders = headersLink.concat(httpLink)
export const wsClient = new SubscriptionClient(
process.env.NODE_ENV === 'production' ? `wss://${window.location.host}/graphql` : 'ws://localhost:3000/graphql',
{
lazy: true,
reconnect: true,
connectionParams: () => {
return {
AcceptLanguage: i18n.locale,
authorization: currentUserVar().jwt,
}
},
},
)
const wsLink = new WebSocketLink(wsClient)
const splitLink = split(
({ query }) => {
const definition = getMainDefinition(query)
return definition.kind === 'OperationDefinition' && definition.operation === 'subscription'
},
wsLink,
httpLinkWithHeaders,
)
export const client = new ApolloClient({
link: splitLink,
cache,
})