2023-11-28 13:18:25 +00:00
|
|
|
import type { Accessor, JSX } from 'solid-js'
|
|
|
|
|
2024-02-04 11:25:21 +00:00
|
|
|
import type { Author, Reaction, Shout, Topic } from '../graphql/schema/core.gen'
|
2024-02-04 09:03:15 +00:00
|
|
|
|
2023-12-15 13:45:34 +00:00
|
|
|
import { EventStreamContentType, fetchEventSource } from '@microsoft/fetch-event-source'
|
2024-02-04 11:25:21 +00:00
|
|
|
import { createContext, createEffect, createSignal, useContext } from 'solid-js'
|
2023-11-28 15:36:00 +00:00
|
|
|
|
2024-02-04 09:07:08 +00:00
|
|
|
import { Chat, Message } from '../graphql/schema/chat.gen'
|
2024-02-04 11:25:21 +00:00
|
|
|
import { useSession } from './session'
|
2023-11-28 13:18:25 +00:00
|
|
|
|
2023-12-15 13:45:34 +00:00
|
|
|
const RECONNECT_TIMES = 2
|
|
|
|
|
2023-11-28 13:18:25 +00:00
|
|
|
export interface SSEMessage {
|
|
|
|
id: string
|
2023-12-24 08:16:41 +00:00
|
|
|
entity: string // follower | shout | reaction
|
|
|
|
action: string // create | delete | update | join | follow | seen
|
2024-02-04 09:07:08 +00:00
|
|
|
payload: Author | Shout | Topic | Reaction | Chat | Message
|
2023-11-28 13:18:25 +00:00
|
|
|
created_at?: number // unixtime x1000
|
|
|
|
seen?: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
type MessageHandler = (m: SSEMessage) => void
|
|
|
|
|
|
|
|
export interface ConnectContextType {
|
|
|
|
addHandler: (handler: MessageHandler) => void
|
|
|
|
connected: Accessor<boolean>
|
|
|
|
}
|
|
|
|
|
|
|
|
const ConnectContext = createContext<ConnectContextType>()
|
|
|
|
|
|
|
|
export const ConnectProvider = (props: { children: JSX.Element }) => {
|
2024-02-05 15:04:23 +00:00
|
|
|
const [messageHandlers, setHandlers] = createSignal<MessageHandler[]>([])
|
2023-11-28 13:18:25 +00:00
|
|
|
const [connected, setConnected] = createSignal(false)
|
2023-12-24 08:16:41 +00:00
|
|
|
const { session } = useSession()
|
2024-05-18 17:43:20 +00:00
|
|
|
const [retried, setRetried] = createSignal<number>(0)
|
2023-11-28 13:18:25 +00:00
|
|
|
|
|
|
|
const addHandler = (handler: MessageHandler) => {
|
|
|
|
setHandlers((hhh) => [...hhh, handler])
|
|
|
|
}
|
|
|
|
|
2023-12-15 13:45:34 +00:00
|
|
|
createEffect(async () => {
|
2023-12-24 08:16:41 +00:00
|
|
|
const token = session()?.access_token
|
2024-05-18 17:43:20 +00:00
|
|
|
if (token && !connected() && retried() <= RECONNECT_TIMES) {
|
2023-12-24 08:16:41 +00:00
|
|
|
console.info('[context.connect] init SSE connection')
|
2024-05-18 17:43:20 +00:00
|
|
|
try {
|
|
|
|
await fetchEventSource('https://connect.discours.io', {
|
|
|
|
method: 'GET',
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
Authorization: token,
|
|
|
|
},
|
|
|
|
onmessage(event) {
|
|
|
|
const m: SSEMessage = JSON.parse(event.data || '{}')
|
|
|
|
console.log('[context.connect] Received message:', m)
|
|
|
|
messageHandlers().forEach((handler) => handler(m))
|
|
|
|
},
|
|
|
|
onopen: (response) => {
|
|
|
|
console.log('[context.connect] SSE connection opened', response)
|
|
|
|
if (response.ok && response.headers.get('content-type') === EventStreamContentType) {
|
|
|
|
setConnected(true)
|
|
|
|
setRetried(0)
|
|
|
|
return Promise.resolve()
|
|
|
|
}
|
|
|
|
return Promise.reject(`SSE: cannot connect to real-time updates, status: ${response.status}`)
|
|
|
|
},
|
|
|
|
onclose() {
|
|
|
|
console.log('[context.connect] SSE connection closed by server')
|
|
|
|
setConnected(false)
|
|
|
|
if (retried() < RECONNECT_TIMES) {
|
|
|
|
setRetried((r) => r + 1)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onerror(err) {
|
|
|
|
console.error('[context.connect] SSE connection error:', err)
|
|
|
|
setConnected(false)
|
|
|
|
if (retried() < RECONNECT_TIMES) {
|
|
|
|
setRetried((r) => r + 1)
|
|
|
|
} else throw Error(err)
|
|
|
|
},
|
|
|
|
})
|
|
|
|
} catch (error) {
|
|
|
|
console.error('[context.connect] SSE connection failed:', error)
|
|
|
|
}
|
2023-11-28 13:18:25 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const value: ConnectContextType = { addHandler, connected }
|
|
|
|
|
|
|
|
return <ConnectContext.Provider value={value}>{props.children}</ConnectContext.Provider>
|
|
|
|
}
|
|
|
|
|
|
|
|
export const useConnect = () => useContext(ConnectContext)
|