removed static props for PageAlert

This commit is contained in:
PxlLoewe
2025-05-27 11:19:18 -07:00
parent f54d3ab040
commit 5d5b2dc91f
12 changed files with 70 additions and 142 deletions

View File

@@ -1,4 +1,5 @@
import { prisma } from "@repo/db";
import { MessageCircleWarning } from "lucide-react";
const fetchMainMessage = async () => {
return await prisma.notam.findFirst({
where: {
@@ -8,45 +9,33 @@ const fetchMainMessage = async () => {
});
};
const mainMessage = await fetchMainMessage();
export const WarningAlert = async () => {
const mainMessage = await fetchMainMessage();
let msgColor;
switch (mainMessage?.color) {
case "WARNING":
msgColor = "alert alert-warning ml-3";
break;
case "INFO":
msgColor = "alert alert-info ml-3";
break;
case "SUCCESS":
msgColor = "alert alert-success ml-3";
break;
case "ERROR":
msgColor = "alert alert-error ml-3";
break;
default:
msgColor = "alert ml-3";
}
let msgColor;
switch (mainMessage?.color) {
case "WARNING":
msgColor = "alert alert-warning ml-3";
break;
case "INFO":
msgColor = "alert alert-info ml-3";
break;
case "SUCCESS":
msgColor = "alert alert-success ml-3";
break;
case "ERROR":
msgColor = "alert alert-error ml-3";
break;
default:
msgColor = "alert ml-3";
}
export const WarningAlert = () => {
if (mainMessage?.message == "" || !mainMessage) {
return <></>;
} else {
return (
<div role="alert" className={msgColor}>
<svg
xmlns="http://www.w3.org/2000/svg"
className="h-6 w-6 shrink-0 stroke-current"
fill="none"
viewBox="0 0 24 24"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"
/>
</svg>
<MessageCircleWarning />
<span className="font-bold">{mainMessage?.message}</span>
</div>
);