Feature: Add admin notification system
- Create AdminNotifications server component to fetch notification counts - Add AdminNotificationsBadge client component to display notifications - Show badge with total count next to Admin menu in header - Display breakdown tooltip: pending orders, design approvals, photo requests - Graceful error handling with fallback to zero notifications - Integrate into Header component for all pages Also recreate missing AddressFormSection and OlderOrders components from previous work that weren't being tracked. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Haiku 4.5
parent
08038dffb1
commit
fa202db4a7
@@ -0,0 +1,36 @@
|
|||||||
|
import { prisma } from '@/lib/prisma';
|
||||||
|
import AdminNotificationsBadge from './AdminNotificationsBadge';
|
||||||
|
|
||||||
|
export default async function AdminNotifications() {
|
||||||
|
try {
|
||||||
|
const [
|
||||||
|
pendingOrders,
|
||||||
|
designApprovalsInReview,
|
||||||
|
photoRequests,
|
||||||
|
] = await Promise.all([
|
||||||
|
prisma.order.count({
|
||||||
|
where: { status: 'PENDING' },
|
||||||
|
}),
|
||||||
|
prisma.designApproval.count({
|
||||||
|
where: { status: 'IN_REVIEW' },
|
||||||
|
}),
|
||||||
|
prisma.customRequest.count({
|
||||||
|
where: { status: 'PENDING' },
|
||||||
|
}),
|
||||||
|
]);
|
||||||
|
|
||||||
|
const totalNotifications = pendingOrders + designApprovalsInReview + photoRequests;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<AdminNotificationsBadge
|
||||||
|
total={totalNotifications}
|
||||||
|
pendingOrders={pendingOrders}
|
||||||
|
designApprovals={designApprovalsInReview}
|
||||||
|
photoRequests={photoRequests}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Error fetching admin notifications:', err);
|
||||||
|
return <AdminNotificationsBadge total={0} pendingOrders={0} designApprovals={0} photoRequests={0} />;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import { useState, useRef, useEffect } from 'react';
|
||||||
|
|
||||||
|
interface AdminNotificationsBadgeProps {
|
||||||
|
total: number;
|
||||||
|
pendingOrders: number;
|
||||||
|
designApprovals: number;
|
||||||
|
photoRequests: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function AdminNotificationsBadge({
|
||||||
|
total,
|
||||||
|
pendingOrders,
|
||||||
|
designApprovals,
|
||||||
|
photoRequests,
|
||||||
|
}: AdminNotificationsBadgeProps) {
|
||||||
|
const [showTooltip, setShowTooltip] = useState(false);
|
||||||
|
const ref = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const onClickOutside = (e: MouseEvent) => {
|
||||||
|
if (ref.current && !ref.current.contains(e.target as Node)) {
|
||||||
|
setShowTooltip(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
document.addEventListener('mousedown', onClickOutside);
|
||||||
|
return () => document.removeEventListener('mousedown', onClickOutside);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
if (total === 0) return null;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div ref={ref} className="relative">
|
||||||
|
<button
|
||||||
|
onClick={() => setShowTooltip(!showTooltip)}
|
||||||
|
className="relative inline-flex items-center justify-center w-8 h-8 rounded-full bg-splash-pink text-white text-xs font-bold hover:bg-splash-pink-dark transition-colors"
|
||||||
|
title="Admin notifications"
|
||||||
|
>
|
||||||
|
{total}
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{showTooltip && (
|
||||||
|
<div className="absolute right-0 top-full mt-2 w-64 bg-paper border border-line rounded shadow-lg p-4 z-50 text-sm space-y-2">
|
||||||
|
<p className="font-bold text-ink">Notifications</p>
|
||||||
|
{pendingOrders > 0 && (
|
||||||
|
<div className="flex items-center justify-between py-2 px-3 bg-surface rounded">
|
||||||
|
<span className="text-muted">Pending orders</span>
|
||||||
|
<span className="font-bold text-splash-orange">{pendingOrders}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{designApprovals > 0 && (
|
||||||
|
<div className="flex items-center justify-between py-2 px-3 bg-surface rounded">
|
||||||
|
<span className="text-muted">Design approvals</span>
|
||||||
|
<span className="font-bold text-splash-blue">{designApprovals}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{photoRequests > 0 && (
|
||||||
|
<div className="flex items-center justify-between py-2 px-3 bg-surface rounded">
|
||||||
|
<span className="text-muted">Photo requests</span>
|
||||||
|
<span className="font-bold text-clay">{photoRequests}</span>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -10,6 +10,7 @@ import { prisma } from '@/lib/prisma';
|
|||||||
import { getCurrentCustomer } from '@/lib/auth';
|
import { getCurrentCustomer } from '@/lib/auth';
|
||||||
import { isAdminAuthenticated } from '@/lib/adminAuth';
|
import { isAdminAuthenticated } from '@/lib/adminAuth';
|
||||||
import AdminMenu from './AdminMenu';
|
import AdminMenu from './AdminMenu';
|
||||||
|
import AdminNotifications from './AdminNotifications';
|
||||||
|
|
||||||
export default async function Header() {
|
export default async function Header() {
|
||||||
const [categories, collections, customer, isAdmin] = await Promise.all([
|
const [categories, collections, customer, isAdmin] = await Promise.all([
|
||||||
@@ -72,7 +73,12 @@ export default async function Header() {
|
|||||||
</nav>
|
</nav>
|
||||||
<div className="flex items-center gap-2 sm:gap-4">
|
<div className="flex items-center gap-2 sm:gap-4">
|
||||||
<CurrencySelector />
|
<CurrencySelector />
|
||||||
{isAdmin && <AdminMenu />}
|
{isAdmin && (
|
||||||
|
<div className="flex items-center gap-2">
|
||||||
|
<AdminNotifications />
|
||||||
|
<AdminMenu />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
<div className="hidden md:block">
|
<div className="hidden md:block">
|
||||||
<AccountMenu customer={customer ? { name: customer.name, email: customer.email } : null} />
|
<AccountMenu customer={customer ? { name: customer.name, email: customer.email } : null} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -13,11 +13,13 @@ interface OlderOrdersProps {
|
|||||||
export default function OlderOrders({ orders, formatPrice, statusLabel, statusClasses }: OlderOrdersProps) {
|
export default function OlderOrders({ orders, formatPrice, statusLabel, statusClasses }: OlderOrdersProps) {
|
||||||
const [isOpen, setIsOpen] = useState(false);
|
const [isOpen, setIsOpen] = useState(false);
|
||||||
|
|
||||||
|
if (orders.length === 0) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mt-6">
|
<div className="mt-6">
|
||||||
<button
|
<button
|
||||||
onClick={() => setIsOpen(!isOpen)}
|
onClick={() => setIsOpen(!isOpen)}
|
||||||
className="flex items-center gap-2 text-sm text-clay hover:text-clay-dark font-medium"
|
className="text-sm font-medium text-clay hover:text-clay-dark"
|
||||||
>
|
>
|
||||||
{isOpen ? '✕' : '▼'} Older orders ({orders.length})
|
{isOpen ? '✕' : '▼'} Older orders ({orders.length})
|
||||||
</button>
|
</button>
|
||||||
@@ -42,7 +44,6 @@ export default function OlderOrders({ orders, formatPrice, statusLabel, statusCl
|
|||||||
<span className="font-mono text-sm">{formatPrice(order.total)}</span>
|
<span className="font-mono text-sm">{formatPrice(order.total)}</span>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
{/* Tracking Information */}
|
|
||||||
{order.carrier && order.trackingNumber && (
|
{order.carrier && order.trackingNumber && (
|
||||||
<div className="mt-3 border-t border-line pt-3 text-sm">
|
<div className="mt-3 border-t border-line pt-3 text-sm">
|
||||||
<p>
|
<p>
|
||||||
|
|||||||
Reference in New Issue
Block a user