forked from Creditra/Creditra-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutopaySchedule.tsx
More file actions
255 lines (233 loc) · 9.56 KB
/
Copy pathAutopaySchedule.tsx
File metadata and controls
255 lines (233 loc) · 9.56 KB
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
250
251
252
253
254
255
import { useMemo } from 'react';
import { fmt, fmtDate } from '../utils/tokens';
import './AutopaySchedule.css';
// ─── Types ────────────────────────────────────────────────────────────────────
export type AutopayFrequency = 'weekly' | 'biweekly' | 'monthly' | 'quarterly';
export interface AutopayScheduleProps {
/** Payment amount per installment, in USD. */
amount: number;
/** How often the payment recurs. */
frequency: AutopayFrequency;
/** ISO 8601 date string for the first payment. */
startDate: string;
/** ISO 8601 date string for the last payment. Omit for open-ended. */
endDate?: string;
/** Maximum rows to render (default 8). Prevents an unbounded list. */
maxRows?: number;
}
// ─── Helpers ──────────────────────────────────────────────────────────────────
const FREQ_DAYS: Record<AutopayFrequency, number> = {
weekly: 7,
biweekly: 14,
monthly: 0, // special-cased below
quarterly: 0, // special-cased below
};
const FREQ_LABEL: Record<AutopayFrequency, string> = {
weekly: 'Weekly',
biweekly: 'Every 2 weeks',
monthly: 'Monthly',
quarterly: 'Quarterly',
};
/** Advance `date` by one frequency interval, returning a new Date. */
function advanceByFrequency(date: Date, frequency: AutopayFrequency): Date {
const next = new Date(date);
if (frequency === 'monthly') {
next.setMonth(next.getMonth() + 1);
} else if (frequency === 'quarterly') {
next.setMonth(next.getMonth() + 3);
} else {
next.setDate(next.getDate() + FREQ_DAYS[frequency]);
}
return next;
}
/** Build an ordered list of upcoming payment dates. */
function buildSchedule(
startDate: string,
frequency: AutopayFrequency,
endDate?: string,
maxRows = 8,
): Date[] {
const start = new Date(startDate);
const end = endDate ? new Date(endDate) : null;
if (isNaN(start.getTime())) return [];
const dates: Date[] = [];
let cursor = start;
while (dates.length < maxRows) {
if (end && cursor > end) break;
dates.push(new Date(cursor));
cursor = advanceByFrequency(cursor, frequency);
}
return dates;
}
// ─── Component ────────────────────────────────────────────────────────────────
/**
* AutopaySchedule — live, responsive list preview of upcoming repayment dates.
*
* Re-derives the schedule on every render from props, so the preview
* updates in real-time as the user edits the form above it.
*
* Accessibility:
* - Table is labelled with an `aria-labelledby` heading.
* - Column headers use `scope="col"` per WCAG technique H63.
* - "Upcoming" badge uses `aria-label` to give screen readers extra
* context (the visual color alone must not be the sole differentiator).
* - The caption is visually hidden but keeps the table semantically
* self-describing when navigated out of context.
*/
export function AutopaySchedule({
amount,
frequency,
startDate,
endDate,
maxRows = 8,
}: AutopayScheduleProps) {
const schedule = useMemo(
() => buildSchedule(startDate, frequency, endDate, maxRows),
[startDate, frequency, endDate, maxRows],
);
const today = new Date();
today.setHours(0, 0, 0, 0);
const totalPayments = schedule.length;
const totalAmount = amount * totalPayments;
const isOpen = !endDate;
if (!startDate || schedule.length === 0) {
return (
<section
className="autopay-schedule autopay-schedule--empty"
aria-label="Autopay schedule preview"
>
<p className="autopay-schedule__empty-msg">
Choose a start date and frequency to preview your payment schedule.
</p>
</section>
);
}
return (
<section className="autopay-schedule" aria-labelledby="schedule-heading">
{/* ── Header ──────────────────────────────────────────────────────── */}
<div className="autopay-schedule__header">
<h3 id="schedule-heading" className="autopay-schedule__title">
Payment Schedule Preview
</h3>
<span className="autopay-schedule__freq-badge" aria-hidden="true">
{FREQ_LABEL[frequency]}
</span>
</div>
{/* ── Summary strip ───────────────────────────────────────────────── */}
<div className="autopay-schedule__summary" role="status" aria-live="polite">
<div className="autopay-schedule__summary-item">
<span className="autopay-schedule__summary-label">Per payment</span>
<span className="autopay-schedule__summary-value">{fmt(amount)}</span>
</div>
<div className="autopay-schedule__summary-item">
<span className="autopay-schedule__summary-label">
Payments shown
</span>
<span className="autopay-schedule__summary-value">
{totalPayments}
{isOpen && '+'}
</span>
</div>
<div className="autopay-schedule__summary-item">
<span className="autopay-schedule__summary-label">
{isOpen ? 'Projected total' : 'Total scheduled'}
</span>
<span className="autopay-schedule__summary-value">
{fmt(totalAmount)}
{isOpen && '*'}
</span>
</div>
</div>
{/* ── Table ───────────────────────────────────────────────────────── */}
<div className="autopay-schedule__table-wrapper" tabIndex={0} aria-label="Scroll to view more payments">
<table
className="autopay-schedule__table"
aria-labelledby="schedule-heading"
>
<caption className="sr-only">
Upcoming autopay payments — {FREQ_LABEL[frequency]}, {fmt(amount)}{' '}
per payment, starting {fmtDate(startDate)}
</caption>
<thead>
<tr>
<th scope="col" className="autopay-schedule__th autopay-schedule__th--num">
#
</th>
<th scope="col" className="autopay-schedule__th">
Payment Date
</th>
<th scope="col" className="autopay-schedule__th autopay-schedule__th--right">
Amount
</th>
<th scope="col" className="autopay-schedule__th autopay-schedule__th--right">
Status
</th>
</tr>
</thead>
<tbody>
{schedule.map((date, index) => {
const dateOnly = new Date(date);
dateOnly.setHours(0, 0, 0, 0);
const isUpcoming = dateOnly.getTime() === today.getTime();
const isPast = dateOnly < today;
return (
<tr
key={date.toISOString()}
className={`autopay-schedule__row${isUpcoming ? ' autopay-schedule__row--upcoming' : ''}${isPast ? ' autopay-schedule__row--past' : ''}`}
>
<td className="autopay-schedule__td autopay-schedule__td--num">
{index + 1}
</td>
<td className="autopay-schedule__td">
<time dateTime={date.toISOString().split('T')[0]}>
{fmtDate(date.toISOString())}
</time>
</td>
<td className="autopay-schedule__td autopay-schedule__td--right autopay-schedule__td--amount">
{fmt(amount)}
</td>
<td className="autopay-schedule__td autopay-schedule__td--right">
{isUpcoming ? (
<span
className="autopay-schedule__badge autopay-schedule__badge--upcoming"
aria-label="Upcoming — next scheduled payment"
>
Upcoming
</span>
) : isPast ? (
<span
className="autopay-schedule__badge autopay-schedule__badge--past"
aria-label="Past payment date"
>
Past
</span>
) : (
<span
className="autopay-schedule__badge autopay-schedule__badge--scheduled"
aria-label="Scheduled"
>
Scheduled
</span>
)}
</td>
</tr>
);
})}
</tbody>
</table>
</div>
{/* ── Footer note ─────────────────────────────────────────────────── */}
{isOpen && (
<p className="autopay-schedule__footnote">
* Open-ended schedule — showing the first {totalPayments} payments.
Total will vary.
</p>
)}
{!isOpen && totalPayments === maxRows && (
<p className="autopay-schedule__footnote">
Showing first {maxRows} of all scheduled payments.
</p>
)}
</section>
);
}