Skip to content

Commit d160fb8

Browse files
committed
Legg til detail på GlobalAlerts og lag POC for å vise alert fra en eventstrøm
1 parent 753cd75 commit d160fb8

File tree

5 files changed

+59
-30
lines changed

5 files changed

+59
-30
lines changed

app/components/global-alert/GlobalAlerts.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Alert, BodyLong, Heading } from "@navikt/ds-react";
1+
import { Alert, BodyLong, Detail, Heading } from "@navikt/ds-react";
22
import classnames from "classnames";
33

44
import { useGlobalAlerts } from "~/hooks/useGlobalAlerts";
@@ -25,6 +25,7 @@ export function GlobalAlerts() {
2525
<>
2626
<Heading size="small">{alert.title}</Heading>
2727
{alert.body && <BodyLong>{alert.body}</BodyLong>}
28+
<Detail>{alert.service}</Detail>
2829
</>
2930
</Alert>
3031
))}

app/routes/test.alert.tsx

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { Heading } from "@navikt/ds-react";
2+
import { useEffect } from "react";
3+
import { useEventSource } from "remix-utils/sse/react";
4+
5+
import { useGlobalAlerts } from "~/hooks/useGlobalAlerts";
6+
7+
export default function Time() {
8+
const { addAlert } = useGlobalAlerts();
9+
const alert = useEventSource("/test/sse/alert", { event: "alert" });
10+
11+
useEffect(() => {
12+
if (alert) {
13+
addAlert(JSON.parse(alert));
14+
}
15+
}, [alert]);
16+
17+
return (
18+
<div>
19+
<Heading size={"xsmall"}>Test alerts</Heading>
20+
</div>
21+
);
22+
}

app/routes/test.sse.alert.ts

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import type { LoaderFunctionArgs } from "react-router";
2+
import { eventStream } from "remix-utils/sse/server";
3+
4+
import { IAlert } from "~/context/alert-context";
5+
6+
function getRandomInterval() {
7+
return Math.floor(Math.random() * (10000 - 5000 + 1)) + 5000;
8+
}
9+
10+
function generateAlert() {
11+
const alert: IAlert = {
12+
variant: "info",
13+
title: "Nytt dokument",
14+
body: `Det har kommet en ettersending i saken.`,
15+
service: new Date().toLocaleTimeString("nb-NO"),
16+
};
17+
return alert;
18+
}
19+
20+
export async function loader({ request }: LoaderFunctionArgs) {
21+
return eventStream(request.signal, function setup(send) {
22+
const timer = setInterval(() => {
23+
const alert = generateAlert();
24+
send({
25+
event: "alert",
26+
data: JSON.stringify(alert),
27+
});
28+
}, getRandomInterval());
29+
30+
// Cleanup function to stop the interval when the connection is closed
31+
return function clear() {
32+
clearInterval(timer);
33+
};
34+
});
35+
}

app/routes/test.sse.time.ts

-14
This file was deleted.

app/routes/test.time.tsx

-15
This file was deleted.

0 commit comments

Comments
 (0)