Initial commit - Route Commerce platform

This commit is contained in:
2026-06-01 19:40:55 +00:00
commit 53a9671461
617 changed files with 106132 additions and 0 deletions
+748
View File
@@ -0,0 +1,748 @@
"use client";
import { useState, useEffect, useCallback } from "react";
import { useRouter } from "next/navigation";
import { getWaterEntries, getWaterDisplaySummary, getWaterIrrigators, getWaterHeadgatesAdmin, createWaterIrrigator, createWaterHeadgate, getWaterAlertLog, type WaterDisplaySummary, type WaterDisplayHeadgate, type AlertLogEntry } from "@/actions/water-log/admin";
import { logoutWaterAdmin } from "@/actions/water-log/field";
type WaterEntry = {
id: string;
headgate_id: string;
user_id: string;
headgate_name: string;
user_name: string;
measurement: number;
unit: string;
notes: string | null;
submitted_via: string;
logged_at: string;
};
type WaterUser = {
id: string;
name: string;
role: "irrigator" | "water_admin";
active: boolean;
language_preference: string;
last_used_at: string | null;
created_at: string;
};
type Headgate = {
id: string;
name: string;
active: boolean;
unit: string;
created_at: string;
};
const TUXEDO_BRAND_ID = "64294306-5f42-463d-a5e8-2ad6c81a96de";
const LABELS = {
en: {
title: "Water Log Admin",
loggedInAs: "Logged in as",
logout: "Salir",
recentEntries: "Entradas Recientes",
noEntries: "No entries yet",
when: "Fecha",
user: "Usuario",
headgate: "Compuerta",
measurement: "Medición",
via: "Vía",
field: "Campo",
admin: "Admin",
exportCSV: "Export CSV",
clearFilters: "Clear",
displaySummary: "Resumen de Pantalla",
todayCount: "Entradas de hoy",
lastUpdate: "Última actualización",
refreshIn: "Refresh in",
noHeadgates: "Sin compuertas activas",
noLatest: "Sin lecturas",
noEntriesToday: "Sin entradas hoy",
recentEntriesLabel: "Entradas recientes",
headgates: "Headgates",
users: "Users",
addHeadgate: "Add Headgate",
addUser: "Add User",
edit: "Edit",
cancel: "Cancel",
name: "Name",
unit: "Unit",
active: "Active",
inactive: "Inactive",
role: "Role",
language: "Language",
pin: "PIN",
newPinFor: "New PIN for",
writeThisDown: "Write this down — it will not be shown again.",
dismiss: "Dismiss",
saving: "Saving...",
},
es: {
title: "Admin Registro de Agua",
loggedInAs: "Conectado como",
logout: "Salir",
recentEntries: "Entradas Recientes",
noEntries: "Sin entradas aún",
when: "Fecha",
user: "Usuario",
headgate: "Compuerta",
measurement: "Medición",
via: "Vía",
field: "Campo",
admin: "Admin",
exportCSV: "Exportar CSV",
clearFilters: "Limpiar",
displaySummary: "Resumen de Pantalla",
todayCount: "Entradas de hoy",
lastUpdate: "Última actualización",
refreshIn: "Refresh in",
noHeadgates: "Sin compuertas activas",
noLatest: "Sin lecturas",
noEntriesToday: "Sin entradas hoy",
recentEntriesLabel: "Entradas recientes",
headgates: "Compuertas",
users: "Usuarios",
addHeadgate: "Agregar Compuerta",
addUser: "Agregar Usuario",
edit: "Editar",
cancel: "Cancelar",
name: "Nombre",
unit: "Unidad",
active: "Activo",
inactive: "Inactivo",
role: "Rol",
language: "Idioma",
pin: "PIN",
newPinFor: "Nuevo PIN para",
writeThisDown: "Write this down — it will not be shown again.",
dismiss: "Dismiss",
saving: "Saving...",
},
};
function formatDateTime(iso: string): string {
return new Date(iso).toLocaleDateString("en-US", {
month: "short",
day: "numeric",
hour: "numeric",
minute: "2-digit",
});
}
const AGE_COLORS = {
green: "bg-green-100 text-green-700",
yellow: "bg-yellow-100 text-yellow-700",
red: "bg-red-100 text-red-700",
};
const UNIT_OPTIONS = ["CFS", "GPM", "gal", "ac-in", "ac-ft"];
function HeadgateCard({ hg }: { hg: WaterDisplayHeadgate }) {
const ageColor = (["green", "yellow", "red"] as const)[
hg.minutes_ago === null ? 2 : hg.minutes_ago > 60 ? 1 : 0
];
const ageLabel =
hg.minutes_ago === null
? "Never"
: hg.minutes_ago < 2
? "Just now"
: hg.minutes_ago < 60
? `${hg.minutes_ago}m ago`
: `${Math.floor(hg.minutes_ago / 60)}h ago`;
return (
<div className="rounded-xl border border-stone-200 bg-white p-3 min-w-[140px] shrink-0">
<p className="text-sm font-semibold text-stone-900 truncate">{hg.name}</p>
{hg.latest_entry ? (
<>
<p className="mt-1 text-xl font-bold text-stone-900">
{hg.latest_entry.measurement}{" "}
<span className="text-xs font-medium text-stone-500">{hg.unit}</span>
</p>
<p className="text-xs text-stone-400">{hg.latest_entry.user_name}</p>
<span
className={`mt-1 inline-block rounded-full px-2 py-0.5 text-xs font-semibold ${AGE_COLORS[ageColor]}`}
>
{ageLabel}
</span>
</>
) : (
<p className="mt-1 text-xs text-stone-400">{LABELS.en.noLatest}</p>
)}
</div>
);
}
function SectionHeader({
title,
count,
onToggle,
action,
}: {
title: string;
count?: number;
onToggle: () => void;
action?: React.ReactNode;
}) {
return (
<div className="flex items-center justify-between py-2">
<button
onClick={onToggle}
className="flex items-center gap-2 text-base font-bold text-stone-800 hover:text-stone-900"
>
<span className="text-stone-400">{title}</span>
{count !== undefined && (
<span className="rounded-full bg-stone-100 px-2 py-0.5 text-xs font-semibold text-stone-600">
{count}
</span>
)}
</button>
{action}
</div>
);
}
export default function WaterAdminClient() {
const router = useRouter();
const [lang, setLang] = useState<"en" | "es">("en");
const [displaySummary, setDisplaySummary] = useState<WaterDisplaySummary | null>(null);
const [displayLoading, setDisplayLoading] = useState(true);
const [refreshCountdown, setRefreshCountdown] = useState(30);
const [allEntries, setAllEntries] = useState<WaterEntry[]>([]);
const [users, setUsers] = useState<WaterUser[]>([]);
const [headgates, setHeadgates] = useState<Headgate[]>([]);
const [loading, setLoading] = useState(true);
const [alertLog, setAlertLog] = useState<AlertLogEntry[]>([]);
// Filter state
const [filterDateFrom, setFilterDateFrom] = useState("");
const [filterDateTo, setFilterDateTo] = useState("");
const [filterHeadgate, setFilterHeadgate] = useState("");
const [filterVia, setFilterVia] = useState("");
// Section toggles
const [showHeadgates, setShowHeadgates] = useState(true);
const [showUsers, setShowUsers] = useState(true);
const [showEntries, setShowEntries] = useState(true);
const [showAlerts, setShowAlerts] = useState(true);
// Add forms
const [showAddHg, setShowAddHg] = useState(false);
const [showAddUser, setShowAddUser] = useState(false);
const [newPin, setNewPin] = useState<{ name: string; pin: string } | null>(null);
// New user form
const [newUserName, setNewUserName] = useState("");
const [newUserLang, setNewUserLang] = useState<"en" | "es">("en");
const [savingUser, setSavingUser] = useState(false);
const [newUserError, setNewUserError] = useState<string | null>(null);
// New headgate form
const [newHgName, setNewHgName] = useState("");
const [newHgUnit, setNewHgUnit] = useState("CFS");
const [savingHg, setSavingHg] = useState(false);
const [newHgError, setNewHgError] = useState<string | null>(null);
const t = LABELS[lang];
useEffect(() => {
const savedLang = document.cookie.match(/wl_lang=(en|es)/)?.[1] as "en" | "es" | undefined;
if (savedLang) setLang(savedLang);
loadAll();
}, []);
const loadAll = async () => {
setLoading(true);
const [entries, usersData, headgatesData, alertsData] = await Promise.all([
getWaterEntries(TUXEDO_BRAND_ID, 500),
getWaterIrrigators(TUXEDO_BRAND_ID),
getWaterHeadgatesAdmin(TUXEDO_BRAND_ID),
getWaterAlertLog(TUXEDO_BRAND_ID, 50),
]);
setAllEntries(entries);
setUsers(usersData);
setHeadgates(headgatesData);
setAlertLog(alertsData as AlertLogEntry[]);
setLoading(false);
};
const loadDisplaySummary = useCallback(async () => {
const data = await getWaterDisplaySummary(TUXEDO_BRAND_ID);
setDisplaySummary(data);
setDisplayLoading(false);
setRefreshCountdown(30);
}, []);
useEffect(() => {
loadDisplaySummary();
const interval = setInterval(() => {
setRefreshCountdown((c) => {
if (c <= 1) {
loadDisplaySummary();
return 30;
}
return c - 1;
});
}, 1000);
return () => clearInterval(interval);
}, [loadDisplaySummary]);
async function handleLogout() {
await logoutWaterAdmin();
window.location.href = "/water";
}
// Add user
async function handleAddUser(e: React.FormEvent) {
e.preventDefault();
if (!newUserName.trim()) return;
setSavingUser(true);
setNewUserError(null);
const result = await createWaterIrrigator(TUXEDO_BRAND_ID, newUserName.trim(), newUserLang);
if (result.success && result.pin) {
setNewPin({ name: result.irrigator!.name, pin: result.pin });
setNewUserName("");
setShowAddUser(false);
const updated = await getWaterIrrigators(TUXEDO_BRAND_ID);
setUsers(updated);
} else {
setNewUserError(result.error ?? "Failed to add user");
}
setSavingUser(false);
}
// Add headgate
async function handleAddHg(e: React.FormEvent) {
e.preventDefault();
if (!newHgName.trim()) return;
setSavingHg(true);
setNewHgError(null);
const result = await createWaterHeadgate(TUXEDO_BRAND_ID, newHgName.trim(), newHgUnit);
if (result.success) {
setNewHgName("");
setNewHgUnit("CFS");
setShowAddHg(false);
const updated = await getWaterHeadgatesAdmin(TUXEDO_BRAND_ID);
setHeadgates(updated);
} else {
setNewHgError(result.error ?? "Failed to add headgate");
}
setSavingHg(false);
}
// Filtered entries
const filteredEntries = allEntries.filter((e) => {
if (filterDateFrom && e.logged_at < filterDateFrom) return false;
if (filterDateTo && e.logged_at > filterDateTo + "T23:59:59.999Z") return false;
if (filterHeadgate && e.headgate_id !== filterHeadgate) return false;
if (filterVia && e.submitted_via !== filterVia) return false;
return true;
});
const headgateOptions = Array.from(
new Map(allEntries.map((e) => [e.headgate_id, e.headgate_name])).entries()
).map(([id, name]) => ({ id, name }));
return (
<div className="min-h-screen bg-stone-100">
{/* Header */}
<div className="bg-stone-900 px-4 py-4 sticky top-0 z-10">
<div className="mx-auto max-w-2xl flex items-center justify-between">
<div>
<h1 className="text-lg font-bold text-white">{t.title}</h1>
<p className="text-xs text-stone-400">{t.loggedInAs}: Admin</p>
</div>
<button
onClick={handleLogout}
className="rounded-lg bg-stone-700 px-3 py-2 text-sm font-medium text-white hover:bg-stone-600 min-h-[44px]"
>
{t.logout}
</button>
</div>
</div>
<div className="mx-auto max-w-2xl px-4 py-4 space-y-4">
{/* ── Display Summary ── */}
<section>
<div className="flex items-center justify-between mb-2">
<h2 className="text-base font-bold text-stone-700">{t.displaySummary}</h2>
<span className="text-xs text-stone-400">
{t.refreshIn}: {refreshCountdown}s
</span>
</div>
{displayLoading ? (
<div className="rounded-xl bg-white p-4 text-sm text-stone-400">Loading...</div>
) : displaySummary ? (
<div className="space-y-3">
<div>
{displaySummary.headgates.length === 0 ? (
<p className="text-sm text-stone-400">{t.noHeadgates}</p>
) : (
<div className="flex gap-2 overflow-x-auto pb-1">
{displaySummary.headgates.map((hg) => (
<HeadgateCard key={hg.id} hg={hg} />
))}
</div>
)}
</div>
<div className="flex items-center justify-between">
<div>
<span className="text-xs text-stone-500">{t.todayCount}</span>
<p className="text-lg font-bold text-stone-900">
{displaySummary.today_count}
{displaySummary.today_count > 0 && (
<span className="ml-2 text-sm font-medium text-stone-500">
({displaySummary.today_total.toFixed(1)} total)
</span>
)}
</p>
</div>
{displaySummary.recent_entries.length > 0 && (
<span className="text-xs text-stone-400">
{t.lastUpdate}: {formatDateTime(displaySummary.recent_entries[0]?.logged_at)}
</span>
)}
</div>
</div>
) : (
<div className="rounded-xl bg-white p-4 text-sm text-stone-400">{t.noEntriesToday}</div>
)}
</section>
{/* ── Headgates ── */}
<section className="rounded-xl bg-white p-4 shadow-sm ring-1 ring-stone-200">
<SectionHeader
title={`${t.headgates} (${headgates.length})`}
count={headgates.length}
onToggle={() => setShowHeadgates((v) => !v)}
action={
<button
onClick={() => setShowAddHg((v) => !v)}
className="rounded-lg bg-stone-900 px-3 py-1.5 text-xs font-semibold text-white hover:bg-stone-700 min-h-[36px] min-w-[36px]"
>
+
</button>
}
/>
{showAddHg && (
<form onSubmit={handleAddHg} className="mb-3 flex flex-col sm:flex-row gap-2">
<input
type="text"
value={newHgName}
onChange={(e) => setNewHgName(e.target.value)}
placeholder={t.name}
className="flex-1 rounded-lg border border-stone-300 px-3 py-2 text-sm min-h-[44px]"
required
/>
<select
value={newHgUnit}
onChange={(e) => setNewHgUnit(e.target.value)}
className="rounded-lg border border-stone-300 px-3 py-2 text-sm min-h-[44px]"
>
{UNIT_OPTIONS.map((u) => (
<option key={u} value={u}>{u}</option>
))}
</select>
<div className="flex gap-1">
<button
type="submit"
disabled={savingHg}
className="rounded-lg bg-green-600 px-4 py-2 text-sm font-medium text-white hover:bg-green-700 disabled:opacity-50 min-h-[44px]"
>
{savingHg ? "..." : "+"}
</button>
<button
type="button"
onClick={() => { setShowAddHg(false); setNewHgError(null); }}
className="rounded-lg border border-stone-300 px-3 py-2 text-sm text-stone-600 hover:bg-stone-50 min-h-[44px]"
>
×
</button>
</div>
</form>
)}
{newHgError && (
<div className="mb-2 rounded-lg bg-red-50 border border-red-200 p-2 text-xs text-red-700">{newHgError}</div>
)}
{showHeadgates && (
<div className="space-y-1">
{loading ? (
<p className="text-sm text-stone-400 py-2">Loading...</p>
) : headgates.length === 0 ? (
<p className="text-sm text-stone-400 py-2">{t.noHeadgates}</p>
) : (
headgates.map((hg) => (
<div
key={hg.id}
className="flex items-center justify-between rounded-lg border border-stone-100 px-3 py-2 hover:bg-stone-50"
>
<div className="flex items-center gap-3 min-w-0">
<span className={`shrink-0 rounded-full w-2 h-2 ${hg.active ? "bg-green-400" : "bg-stone-300"}`} />
<span className="text-sm font-medium text-stone-900 truncate">{hg.name}</span>
<span className="text-xs text-stone-400 shrink-0">{hg.unit}</span>
</div>
<button
onClick={() => router.push(`/admin/water-log/headgates/${hg.id}?from=/water/admin`)}
className="shrink-0 rounded-lg border border-stone-200 bg-white px-3 py-1.5 text-xs font-medium text-stone-600 hover:bg-stone-50 min-h-[36px]"
>
{t.edit}
</button>
</div>
))
)}
</div>
)}
</section>
{/* ── Users ── */}
<section className="rounded-xl bg-white p-4 shadow-sm ring-1 ring-stone-200">
{newPin && (
<div className="mb-3 rounded-xl bg-yellow-50 border border-yellow-200 p-3">
<p className="text-xs font-semibold text-yellow-800">{t.newPinFor} {newPin.name}:</p>
<p className="text-xl font-bold tracking-widest text-yellow-900">{newPin.pin}</p>
<p className="mt-0.5 text-xs text-yellow-600">{t.writeThisDown}</p>
<button
onClick={() => setNewPin(null)}
className="mt-1 text-xs text-yellow-700 underline"
>
{t.dismiss}
</button>
</div>
)}
<SectionHeader
title={`${t.users} (${users.length})`}
count={users.length}
onToggle={() => setShowUsers((v) => !v)}
action={
<button
onClick={() => setShowAddUser((v) => !v)}
className="rounded-lg bg-stone-900 px-3 py-1.5 text-xs font-semibold text-white hover:bg-stone-700 min-h-[36px] min-w-[36px]"
>
+
</button>
}
/>
{showAddUser && (
<form onSubmit={handleAddUser} className="mb-3 flex flex-col sm:flex-row gap-2">
<input
type="text"
value={newUserName}
onChange={(e) => setNewUserName(e.target.value)}
placeholder={t.name}
className="flex-1 rounded-lg border border-stone-300 px-3 py-2 text-sm min-h-[44px]"
required
/>
<select
value={newUserLang}
onChange={(e) => setNewUserLang(e.target.value as "en" | "es")}
className="rounded-lg border border-stone-300 px-3 py-2 text-sm min-h-[44px]"
>
<option value="en">EN</option>
<option value="es">ES</option>
</select>
<div className="flex gap-1">
<button
type="submit"
disabled={savingUser}
className="rounded-lg bg-green-600 px-4 py-2 text-sm font-medium text-white hover:bg-green-700 disabled:opacity-50 min-h-[44px]"
>
{savingUser ? "..." : "+"}
</button>
<button
type="button"
onClick={() => { setShowAddUser(false); setNewUserError(null); }}
className="rounded-lg border border-stone-300 px-3 py-2 text-sm text-stone-600 hover:bg-stone-50 min-h-[44px]"
>
×
</button>
</div>
</form>
)}
{newUserError && (
<div className="mb-2 rounded-lg bg-red-50 border border-red-200 p-2 text-xs text-red-700">{newUserError}</div>
)}
{showUsers && (
<div className="space-y-1">
{loading ? (
<p className="text-sm text-stone-400 py-2">Loading...</p>
) : users.length === 0 ? (
<p className="text-sm text-stone-400 py-2">No users</p>
) : (
users.map((u) => (
<div
key={u.id}
className="flex items-center justify-between rounded-lg border border-stone-100 px-3 py-2 hover:bg-stone-50"
>
<div className="flex items-center gap-2 min-w-0">
<span className={`shrink-0 rounded-full w-2 h-2 ${u.active ? "bg-green-400" : "bg-stone-300"}`} />
<span className="text-sm font-medium text-stone-900 truncate">{u.name}</span>
<span className={`shrink-0 rounded-full px-1.5 py-0.5 text-xs font-semibold ${u.role === "water_admin" ? "bg-blue-100 text-blue-700" : "bg-stone-100 text-stone-600"}`}>
{u.role === "water_admin" ? t.admin : t.field}
</span>
</div>
<button
onClick={() => router.push(`/admin/water-log/users/${u.id}?from=/water/admin`)}
className="shrink-0 rounded-lg border border-stone-200 bg-white px-3 py-1.5 text-xs font-medium text-stone-600 hover:bg-stone-50 min-h-[36px]"
>
{t.edit}
</button>
</div>
))
)}
</div>
)}
</section>
{/* ── Entries ── */}
<section className="rounded-xl bg-white p-4 shadow-sm ring-1 ring-stone-200">
<SectionHeader
title={`${t.recentEntries} (${filteredEntries.length})`}
count={filteredEntries.length}
onToggle={() => setShowEntries((v) => !v)}
/>
{showEntries && (
<>
{/* Filters */}
<div className="mb-3 flex flex-wrap gap-2">
<input
type="date"
value={filterDateFrom}
onChange={(e) => setFilterDateFrom(e.target.value)}
className="rounded-lg border border-stone-300 px-2 py-1.5 text-sm min-h-[36px]"
/>
<input
type="date"
value={filterDateTo}
onChange={(e) => setFilterDateTo(e.target.value)}
className="rounded-lg border border-stone-300 px-2 py-1.5 text-sm min-h-[36px]"
/>
<select
value={filterHeadgate}
onChange={(e) => setFilterHeadgate(e.target.value)}
className="rounded-lg border border-stone-300 px-2 py-1.5 text-sm min-h-[36px]"
>
<option value="">All</option>
{headgateOptions.map((hg) => (
<option key={hg.id} value={hg.id}>{hg.name}</option>
))}
</select>
<select
value={filterVia}
onChange={(e) => setFilterVia(e.target.value)}
className="rounded-lg border border-stone-300 px-2 py-1.5 text-sm min-h-[36px]"
>
<option value="">All via</option>
<option value="field">{t.field}</option>
<option value="admin">{t.admin}</option>
</select>
{(filterDateFrom || filterDateTo || filterHeadgate || filterVia) && (
<button
onClick={() => { setFilterDateFrom(""); setFilterDateTo(""); setFilterHeadgate(""); setFilterVia(""); }}
className="text-xs text-stone-500 hover:text-stone-700 underline self-center"
>
{t.clearFilters}
</button>
)}
</div>
<div className="overflow-x-auto">
<table className="w-full text-sm min-w-[480px]">
<thead>
<tr className="border-b border-stone-100 text-left">
<th className="pb-2 pr-2 text-xs font-semibold text-stone-500 whitespace-nowrap">{t.when}</th>
<th className="pb-2 pr-2 text-xs font-semibold text-stone-500 whitespace-nowrap hidden sm:table-cell">{t.user}</th>
<th className="pb-2 pr-2 text-xs font-semibold text-stone-500 whitespace-nowrap">{t.headgate}</th>
<th className="pb-2 pr-2 text-xs font-semibold text-stone-500 text-right whitespace-nowrap">{t.measurement}</th>
<th className="pb-2 text-xs font-semibold text-stone-500 text-right whitespace-nowrap">{t.via}</th>
</tr>
</thead>
<tbody>
{loading ? (
<tr><td colSpan={5} className="py-4 text-center text-stone-400">Loading...</td></tr>
) : filteredEntries.length === 0 ? (
<tr><td colSpan={5} className="py-4 text-center text-stone-400">{allEntries.length === 0 ? t.noEntries : "No matches"}</td></tr>
) : (
filteredEntries.map((e) => (
<tr
key={e.id}
onClick={() => router.push(`/admin/water-log/entries/${e.id}?from=/water/admin`)}
className="border-b border-stone-50 last:border-0 hover:bg-stone-50 cursor-pointer"
>
<td className="py-2 pr-2 text-stone-500 text-xs whitespace-nowrap">{formatDateTime(e.logged_at)}</td>
<td className="py-2 pr-2 text-stone-700 text-xs whitespace-nowrap hidden sm:table-cell">{e.user_name}</td>
<td className="py-2 pr-2 text-stone-700 text-xs whitespace-nowrap">{e.headgate_name}</td>
<td className="py-2 pr-2 text-right font-semibold text-stone-900 text-xs whitespace-nowrap">{e.measurement} {e.unit}</td>
<td className="py-2 text-right">
<span className={`inline-block rounded-full px-1.5 py-0.5 text-xs font-semibold ${e.submitted_via === "field" ? "bg-blue-100 text-blue-700" : "bg-stone-100 text-stone-600"}`}>
{e.submitted_via === "field" ? t.field[0] : t.admin[0]}
</span>
</td>
</tr>
))
)}
</tbody>
</table>
</div>
</>
)}
</section>
{/* ── Alert Log ── */}
<section className="rounded-xl bg-white p-4 shadow-sm ring-1 ring-stone-200">
<SectionHeader
title={`⚠️ Alert Log (${alertLog.length})`}
count={alertLog.length}
onToggle={() => setShowAlerts((v) => !v)}
/>
{showAlerts && (
<>
{alertLog.length === 0 ? (
<p className="text-sm text-stone-400 py-3 text-center">No alerts triggered yet.</p>
) : (
<div className="overflow-x-auto">
<table className="w-full text-sm min-w-[400px]">
<thead>
<tr className="border-b border-stone-100 text-left">
<th className="pb-2 pr-2 text-xs font-semibold text-stone-500">Time</th>
<th className="pb-2 pr-2 text-xs font-semibold text-stone-500">Headgate</th>
<th className="pb-2 pr-2 text-xs font-semibold text-stone-500">Type</th>
<th className="pb-2 pr-2 text-xs font-semibold text-stone-500 text-right">Reading</th>
<th className="pb-2 text-xs font-semibold text-stone-500 text-right">Threshold</th>
</tr>
</thead>
<tbody>
{alertLog.map((a) => (
<tr key={a.id} className="border-b border-stone-50 last:border-0 hover:bg-stone-50">
<td className="py-2 pr-2 text-stone-500 text-xs">{a.formatted_time}</td>
<td className="py-2 pr-2 text-stone-700 text-xs font-medium">{a.headgate_name}</td>
<td className="py-2 pr-2">
<span className={`inline-block rounded-full px-2 py-0.5 text-xs font-semibold ${a.alert_type === "high" ? "bg-red-100 text-red-700" : "bg-blue-100 text-blue-700"}`}>
{a.alert_type === "high" ? "High ↑" : "Low ↓"}
</span>
</td>
<td className="py-2 pr-2 text-right font-semibold text-stone-900 text-xs">{a.reading_value}</td>
<td className="py-2 text-right text-stone-500 text-xs">{a.threshold_value}</td>
</tr>
))}
</tbody>
</table>
</div>
)}
</>
)}
</section>
</div>
</div>
);
}
+642
View File
@@ -0,0 +1,642 @@
"use client";
import Image from "next/image";
import { useState, useEffect, Suspense } from "react";
import {
verifyWaterPin,
submitWaterEntry,
getWaterHeadgates,
logoutWater,
setWaterLang,
} from "@/actions/water-log/field";
import { useSearchParams } from "next/navigation";
type Headgate = {
id: string;
name: string;
active: boolean;
high_threshold?: number | null;
low_threshold?: number | null;
};
type Language = "en" | "es";
const TUXEDO_BRAND_ID = "64294306-5f42-463d-a5e8-2ad6c81a96de";
const UNITS = ["CFS", "GPM", "Inches", "AF/Day"];
const LABELS = {
en: {
title: "Water Log",
selectLang: "Select Language",
whoAreYou: "Who are you?",
enterPin: "Enter your 4-digit PIN",
pinPlaceholder: "PIN",
submit: "Submit Reading",
loggingIn: "Verifying...",
selectHeadgate: "Select Headgate",
measurement: "Measurement",
notes: "Notes (optional)",
notesPlaceholder: "Notes...",
unit: "Unit",
loggedInAs: "Logged in as",
logout: "Logout",
submitting: "Submitting...",
success: "Reading submitted!",
error: "Error",
noHeadgates: "No headgates available",
invalidPin: "Invalid PIN",
sessionExpired: "Session expired",
back: "Back",
captureGps: "Capture GPS",
capturingGps: "Capturing...",
gpsSuccess: "GPS Captured",
gpsError: "GPS unavailable",
gpsDenied: "Location denied. Tap to retry.",
photoLabel: "Photo (optional)",
addPhoto: "Add Photo",
removePhoto: "Remove",
headgateLocked: "QR-locked",
locked: "Locked",
highAlert: "High",
lowAlert: "Low",
},
es: {
title: "Registro de Agua",
selectLang: "Seleccionar Idioma",
whoAreYou: "¿Quién eres?",
enterPin: "Ingrese su PIN de 4 dígitos",
pinPlaceholder: "PIN",
submit: "Enviar Lectura",
loggingIn: "Verificando...",
selectHeadgate: "Seleccionar Compuerta",
measurement: "Medición",
notes: "Notas (opcional)",
notesPlaceholder: "Notas...",
unit: "Unidad",
loggedInAs: "Conectado como",
logout: "Salir",
submitting: "Enviando...",
success: "¡Lectura registrada!",
error: "Error",
noHeadgates: "No hay compuertas disponibles",
invalidPin: "PIN inválido",
sessionExpired: "Sesión expirada",
back: "Volver",
captureGps: "Capturar GPS",
capturingGps: "Capturando...",
gpsSuccess: "GPS Capturado",
gpsError: "GPS no disponible",
gpsDenied: "Ubicación denegada. Toca para reintentar.",
photoLabel: "Foto (opcional)",
addPhoto: "Agregar Foto",
removePhoto: "Quitar",
headgateLocked: "Bloqueada por QR",
locked: "Bloqueada",
highAlert: "Alto",
lowAlert: "Bajo",
},
};
function ThresholdBadge({ high, low, t }: { high?: number | null; low?: number | null; t: typeof LABELS.en }) {
if (!high && !low) return null;
return (
<div className="flex gap-1.5 mt-1">
{high != null && (
<span className="inline-flex items-center gap-0.5 rounded-full bg-red-50 border border-red-200 px-2 py-0.5 text-xs font-semibold text-red-700">
{t.highAlert}: {high}
</span>
)}
{low != null && (
<span className="inline-flex items-center gap-0.5 rounded-full bg-blue-50 border border-blue-200 px-2 py-0.5 text-xs font-semibold text-blue-700">
{t.lowAlert}: {low}
</span>
)}
</div>
);
}
function WaterFieldInner() {
const searchParams = useSearchParams();
const qrHeadgateToken = searchParams.get("h");
const [lang, setLang] = useState<Language>("en");
const [step, setStep] = useState<"lang" | "role" | "pin" | "form">("lang");
const [pin, setPin] = useState("");
const [irrigatorName, setIrrigatorName] = useState("");
const [selectedRole, setSelectedRole] = useState<"irrigator" | "water_admin" | null>(null);
const [headgates, setHeadgates] = useState<Headgate[]>([]);
const [selectedHeadgate, setSelectedHeadgate] = useState("");
const [headgateLocked, setHeadgateLocked] = useState(false);
const [measurement, setMeasurement] = useState("");
const [unit, setUnit] = useState("CFS");
const [notes, setNotes] = useState("");
const [loading, setLoading] = useState(false);
const [error, setError] = useState("");
const [success, setSuccess] = useState(false);
// Photo state
const [photoFile, setPhotoFile] = useState<File | null>(null);
const [photoPreview, setPhotoPreview] = useState<string | null>(null);
// GPS state
const [latitude, setLatitude] = useState<number | null>(null);
const [longitude, setLongitude] = useState<number | null>(null);
const [gpsStatus, setGpsStatus] = useState<"idle" | "capturing" | "success" | "error" | "denied">("idle");
const t = LABELS[lang];
// Detect saved language preference
useEffect(() => {
const saved = document.cookie.match(/wl_lang=(en|es)/)?.[1] as Language | undefined;
if (saved) setLang(saved);
}, []);
// Check if already logged in (session cookie)
useEffect(() => {
const match = document.cookie.match(/wl_session=([^;]+)/);
if (match) {
setStep("form");
loadHeadgates();
}
}, []);
// Handle QR-locked headgate after headgates load
useEffect(() => {
if (qrHeadgateToken && headgates.length > 0) {
const matched = headgates.find((hg) => hg.id === qrHeadgateToken || hg.name === qrHeadgateToken);
if (matched) {
setSelectedHeadgate(matched.id);
setHeadgateLocked(true);
}
}
}, [qrHeadgateToken, headgates]);
async function loadHeadgates() {
const hgs = await getWaterHeadgates(TUXEDO_BRAND_ID, true);
setHeadgates(hgs.filter((h) => h.active));
}
async function handleLangSelect(lang: Language) {
setLang(lang);
await setWaterLang(lang);
setStep("role");
setError("");
}
async function handlePinSubmit(e: React.FormEvent) {
e.preventDefault();
if (pin.length !== 4) return;
setLoading(true);
setError("");
const result = await verifyWaterPin(TUXEDO_BRAND_ID, pin);
if (!result.success) {
setError(result.error === "Invalid PIN" ? LABELS[lang].invalidPin : result.error);
setPin("");
setLoading(false);
return;
}
if (result.role === "water_admin") {
window.location.href = "/water/admin";
return;
}
setIrrigatorName(result.name ?? "");
await loadHeadgates();
setStep("form");
setLoading(false);
}
async function handleCaptureGps() {
if (!navigator.geolocation) {
setGpsStatus("error");
return;
}
setGpsStatus("capturing");
navigator.geolocation.getCurrentPosition(
(pos) => {
setLatitude(pos.coords.latitude);
setLongitude(pos.coords.longitude);
setGpsStatus("success");
},
(err) => {
if (err.code === err.PERMISSION_DENIED) {
setGpsStatus("denied");
} else {
setGpsStatus("error");
}
},
{ enableHighAccuracy: true, timeout: 10000 }
);
}
function handlePhotoChange(e: React.ChangeEvent<HTMLInputElement>) {
const file = e.target.files?.[0];
if (!file) return;
if (file.size > 5 * 1024 * 1024) {
setError("Photo must be under 5MB");
return;
}
if (!["image/jpeg", "image/png"].includes(file.type)) {
setError("Only JPG or PNG photos allowed");
return;
}
setPhotoFile(file);
const reader = new FileReader();
reader.onload = (ev) => setPhotoPreview(ev.target?.result as string);
reader.readAsDataURL(file);
}
function removePhoto() {
setPhotoFile(null);
setPhotoPreview(null);
}
async function handleSubmitEntry(e: React.FormEvent) {
e.preventDefault();
if (!selectedHeadgate || !measurement) return;
setLoading(true);
setError("");
let photoUrl: string | undefined;
if (photoFile) {
const formData = new FormData();
formData.append("file", photoFile);
formData.append("bucket", "water-log-photos");
try {
const uploadRes = await fetch("/api/water-photo-upload", {
method: "POST",
body: formData,
});
const uploadData = await uploadRes.json();
if (uploadData.url) {
photoUrl = uploadData.url;
}
} catch {
// photo upload failed — submit without photo
}
}
const result = await submitWaterEntry(
selectedHeadgate,
parseFloat(measurement),
unit,
notes,
photoUrl,
latitude ?? undefined,
longitude ?? undefined,
headgateLocked
);
if (!result.success) {
if (result.error === "Session expired or invalid" || result.error === "Not logged in") {
setStep("lang");
setPin("");
setError(LABELS[lang].sessionExpired);
} else {
setError(result.error);
}
setLoading(false);
return;
}
setSuccess(true);
setMeasurement("");
setNotes("");
setPhotoFile(null);
setPhotoPreview(null);
setLatitude(null);
setLongitude(null);
setGpsStatus("idle");
setLoading(false);
setTimeout(() => setSuccess(false), 3000);
}
async function handleLogout() {
await logoutWater();
setStep("lang");
setPin("");
setIrrigatorName("");
setHeadgates([]);
setSelectedHeadgate("");
setMeasurement("");
setNotes("");
setPhotoFile(null);
setPhotoPreview(null);
setLatitude(null);
setLongitude(null);
setGpsStatus("idle");
setHeadgateLocked(false);
}
// Language selection screen
if (step === "lang") {
return (
<div className="min-h-screen bg-stone-50 flex flex-col items-center justify-center p-6">
<div className="w-full max-w-xs">
<h1 className="text-3xl font-bold text-stone-900 mb-2 text-center">{t.title}</h1>
<p className="text-stone-500 text-center mb-8">{t.selectLang}</p>
<div className="flex flex-col gap-4">
<button
onClick={() => handleLangSelect("en")}
className="w-full rounded-xl bg-white px-6 py-5 text-xl font-semibold text-stone-900 shadow-sm ring-1 ring-stone-200 hover:bg-stone-50 min-h-[64px]"
>
English
</button>
<button
onClick={() => handleLangSelect("es")}
className="w-full rounded-xl bg-white px-6 py-5 text-xl font-semibold text-stone-900 shadow-sm ring-1 ring-stone-200 hover:bg-stone-50 min-h-[64px]"
>
Español
</button>
</div>
</div>
</div>
);
}
// Role selection screen
if (step === "role") {
return (
<div className="min-h-screen bg-stone-50 flex flex-col items-center justify-center p-6">
<div className="w-full max-w-xs">
<button
onClick={() => setStep("lang")}
className="text-sm text-stone-500 mb-6 hover:text-stone-700"
>
{t.back}
</button>
<h1 className="text-3xl font-bold text-stone-900 mb-2 text-center">{t.title}</h1>
<p className="text-stone-500 text-center mb-8">{t.whoAreYou}</p>
<div className="flex flex-col gap-4">
<button
onClick={() => { setSelectedRole("irrigator"); setStep("pin"); }}
className="w-full rounded-xl bg-white px-6 py-5 text-xl font-semibold text-stone-900 shadow-sm ring-1 ring-stone-200 hover:bg-stone-50 min-h-[64px]"
>
Irrigator
</button>
<button
onClick={() => { setSelectedRole("water_admin"); setStep("pin"); }}
className="w-full rounded-xl bg-stone-900 px-6 py-5 text-xl font-semibold text-white shadow-sm ring-1 ring-stone-700 hover:bg-stone-800 min-h-[64px]"
>
Admin
</button>
</div>
</div>
</div>
);
}
// PIN entry screen
if (step === "pin") {
return (
<div className="min-h-screen bg-stone-50 flex flex-col items-center justify-center p-6">
<div className="w-full max-w-xs">
<button
onClick={() => setStep("role")}
className="text-sm text-stone-500 mb-6 hover:text-stone-700"
>
{t.back}
</button>
<h1 className="text-3xl font-bold text-stone-900 mb-2 text-center">{t.title}</h1>
<p className="text-stone-500 text-center mb-8">{t.enterPin}</p>
<form onSubmit={handlePinSubmit}>
<input
type="password"
inputMode="numeric"
pattern="[0-9]*"
maxLength={4}
value={pin}
onChange={(e) => setPin(e.target.value.replace(/\D/g, "").slice(0, 4))}
placeholder={t.pinPlaceholder}
className="w-full rounded-xl border-2 border-stone-300 px-6 py-6 text-center text-4xl font-bold tracking-widest outline-none focus:border-stone-900 mb-4"
style={{ letterSpacing: "0.3em" }}
autoFocus
/>
{error && (
<p className="text-center text-red-600 text-sm mb-4">{error}</p>
)}
<button
type="submit"
disabled={pin.length !== 4 || loading}
className="w-full rounded-xl bg-stone-900 px-6 py-5 text-xl font-bold text-white disabled:opacity-50 min-h-[64px]"
>
{loading ? t.loggingIn : t.submit}
</button>
</form>
</div>
</div>
);
}
// Main log form
const selectedHg = headgates.find((hg) => hg.id === selectedHeadgate);
return (
<div className="min-h-screen bg-stone-50">
{/* Header */}
<div className="bg-stone-900 px-4 py-4">
<div className="mx-auto max-w-lg flex items-center justify-between">
<div>
<h1 className="text-xl font-bold text-white">{t.title}</h1>
<p className="text-sm text-stone-400">{t.loggedInAs}: {irrigatorName}</p>
</div>
<button
onClick={handleLogout}
className="rounded-lg bg-stone-700 px-3 py-2 text-sm font-medium text-white hover:bg-stone-600"
>
{t.logout}
</button>
</div>
</div>
<div className="mx-auto max-w-lg px-4 py-6 space-y-5">
{/* Success banner */}
{success && (
<div className="rounded-xl bg-green-100 border border-green-200 px-4 py-4 text-center text-green-800 font-semibold">
{t.success}
</div>
)}
{/* Error banner */}
{error && !success && (
<div className="rounded-xl bg-red-100 border border-red-200 px-4 py-4 text-center text-red-800 font-semibold">
{t.error}: {error}
</div>
)}
{/* Headgate selector */}
<div>
<label className="block text-base font-semibold text-stone-700 mb-2">
{t.selectHeadgate}
</label>
{headgateLocked ? (
<div className="w-full rounded-xl border-2 border-amber-300 bg-amber-50 px-4 py-4 text-lg font-bold text-stone-900">
<div className="flex items-center gap-2">
{selectedHg?.name ?? selectedHeadgate}
<span className="ml-1 inline-flex items-center gap-0.5 rounded bg-amber-200 px-2 py-0.5 text-xs font-bold text-amber-800">
🔒 {t.locked}
</span>
</div>
{selectedHg && (
<ThresholdBadge high={selectedHg.high_threshold} low={selectedHg.low_threshold} t={t} />
)}
</div>
) : (
<select
value={selectedHeadgate}
onChange={(e) => setSelectedHeadgate(e.target.value)}
required
className="w-full rounded-xl border-2 border-stone-300 bg-white px-4 py-4 text-lg outline-none focus:border-stone-900 min-h-[56px]"
>
<option value="">{t.selectHeadgate}</option>
{headgates.length === 0 && <option disabled>{t.noHeadgates}</option>}
{headgates.map((hg) => (
<option key={hg.id} value={hg.id}>
{hg.name}
{hg.high_threshold != null ? ` (High: ${hg.high_threshold})` : ""}
{hg.low_threshold != null ? ` (Low: ${hg.low_threshold})` : ""}
</option>
))}
</select>
)}
{selectedHg && !headgateLocked && (
<ThresholdBadge high={selectedHg.high_threshold} low={selectedHg.low_threshold} t={t} />
)}
</div>
{/* Measurement + Unit row */}
<div className="flex gap-3">
<div className="flex-1">
<label className="block text-base font-semibold text-stone-700 mb-2">
{t.measurement}
</label>
<input
type="number"
step="any"
value={measurement}
onChange={(e) => setMeasurement(e.target.value)}
required
placeholder="0.00"
className="w-full rounded-xl border-2 border-stone-300 px-4 py-4 text-2xl font-bold text-stone-900 outline-none focus:border-stone-900 min-h-[60px]"
inputMode="decimal"
/>
</div>
<div className="w-32">
<label className="block text-base font-semibold text-stone-700 mb-2">
{t.unit}
</label>
<select
value={unit}
onChange={(e) => setUnit(e.target.value)}
className="w-full rounded-xl border-2 border-stone-300 bg-white px-4 py-4 text-lg font-semibold outline-none focus:border-stone-900 min-h-[60px]"
>
{UNITS.map((u) => (
<option key={u} value={u}>{u}</option>
))}
</select>
</div>
</div>
{/* GPS Capture */}
<div>
<label className="block text-base font-semibold text-stone-700 mb-2">
GPS Location
</label>
<button
type="button"
onClick={handleCaptureGps}
disabled={gpsStatus === "capturing"}
className={`w-full rounded-xl border-2 px-4 py-4 text-base font-semibold transition-colors flex items-center justify-center gap-2 min-h-[56px] ${
gpsStatus === "success"
? "border-green-500 bg-green-50 text-green-700"
: gpsStatus === "denied" || gpsStatus === "error"
? "border-red-300 bg-red-50 text-red-600"
: "border-stone-300 bg-white text-stone-700 hover:bg-stone-50"
}`}
>
{gpsStatus === "capturing" && (
<span className="w-5 h-5 border-2 border-stone-400 border-t-stone-700 rounded-full animate-spin flex-shrink-0" />
)}
{gpsStatus === "success" && "✓"}
{gpsStatus === "capturing" && t.capturingGps}
{gpsStatus === "idle" && t.captureGps}
{gpsStatus === "success" && `${t.gpsSuccess}${latitude?.toFixed(5)}, ${longitude?.toFixed(5)}`}
{gpsStatus === "error" && t.gpsError}
{gpsStatus === "denied" && t.gpsDenied}
</button>
</div>
{/* Photo Upload */}
<div>
<label className="block text-base font-semibold text-stone-700 mb-2">
{t.photoLabel}
</label>
{photoPreview ? (
<div className="relative rounded-xl overflow-hidden border-2 border-stone-300">
<Image src={photoPreview} alt="Preview" fill style={{ objectFit: "cover" }} />
<button
type="button"
onClick={removePhoto}
className="absolute top-2 right-2 rounded-full bg-black/70 text-white text-xs px-3 py-1.5 font-semibold hover:bg-black/90 min-h-[36px]"
>
{t.removePhoto}
</button>
</div>
) : (
<label className="flex items-center justify-center w-full rounded-xl border-2 border-dashed border-stone-300 cursor-pointer py-5 text-base font-semibold text-stone-500 hover:border-stone-500 hover:text-stone-700 transition-colors min-h-[80px]">
<span>📷 {t.addPhoto}</span>
<input
type="file"
accept="image/jpeg,image/png"
onChange={handlePhotoChange}
className="hidden"
/>
</label>
)}
</div>
{/* Notes */}
<div>
<label className="block text-base font-semibold text-stone-700 mb-2">
{t.notes}
</label>
<textarea
value={notes}
onChange={(e) => setNotes(e.target.value)}
placeholder={t.notesPlaceholder}
rows={2}
className="w-full rounded-xl border-2 border-stone-300 px-4 py-3 text-base outline-none focus:border-stone-900 resize-none min-h-[80px]"
/>
</div>
{/* Submit */}
<button
type="submit"
disabled={!selectedHeadgate || !measurement || loading}
className="w-full rounded-xl bg-green-600 px-6 py-5 text-xl font-bold text-white disabled:opacity-50 active:bg-green-700 min-h-[64px] shadow-lg"
>
{loading ? (
<span className="flex items-center justify-center gap-2">
<span className="w-5 h-5 border-2 border-white/50 border-t-white rounded-full animate-spin" />
{t.submitting}
</span>
) : t.submit}
</button>
</div>
</div>
);
}
export default function WaterFieldClient() {
return (
<Suspense fallback={<div className="min-h-screen bg-stone-50 flex items-center justify-center"><span className="text-stone-500">Loading...</span></div>}>
<WaterFieldInner />
</Suspense>
);
}