131ecdbbe6
Complete merchant dashboard upgrade:
Next.js 16 compatibility:
- Fix params/searchParams typed as Promise<{}> throughout App Router
- Replace middleware.ts with proxy.ts (Next.js 16 convention)
- Remove unused @ts-expect-error directives caught by stricter TS
- Cast dynamic next-intl t() keys to fix TranslateArgs type errors
Offline POS:
- IndexedDB queue (meezi_pos_offline) for orders created while offline
- Zustand sync store tracking queueCount, isSyncing, isOnline
- useOfflineSync hook: auto-syncs on reconnect/visibility-change
- SyncStatusIndicator chip in topbar (amber=offline, blue=syncing)
- submitOrderToApi falls back to local order on network failure
- Local orders skip payment flow; sync on reconnect
PWA (installable):
- @ducanh2912/next-pwa with Workbox runtime caching rules
- Web App Manifest (manifest.ts) — RTL/Farsi, theme #0F6E56
- PWA icons: 192px, 512px, maskable 512px
- next.config.ts replaces next.config.mjs
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
76 lines
2.4 KiB
TypeScript
76 lines
2.4 KiB
TypeScript
import * as React from "react";
|
|
import { cva, type VariantProps } from "class-variance-authority";
|
|
import { AlertCircle, CheckCircle2, Info, TriangleAlert, X } from "lucide-react";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const alertVariants = cva(
|
|
"relative flex w-full gap-3 rounded-xl border px-4 py-3 text-sm shadow-sm [&>svg]:shrink-0",
|
|
{
|
|
variants: {
|
|
variant: {
|
|
default: "border-border/80 bg-card text-foreground [&>svg]:text-muted-foreground",
|
|
info: "border-[#0C447C]/25 bg-[#0C447C]/5 text-[#0C447C] [&>svg]:text-[#0C447C]",
|
|
success:
|
|
"border-[#0F6E56]/25 bg-[#E1F5EE] text-[#0F6E56] [&>svg]:text-[#0F6E56]",
|
|
warning:
|
|
"border-[#BA7517]/30 bg-amber-50 text-[#BA7517] [&>svg]:text-[#BA7517]",
|
|
destructive:
|
|
"border-[#A32D2D]/25 bg-red-50 text-[#A32D2D] [&>svg]:text-[#A32D2D]",
|
|
},
|
|
},
|
|
defaultVariants: { variant: "default" },
|
|
}
|
|
);
|
|
|
|
const iconByVariant = {
|
|
default: Info,
|
|
info: Info,
|
|
success: CheckCircle2,
|
|
warning: TriangleAlert,
|
|
destructive: AlertCircle,
|
|
} as const;
|
|
|
|
export interface AlertProps
|
|
extends React.HTMLAttributes<HTMLDivElement>,
|
|
VariantProps<typeof alertVariants> {
|
|
title?: string;
|
|
onDismiss?: () => void;
|
|
}
|
|
|
|
const Alert = React.forwardRef<HTMLDivElement, AlertProps>(
|
|
({ className, variant = "default", title, onDismiss, children, ...props }, ref) => {
|
|
const Icon = iconByVariant[variant ?? "default"];
|
|
return (
|
|
<div
|
|
ref={ref}
|
|
role="alert"
|
|
className={cn(alertVariants({ variant }), className)}
|
|
{...props}
|
|
>
|
|
<Icon className="mt-0.5 h-4 w-4" aria-hidden />
|
|
<div className="min-w-0 flex-1 space-y-0.5">
|
|
{title ? <p className="font-medium leading-snug">{title}</p> : null}
|
|
{children ? (
|
|
<div className={cn("text-[13px] leading-relaxed opacity-95", title && "opacity-90")}>
|
|
{children}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
{onDismiss ? (
|
|
<button
|
|
type="button"
|
|
onClick={onDismiss}
|
|
className="absolute end-2 top-2 rounded-md p-1 opacity-60 transition hover:bg-black/5 hover:opacity-100"
|
|
aria-label="Dismiss"
|
|
>
|
|
<X className="h-3.5 w-3.5" />
|
|
</button>
|
|
) : null}
|
|
</div>
|
|
);
|
|
}
|
|
);
|
|
Alert.displayName = "Alert";
|
|
|
|
export { Alert, alertVariants };
|