All files / src/pages/admin/whatsapp templates.tsx

100% Statements 33/33
95.23% Branches 20/21
100% Functions 15/15
100% Lines 32/32

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249                                                      2x                   31x 31x 31x 31x 31x 31x   31x           3x   1x 1x   1x       31x 3x 1x 1x       31x 4x           4x 3x 1x 1x       31x                                                     5x                                       3x                                                                         92x 92x 92x 92x 92x                                                                                             4x                                             1x                    
import { useState } from "react";
import { Plus, RefreshCw, Trash2 } from "lucide-react";
import { notify } from "../../../lib/notify";
import { getErrorMessage } from "../../../lib/api";
import {
	Card,
	CardContent,
	CardHeader,
	CardTitle,
} from "../../../components/ui/card";
import { StatusBadge } from "../../../components/ui/status-badge";
import { TemplateForm } from "../../../components/whatsapp/TemplateForm";
import {
	parseTemplateComponents,
	getTemplateBodyText,
	getTemplateHeaderText,
	getTemplateFooterText,
} from "../../../components/whatsapp/template-utils";
import { WhatsAppPageLayout } from "../../../components/whatsapp/WhatsAppPageLayout";
import { useConfirmDialog } from "../../../hooks/useConfirmDialog";
import {
	useWhatsAppTemplates,
	useSyncTemplates,
	useCreateTemplate,
	useDeleteTemplate,
} from "../../../hooks/queries/useWhatsAppQueries";
 
const STATUS_VARIANTS: Record<string, "success" | "warning" | "error" | "default"> = {
	APPROVED: "success",
	approved: "success",
	PENDING: "warning",
	pending: "warning",
	REJECTED: "error",
	rejected: "error",
};
 
export function WhatsAppTemplatesPage() {
	const [showForm, setShowForm] = useState(false);
	const { data: templates = [], isLoading } = useWhatsAppTemplates();
	const syncMutation = useSyncTemplates();
	const createMutation = useCreateTemplate();
	const deleteMutation = useDeleteTemplate();
	const { confirm, dialog } = useConfirmDialog();
 
	const handleCreate = (data: {
		name: string;
		language: string;
		category: string;
		components: unknown[];
	}) => {
		createMutation.mutate(data, {
			onSuccess: () => {
				setShowForm(false);
				notify.success("Template created");
			},
			onError: (err) => notify.error(getErrorMessage(err)),
		});
	};
 
	const handleSync = () => {
		syncMutation.mutate(undefined, {
			onSuccess: () => notify.success("Templates synced from Meta"),
			onError: (err) => notify.error(getErrorMessage(err)),
		});
	};
 
	const handleDelete = async (templateId: number, templateName: string) => {
		const confirmed = await confirm({
			title: "Delete Template",
			description: `Are you sure you want to delete "${templateName}"? This action cannot be undone.`,
			confirmLabel: "Delete",
			variant: "destructive",
		});
		if (!confirmed) return;
		deleteMutation.mutate(templateId, {
			onSuccess: () => notify.success("Template deleted"),
			onError: (err) => notify.error(getErrorMessage(err)),
		});
	};
 
	return (
		<WhatsAppPageLayout>
		<div className="space-y-6">
			{/* Header */}
			<div className="flex items-center justify-between">
				<div>
					<h1 className="text-2xl font-bold text-foreground-default">
						WhatsApp Templates
					</h1>
					<p className="mt-1 text-foreground-muted">
						Create and manage message templates for notifications and campaigns.
					</p>
				</div>
				<div className="flex gap-3">
					<button
						type="button"
						onClick={handleSync}
						disabled={syncMutation.isPending || isLoading}
						className="inline-flex items-center gap-2 rounded-md border border-border-default bg-background-default px-4 py-2 text-sm font-medium text-foreground-default hover:bg-background-muted transition-colors disabled:opacity-50"
					>
						<RefreshCw
							className={`h-4 w-4 ${syncMutation.isPending ? "animate-spin" : ""}`}
						/>
						Sync from Meta
					</button>
					<button
						type="button"
						onClick={() => setShowForm(true)}
						className="inline-flex items-center gap-2 rounded-md bg-green-600 px-4 py-2 text-sm font-medium text-white hover:bg-green-700 transition-colors"
					>
						<Plus className="h-4 w-4" />
						Create Template
					</button>
				</div>
			</div>
 
			{/* Templates Table */}
			<Card>
				<CardHeader>
					<CardTitle>
						Templates ({templates.length})
					</CardTitle>
				</CardHeader>
				<CardContent>
					{isLoading ? (
						<div className="space-y-3">
							{[1, 2, 3].map((i) => (
								<div
									key={i}
									className="h-12 bg-background-muted rounded-md animate-pulse"
								/>
							))}
						</div>
					) : templates.length === 0 ? (
						<p className="text-sm text-foreground-muted py-8 text-center">
							No templates yet. Create one or sync from Meta.
						</p>
					) : (
						<div className="overflow-x-auto">
							<table className="w-full text-sm">
								<thead>
									<tr className="border-b border-border-default">
										<th className="text-left py-3 px-2 font-medium text-foreground-muted">
											Name
										</th>
										<th className="text-left py-3 px-2 font-medium text-foreground-muted">
											Message
										</th>
										<th className="text-left py-3 px-2 font-medium text-foreground-muted">
											Category
										</th>
										<th className="text-left py-3 px-2 font-medium text-foreground-muted">
											Language
										</th>
										<th className="text-left py-3 px-2 font-medium text-foreground-muted">
											Status
										</th>
										<th className="text-right py-3 px-2 font-medium text-foreground-muted">
											Actions
										</th>
									</tr>
								</thead>
								<tbody>
									{templates.map((template) => {
										const components = parseTemplateComponents(template.components);
										const header = getTemplateHeaderText(components);
										const body = getTemplateBodyText(components);
										const footer = getTemplateFooterText(components);
										return (
										<tr
											key={template.id}
											className="border-b border-border-default last:border-0"
										>
											<td className="py-3 px-2 font-medium text-foreground-default">
												{template.name}
											</td>
											<td className="py-3 px-2 max-w-xs">
												{body ? (
													<div className="space-y-1">
														{header && (
															<p className="text-xs font-semibold text-foreground-default truncate">
																{header}
															</p>
														)}
														<p className="text-sm text-foreground-muted line-clamp-2">
															{body}
														</p>
														{footer && (
															<p className="text-xs text-foreground-subtle italic truncate">
																{footer}
															</p>
														)}
													</div>
												) : (
													<span className="text-xs text-foreground-subtle">—</span>
												)}
											</td>
											<td className="py-3 px-2 text-foreground-muted">
												{template.category}
											</td>
											<td className="py-3 px-2 text-foreground-muted uppercase">
												{template.language}
											</td>
											<td className="py-3 px-2">
												<StatusBadge
													status={template.status}
													variant={
														STATUS_VARIANTS[template.status] || "default"
													}
												/>
											</td>
											<td className="py-3 px-2 text-right">
												<button
													type="button"
													onClick={() =>
														handleDelete(template.id, template.name)
													}
													disabled={deleteMutation.isPending}
													className="p-1 text-foreground-subtle hover:text-red-600 transition-colors"
													title="Delete template"
												>
													<Trash2 className="h-4 w-4" />
												</button>
											</td>
										</tr>
										);
									})}
								</tbody>
							</table>
						</div>
					)}
				</CardContent>
			</Card>
 
			{/* Template Create Modal */}
			{showForm && (
				<TemplateForm
					onSubmit={handleCreate}
					onClose={() => setShowForm(false)}
					isSubmitting={createMutation.isPending}
				/>
			)}
 
			{dialog}
		</div>
		</WhatsAppPageLayout>
	);
}