-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathuseSse.ts
44 lines (39 loc) · 1.59 KB
/
useSse.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
import { useEffect } from "react";
import { useLocation } from "react-router-dom";
import { Query, useQueryClient } from "@tanstack/react-query";
import { OpenApiTsReactQueryKey } from "@/types/openapi-ts";
import {
v1GetWorkspaceAlertsQueryKey,
v1GetWorkspaceMessagesQueryKey,
} from "@/api/generated/@tanstack/react-query.gen";
const BASE_URL = import.meta.env.VITE_BASE_API_URL;
export function useSse() {
const location = useLocation();
const queryClient = useQueryClient();
useEffect(() => {
const eventSource = new EventSource(
`${BASE_URL}/api/v1/alerts_notification`,
);
eventSource.onmessage = function (event) {
if (event.data.toLowerCase().includes("new alert detected")) {
queryClient.invalidateQueries({
refetchType: "all",
predicate: (
query: Query<unknown, Error, unknown, OpenApiTsReactQueryKey>,
) =>
query.queryKey[0]._id ===
v1GetWorkspaceAlertsQueryKey({
path: { workspace_name: "default" }, // NOTE: Just supplying "default" to satisfy the type-checker, because we are just using the `_id`, this invalidates for any workspace
})[0]?._id ||
query.queryKey[0]._id ===
v1GetWorkspaceMessagesQueryKey({
path: { workspace_name: "default" }, // NOTE: Just supplying "default" to satisfy the type-checker, because we are just using the `_id`, this invalidates for any workspace
})[0]?._id,
});
}
};
return () => {
eventSource.close();
};
}, [location.pathname, queryClient]);
}