File size: 1,242 Bytes
5285b72
 
 
 
33fb39c
 
 
 
 
 
 
5285b72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33fb39c
5285b72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import {
  type SubscribePayload,
  createClient as createWSClient,
} from "graphql-ws"
import {
  Client,
  cacheExchange,
  fetchExchange,
  ssrExchange,
  subscriptionExchange,
} from "urql"

const isClientSide = typeof window !== "undefined"

const ssr = ssrExchange({ isClient: isClientSide })

let wsClient: ReturnType<typeof createWSClient>
if (isClientSide) {
  const protocol = window.location.protocol === "https:" ? "wss" : "ws"
  const port = window.location.port ? `:${window.location.port}` : ""
  wsClient = createWSClient({
    url: `${protocol}://${window.location.hostname}${port}/ws/graphql`,
  })
}

export const client = new Client({
  url: "/graphql",
  exchanges: [
    cacheExchange,
    ssr,
    fetchExchange,
    ...(isClientSide
      ? [
          subscriptionExchange({
            forwardSubscription(operation) {
              return {
                subscribe: (sink) => {
                  const dispose = wsClient.subscribe(
                    operation as SubscribePayload,
                    sink,
                  )
                  return {
                    unsubscribe: dispose,
                  }
                },
              }
            },
          }),
        ]
      : []),
  ],
})