Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
This commit is contained in:
2026-07-11 12:12:40 +08:00
parent 01a2c63b06
commit 71f758fe0b
66 changed files with 3055 additions and 939 deletions
@@ -1,95 +1,125 @@
import { useCallback } from "react";
import { useCallback, useState } from "react";
import { X } from "lucide-react";
import { Button } from "@/components/ui/button";
import {
AlertDialog, AlertDialogAction, AlertDialogCancel,
AlertDialogContent, AlertDialogDescription,
AlertDialogFooter, AlertDialogHeader, AlertDialogTitle,
} from "@/components/ui/alert-dialog";
import { useNavigate } from "react-router-dom";
import { useClientNotifications } from "@/contexts/ClientNotificationContext";
import { NotificationIcon, getTypeAccent, resolveNotificationLink } from "@/components/generic/notificationDisplay";
import { NotificationIcon, getTypeAccent, resolveNotificationLink, resolveStickyStyle } from "@/components/generic/notificationDisplay";
function resolveStickyStyle(data) {
// Supports multiple possible shapes without tightly coupling to one admin UI.
const style = data?.sticky_style ?? data?.stickyStyle ?? data?.stickyColors ?? data?.colors ?? null;
if (!style) return null;
const background = style.background ?? style.bg ?? style.backgroundColor ?? null;
const text = style.text ?? style.color ?? style.foreground ?? null;
const border = style.border ?? style.borderColor ?? null;
if (!background && !text && !border) return null;
return {
...(background ? { backgroundColor: background } : null),
...(text ? { color: text } : null),
...(border ? { borderColor: border } : null),
};
// Explicit link_url (from the admin "On Open" section) always wins. Falls back
// to the type-based resolver for broadcasts sent before that field existed.
function resolveClickAction(stickyAnnouncement) {
const explicitUrl = stickyAnnouncement.data?.linkUrl || null;
if (explicitUrl) {
return {
label: "Open Link",
go: (navigate) => (explicitUrl.startsWith("/")
? navigate(explicitUrl)
: window.open(explicitUrl, "_blank", "noopener,noreferrer")),
};
}
return resolveNotificationLink(stickyAnnouncement.type, stickyAnnouncement.data);
}
export default function StickyAnnouncementBar() {
const navigate = useNavigate();
const { stickyAnnouncement, markSeen } = useClientNotifications();
const [detailsOpen, setDetailsOpen] = useState(false);
const onDismiss = useCallback(async () => {
if (!stickyAnnouncement) return;
await markSeen(stickyAnnouncement.notification_id);
}, [stickyAnnouncement, markSeen]);
const onClickBanner = useCallback(async () => {
// Opening the dialog must NOT mark it seen — markSeen clears
// stickyAnnouncement, which would unmount this component (dialog included)
// before it ever shows. Only the X button dismisses/marks seen.
const onClickBanner = useCallback(() => {
if (!stickyAnnouncement) return;
const id = stickyAnnouncement.notification_id;
await markSeen(id);
const link = resolveNotificationLink(stickyAnnouncement.type, stickyAnnouncement.data);
if (link) await link.go(navigate);
}, [stickyAnnouncement, markSeen, navigate]);
setDetailsOpen(true);
}, [stickyAnnouncement]);
if (!stickyAnnouncement) return null;
const accentClass = getTypeAccent(stickyAnnouncement.type);
const inlineStyle = resolveStickyStyle(stickyAnnouncement.data);
const clickAction = resolveClickAction(stickyAnnouncement);
return (
<div
role="status"
className="fixed left-0 right-0 z-60 border-b shadow-sm px-4 md:px-6"
style={{ top: 0 }}
>
<>
<div
onClick={onClickBanner}
className="w-full cursor-pointer bg-card border rounded-none px-4 py-3 flex items-start justify-between gap-4"
style={inlineStyle ?? undefined}
role="status"
className="w-full border-b shadow-sm px-4 md:px-6"
>
<div className="flex items-start gap-3 min-w-0">
<div className={`flex h-9 w-9 items-center justify-center rounded ${accentClass}`}>
<NotificationIcon type={stickyAnnouncement.type} className="h-5 w-5" />
</div>
<div className="min-w-0">
<p className="text-sm font-semibold leading-snug truncate">
{stickyAnnouncement.title || "Announcement"}
</p>
<p className="text-sm text-muted-foreground leading-snug line-clamp-2">
{stickyAnnouncement.message || ""}
</p>
</div>
</div>
<Button
type="button"
variant="ghost"
size="icon"
className="shrink-0 text-muted-foreground hover:text-foreground"
onClick={(e) => {
e.preventDefault();
e.stopPropagation();
void onDismiss();
}}
aria-label="Dismiss sticky announcement"
title="Dismiss"
<div
onClick={onClickBanner}
className="w-full cursor-pointer bg-card rounded-none py-3 flex items-center justify-between gap-4"
style={inlineStyle ?? undefined}
>
<X className="size-4" />
</Button>
<div className="flex items-start gap-3 min-w-0">
<div className={`flex h-9 w-9 items-center justify-center rounded ${accentClass}`}>
<NotificationIcon type={stickyAnnouncement.type} className="h-5 w-5" />
</div>
<div className="min-w-0">
<p className="text-sm font-semibold leading-snug truncate">
{stickyAnnouncement.title || "Announcement"}
</p>
<p className="text-sm text-muted-foreground leading-snug line-clamp-2">
{stickyAnnouncement.message || ""}
</p>
</div>
</div>
<Button
variant="outline"
size="icon"
onClick={(e) => {
e.preventDefault();
e.stopPropagation();
void onDismiss();
}}
aria-label="Dismiss sticky announcement"
title="Dismiss"
>
<X className="size-4" />
</Button>
</div>
</div>
</div>
{/* Full-content view — plain text info, or with an Open Link action
when the announcement was created with a link (see AddNotificationBroadcast's
"On Open" section). */}
<AlertDialog open={detailsOpen} onOpenChange={setDetailsOpen}>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle className="flex items-center gap-2">
<div className={`flex h-8 w-8 items-center justify-center rounded shrink-0 ${accentClass}`}>
<NotificationIcon type={stickyAnnouncement.type} className="h-4 w-4" />
</div>
{stickyAnnouncement.title || "Announcement"}
</AlertDialogTitle>
<AlertDialogDescription asChild>
<p className="whitespace-pre-wrap text-left pt-1 text-foreground">
{stickyAnnouncement.message || ""}
</p>
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel>Close</AlertDialogCancel>
{clickAction && (
<AlertDialogAction onClick={() => clickAction.go(navigate)}>
{clickAction.label}
</AlertDialogAction>
)}
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
</>
);
}