-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
67 lines (56 loc) · 1.67 KB
/
index.js
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
import { ref } from 'vue'
import { nanoid } from 'nanoid'
import handle_errors from './errors.js'
import { VITE_API_URL, VITE_API_WS_URL } from './env.js'
import PassThrough from './PassThrough.js'
const websocket_status = ref(false)
const subscriptions = new Map()
let websocket
async function create_websocket() {
return new Promise(resolve => {
websocket = new WebSocket(VITE_API_WS_URL)
websocket.onopen = () => {
websocket_status.value = true
resolve()
}
websocket.onmessage = event => {
const { id, data, errors = [], done } = JSON.parse(event.data)
if (errors.length) handle_errors(errors)
const stream = subscriptions.get(id)
if (stream) {
if (done) {
stream.close()
subscriptions.delete(id)
} else stream.push(data)
}
}
websocket.onerror = event => console.error('WS Error event', event)
websocket.onclose = () => (websocket_status.value = false)
})
}
export function query(query, variables) {
return fetch(VITE_API_URL, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ query, variables }),
credentials: 'include',
})
.then(response => response.json())
.then(({ data, errors = [] }) => {
if (errors.length) handle_errors(errors)
return data
})
}
export async function* subscribe(query, variables) {
if (!websocket_status.value) await create_websocket()
const id = nanoid()
const stream = new PassThrough()
subscriptions.set(id, stream)
websocket.send(JSON.stringify({ id, query, variables }))
try {
for await (const data of stream) {
yield data
}
} finally {
}
}