Adapt the guests table to use the new API format
This commit is contained in:
parent
03f2d87b6e
commit
567ce207cf
@ -23,7 +23,7 @@ export type Guest = {
|
|||||||
name: string;
|
name: string;
|
||||||
group_name?: string;
|
group_name?: string;
|
||||||
color?: string;
|
color?: string;
|
||||||
status?: 'Considered' | 'Invited' | 'Confirmed' | 'Declined' | 'Tentative';
|
status?: 'considered' | 'invited' | 'confirmed' | 'declined' | 'tentative';
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Expense = {
|
export type Expense = {
|
||||||
|
@ -17,12 +17,12 @@ export default function guestsTable() {
|
|||||||
fetch("/api/guests.json")
|
fetch("/api/guests.json")
|
||||||
.then((response) => response.json())
|
.then((response) => response.json())
|
||||||
.then((data) => {
|
.then((data) => {
|
||||||
setGuests(data.data.map((record: any) => {
|
setGuests(data.map((record: any) => {
|
||||||
return ({
|
return ({
|
||||||
id: record.id,
|
id: record.id,
|
||||||
name: record.attributes.name,
|
name: record.name,
|
||||||
group_name: record.attributes.group_name,
|
status: record.status,
|
||||||
status: record.attributes.status
|
group_name: record.group.name,
|
||||||
});
|
});
|
||||||
}));
|
}));
|
||||||
}, (error) => {
|
}, (error) => {
|
||||||
@ -82,11 +82,11 @@ export default function guestsTable() {
|
|||||||
<span className={clsx(
|
<span className={clsx(
|
||||||
'flex w-2.5 h-2.5 rounded-full me-1.5 flex-shrink-0',
|
'flex w-2.5 h-2.5 rounded-full me-1.5 flex-shrink-0',
|
||||||
{
|
{
|
||||||
'bg-gray-400': guest.status === 'Considered',
|
'bg-gray-400': guest.status === 'considered',
|
||||||
'bg-blue-400': guest.status === 'Invited',
|
'bg-blue-400': guest.status === 'invited',
|
||||||
'bg-green-600': guest.status === 'Confirmed',
|
'bg-green-600': guest.status === 'confirmed',
|
||||||
'bg-red-400': guest.status === 'Declined',
|
'bg-red-400': guest.status === 'declined',
|
||||||
'bg-yellow-400': guest.status === 'Tentative',
|
'bg-yellow-400': guest.status === 'tentative',
|
||||||
}
|
}
|
||||||
)}>
|
)}>
|
||||||
</span>
|
</span>
|
||||||
@ -94,13 +94,13 @@ export default function guestsTable() {
|
|||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{guest.status === 'Considered' && (<button data-guest-id={guest.id} onClick={handleInviteGuest} className={classNames('blue')}>
|
{guest.status === 'considered' && (<button data-guest-id={guest.id} onClick={handleInviteGuest} className={classNames('blue')}>
|
||||||
Invite
|
Invite
|
||||||
</button>)}
|
</button>)}
|
||||||
{(guest.status === 'Invited' || guest.status === 'Tentative') && (
|
{(guest.status === 'invited' || guest.status === 'tentative') && (
|
||||||
<>
|
<>
|
||||||
<button data-guest-id={guest.id} onClick={handleConfirmGuest} className={classNames('green')}>Confirm</button>
|
<button data-guest-id={guest.id} onClick={handleConfirmGuest} className={classNames('green')}>Confirm</button>
|
||||||
{guest.status != 'Tentative' && <button data-guest-id={guest.id} onClick={handleTentativeGuest} className={classNames('yellow')}>Tentative</button>}
|
{guest.status != 'tentative' && <button data-guest-id={guest.id} onClick={handleTentativeGuest} className={classNames('yellow')}>Tentative</button>}
|
||||||
<button data-guest-id={guest.id} onClick={handleDeclineGuest} className={classNames('red')}>Decline</button>
|
<button data-guest-id={guest.id} onClick={handleDeclineGuest} className={classNames('red')}>Decline</button>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user