Display a table skeleton while the list of guests is loading #29
@ -1,8 +1,8 @@
|
|||||||
import { lusitana } from '@/app/ui/fonts';
|
import { lusitana } from '@/app/ui/fonts';
|
||||||
import AffinityGroupsTree from '@/app/ui/guests/affinity-groups-tree';
|
import AffinityGroupsTree from '@/app/ui/guests/affinity-groups-tree';
|
||||||
import GuestsTable from '@/app/ui/guests/table';
|
import GuestsTable from '@/app/ui/guests/table';
|
||||||
import { Tree } from 'primereact/tree';
|
import React, { Suspense } from 'react';
|
||||||
import React, { useState, useEffect } from 'react';
|
import SkeletonTable from '@/app/ui/guests/skeleton-row';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -13,7 +13,9 @@ export default function Page() {
|
|||||||
|
|
||||||
<h1 className={`${lusitana.className} text-2xl py-4`}>Guests</h1>
|
<h1 className={`${lusitana.className} text-2xl py-4`}>Guests</h1>
|
||||||
<div className="flex w-full items-center justify-between">
|
<div className="flex w-full items-center justify-between">
|
||||||
<GuestsTable />
|
<Suspense fallback={<SkeletonTable />}>
|
||||||
|
<GuestsTable />
|
||||||
|
</Suspense>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
34
app/ui/guests/skeleton-row.tsx
Normal file
34
app/ui/guests/skeleton-row.tsx
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
import Skeleton from '@/app/ui/skeleton';
|
||||||
|
|
||||||
|
export function SkeletonRow() {
|
||||||
|
return (
|
||||||
|
<tr className="bg-white border-b odd:bg-white odd:dark:bg-gray-900 even:bg-gray-50 even:dark:bg-gray-800">
|
||||||
|
<td className="px-6 py-4">{<Skeleton className="w-[45ch] h-[1rem]" />}</td>
|
||||||
|
<td className="px-6 py-4">{<Skeleton className="w-[45ch] h-[1rem]" />}</td>
|
||||||
|
<td className="px-6 py-4">{<Skeleton className="w-[20ch] h-[1rem]" />}</td>
|
||||||
|
<td className="px-6 py-4">{<Skeleton className="w-[10ch] h-[1rem]" />}</td>
|
||||||
|
</tr>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function SkeletonTable() {
|
||||||
|
return (
|
||||||
|
<div className="w-full relative overflow-x-auto shadow-md sm:rounded-lg">
|
||||||
|
<table className="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400">
|
||||||
|
<caption className="p-5 text-lg font-semibold text-left rtl:text-right text-gray-900 bg-white dark:text-white dark:bg-gray-800">
|
||||||
|
Guests
|
||||||
|
<p className="mt-1 text-sm font-normal text-gray-500 dark:text-gray-400">
|
||||||
|
Loading the list of guests...
|
||||||
|
</p>
|
||||||
|
</caption>
|
||||||
|
<thead className="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{[...Array(20)].map((e, i) => <SkeletonRow />)}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
@ -1,31 +1,31 @@
|
|||||||
'use client'
|
'use client'
|
||||||
|
|
||||||
import { Guest } from '@/app/lib/definitions';
|
import { Guest } from '@/app/lib/definitions';
|
||||||
import { useState, Suspense, useEffect } from 'react';
|
import SkeletonRow from './skeleton-row';
|
||||||
|
import { Suspense } from 'react';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
|
|
||||||
export default function guestsTable() {
|
export function TableHeader() {
|
||||||
|
|
||||||
const [guests, setGuests] = useState<Guest[]>([]);
|
}
|
||||||
|
|
||||||
useEffect(() => {
|
export default async function guestsTable() {
|
||||||
if (guests.length > 0) {
|
|
||||||
return;
|
let guests: Guest[] = await fetch("http://localhost:3001/guests.json")
|
||||||
}
|
.then((response) => response.json())
|
||||||
fetch("http://localhost:3001/guests.json")
|
.then((data) => {
|
||||||
.then((response) => response.json())
|
return data.data.map((record: any) => {
|
||||||
.then((data) => {
|
return ({
|
||||||
setGuests(data.data.map((record: any) => {
|
id: record.id,
|
||||||
return ({
|
name: record.attributes.name,
|
||||||
id: record.id,
|
email: record.attributes.email,
|
||||||
name: record.attributes.name,
|
group_name: record.attributes.group_name,
|
||||||
email: record.attributes.email,
|
status: record.attributes.status
|
||||||
group_name: record.attributes.group_name,
|
});
|
||||||
status: record.attributes.status
|
|
||||||
});
|
|
||||||
}))
|
|
||||||
});
|
});
|
||||||
});
|
}, (error) => {
|
||||||
|
return [];
|
||||||
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="w-full relative overflow-x-auto shadow-md sm:rounded-lg">
|
<div className="w-full relative overflow-x-auto shadow-md sm:rounded-lg">
|
||||||
@ -53,37 +53,34 @@ export default function guestsTable() {
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<Suspense>
|
{guests.map((guest) => (
|
||||||
{guests.map((guest) => (
|
<tr key={guest.id} className="bg-white border-b odd:bg-white odd:dark:bg-gray-900 even:bg-gray-50 even:dark:bg-gray-800">
|
||||||
<tr key={guest.id} className="bg-white border-b odd:bg-white odd:dark:bg-gray-900 even:bg-gray-50 even:dark:bg-gray-800">
|
<th scope="row" className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white">
|
||||||
<th scope="row" className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white">
|
{guest.name}
|
||||||
{guest.name}
|
</th>
|
||||||
</th>
|
<td className="px-6 py-4">
|
||||||
<td className="px-6 py-4">
|
{guest.email}
|
||||||
{guest.email}
|
</td>
|
||||||
</td>
|
<td className="px-6 py-4">
|
||||||
<td className="px-6 py-4">
|
{guest.group_name}
|
||||||
{guest.group_name}
|
</td>
|
||||||
</td>
|
<td className="px-6 py-4">
|
||||||
<td className="px-6 py-4">
|
<span className="flex items-center text-sm dark:text-white me-3">
|
||||||
<span className="flex items-center text-sm dark:text-white me-3">
|
<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',
|
}
|
||||||
}
|
)}>
|
||||||
)}>
|
|
||||||
{/* <span className="flex w-2.5 h-2.5 rounded-full me-1.5 flex-shrink-0 bg-blue-600"> */}
|
|
||||||
</span>
|
|
||||||
{guest.status}
|
|
||||||
</span>
|
</span>
|
||||||
</td>
|
{guest.status}
|
||||||
</tr>
|
</span>
|
||||||
))}
|
</td>
|
||||||
</Suspense>
|
</tr>
|
||||||
|
))}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
3
app/ui/skeleton.tsx
Normal file
3
app/ui/skeleton.tsx
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export default function Skeleton({ className }: { className: string }) {
|
||||||
|
return <div className={`bg-slate-200 motion-safe:animate-pulse rounded ${className}`} />;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user