Allow removing a guest
All checks were successful
Check usage of free licenses / build-static-assets (pull_request) Successful in 1m43s
Add copyright notice / copyright_notice (pull_request) Successful in 2m24s
Playwright Tests / test (pull_request) Successful in 3m54s

This commit is contained in:
Manuel Bustillo 2024-11-17 18:29:50 +01:00
parent 318d203fed
commit 6e598e537b
2 changed files with 29 additions and 11 deletions

View File

@ -48,3 +48,17 @@ export function createGuest(name: string, group_id: string, onCreate?: () => voi
}) })
.catch((error) => console.error(error)); .catch((error) => console.error(error));
} }
export function destroyGuest(guest: Guest, onDestroy?: () => void) {
fetch(`/api/guests/${guest.id}`, {
method: 'DELETE',
headers: {
'X-CSRF-TOKEN': getCsrfToken(),
}
})
.then((response) => response.json())
.then((data) => {
onDestroy && onDestroy();
})
.catch((error) => console.error(error));
}

View File

@ -2,12 +2,13 @@
'use client'; 'use client';
import { updateGuest } from '@/app/api/guests'; import { destroyGuest, updateGuest } from '@/app/api/guests';
import { Guest, GuestStatus } from '@/app/lib/definitions'; import { Guest, GuestStatus } from '@/app/lib/definitions';
import { classNames } from '@/app/ui/components/button'; import { classNames } from '@/app/ui/components/button';
import clsx from 'clsx'; import clsx from 'clsx';
import InlineTextField from '../components/form/inlineTextField'; import InlineTextField from '../components/form/inlineTextField';
import TableOfContents from '../components/table-of-contents'; import TableOfContents from '../components/table-of-contents';
import { TrashIcon } from '@heroicons/react/24/outline';
export default function guestsTable({ guests, onUpdate }: { guests: Guest[], onUpdate: () => void }) { export default function guestsTable({ guests, onUpdate }: { guests: Guest[], onUpdate: () => void }) {
const handleGuestChange = (guest: Guest, status: GuestStatus) => { const handleGuestChange = (guest: Guest, status: GuestStatus) => {
@ -45,6 +46,7 @@ export default function guestsTable({ guests, onUpdate }: { guests: Guest[], onU
</span> </span>
</td> </td>
<td> <td>
<div className="flex flex-row items-center">
{guest.status === 'considered' && (<button data-guest-id={guest.id} onClick={() => handleGuestChange(guest, 'invited')} className={classNames('blue')}> {guest.status === 'considered' && (<button data-guest-id={guest.id} onClick={() => handleGuestChange(guest, 'invited')} className={classNames('blue')}>
Invite Invite
</button>)} </button>)}
@ -55,6 +57,8 @@ export default function guestsTable({ guests, onUpdate }: { guests: Guest[], onU
<button data-guest-id={guest.id} onClick={() => handleGuestChange(guest, 'declined')} className={classNames('red')}>Decline</button> <button data-guest-id={guest.id} onClick={() => handleGuestChange(guest, 'declined')} className={classNames('red')}>Decline</button>
</> </>
)} )}
<TrashIcon className='size-6 cursor-pointer' onClick={() => { destroyGuest(guest, () => onUpdate()) }} />
</div>
</td> </td>
</tr> </tr>
)} )}