Two consistency fixes requested after the payment-method work: 1. Registration status (pending/confirmed/partial_paid/paid/cancelled) was printed as a raw string on the user dashboard. Added RegistrationStatusBadge mirroring the existing EventStatusBadge pattern, using the same status colors already established on dashboard/admin/registrations. 2. Inline success/error banners across dashboard pages persisted indefinitely. Added a shared useDismissingState hook (drop-in useState replacement that auto-clears a truthy value after 7s, resetting the timer on each update) and swapped it in across ~24 dashboard files. Excluded: message-only modal dialogs (ticket- scanning's success/error confirmations) and two states that mix live form-validation feedback with async results inside actively- open forms (the registration-edit modal's editError, the event create/edit modal's error) - those keep persisting until the user acts, since auto-hiding a "fix this field" message mid-edit would be a regression. Also fixed at-the-door's existing bespoke auto-dismiss timers (10s/15s, one mislabeled as "5s") to the same consistent 7s, and removed admin/settings' manual x dismiss button in favor of the same auto-only behavior. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
89 lines
3.1 KiB
TypeScript
89 lines
3.1 KiB
TypeScript
"use client";
|
|
import React, { useEffect, useState } from "react";
|
|
import { useAuth } from "@/hooks/useAuth";
|
|
import { apiFetch } from "@/lib/api";
|
|
import { useDismissingState } from "@/hooks/useDismissingState";
|
|
|
|
export default function DonatePage() {
|
|
const { token } = useAuth();
|
|
const [events, setEvents] = useState<any[]>([]);
|
|
const [eventId, setEventId] = useState<string>("");
|
|
const [amount, setAmount] = useState<string>("");
|
|
const [loading, setLoading] = useState(false);
|
|
const [error, setError] = useDismissingState<string | null>(null);
|
|
const [info, setInfo] = useDismissingState<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
try {
|
|
const evs = await apiFetch<any[]>("/api/events");
|
|
setEvents(evs);
|
|
if (evs.length > 0) setEventId(evs[0].id);
|
|
} catch (e: any) {
|
|
setError(e?.message || "Failed to load events");
|
|
}
|
|
})();
|
|
}, []);
|
|
|
|
const submit = async () => {
|
|
if (!token) { setError("Please login"); return; }
|
|
const amt = parseFloat(amount);
|
|
if (!(amt > 0)) { setError("Enter a valid amount"); return; }
|
|
if (amt < 15) { setError("Minimum donation is R15"); return; }
|
|
if (!eventId) { setError("Select an event"); return; }
|
|
try {
|
|
setError(null);
|
|
setInfo(null);
|
|
setLoading(true);
|
|
const res = await apiFetch<{ redirectUrl: string }>("/api/payments/yoco-checkout", {
|
|
method: "POST",
|
|
body: {
|
|
eventId,
|
|
amount: amt,
|
|
successUrl: window.location.origin + "/payment/success",
|
|
cancelUrl: window.location.origin + "/payment/cancel",
|
|
failureUrl: window.location.origin + "/payment/failure",
|
|
},
|
|
authToken: token,
|
|
});
|
|
setInfo("Redirecting to payment...");
|
|
window.location.href = res.redirectUrl;
|
|
} catch (e: any) {
|
|
setError(e?.message || "Failed to start donation checkout");
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="max-w-xl mx-auto w-full p-6">
|
|
<h1 className="text-2xl font-semibold mb-4">Make a donation</h1>
|
|
{error && <p className="text-red-600 text-sm mb-3">{error}</p>}
|
|
{info && <p className="text-green-700 text-sm mb-3">{info}</p>}
|
|
|
|
<label className="block text-sm font-medium mb-1">Event</label>
|
|
<select className="w-full border rounded px-3 py-2 mb-3" value={eventId} onChange={(e)=>setEventId(e.target.value)}>
|
|
{events.map(ev => <option key={ev.id} value={ev.id}>{ev.title}</option>)}
|
|
</select>
|
|
|
|
<label className="block text-sm font-medium mb-1">Amount (R)</label>
|
|
<input
|
|
type="number"
|
|
min="15"
|
|
step="1"
|
|
placeholder="Enter amount (min R15)"
|
|
value={amount}
|
|
onChange={(e)=>setAmount(e.target.value)}
|
|
className="w-full border rounded px-3 py-2 mb-1"
|
|
/>
|
|
<p className="text-xs text-gray-600 mb-3">Minimum donation is R15.</p>
|
|
|
|
<button
|
|
disabled={loading}
|
|
onClick={submit}
|
|
className="bg-blue-600 text-white px-4 py-2 rounded disabled:opacity-60"
|
|
>{loading?"Starting checkout...":"Donate"}</button>
|
|
</div>
|
|
);
|
|
}
|