-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61d4381
commit 1f3eda6
Showing
2 changed files
with
40 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import React from 'react'; | ||
|
||
const CanteenCardSkeleton = () => { | ||
return ( | ||
<div className="sm:w-64 w-[80vw] px-5 bg-white flex flex-col border pt-5 h-[320px] border-white rounded-lg shadow dark:bg-none dark:border-white my-4 mx-2 transition duration-300 ease-in-out transform hover:scale-105 hover:shadow-lg hover:shadow-green-500/50 ... md:justify-center"> | ||
{/* Image Skeleton */} | ||
<div className="flex justify-center items-center h-48 w-full bg-gray-300 dark:bg-gray-300 rounded-t-lg animate-pulse"> | ||
{/* You can add an icon or leave it empty */} | ||
</div> | ||
|
||
<div className="p-5 space-y-3"> | ||
{/* Title Skeleton */} | ||
<div className="h-6 bg-gray-300 dark:bg-gray-300 rounded animate-pulse"></div> | ||
|
||
{/* Button Skeleton */} | ||
<div className="h-8 flex justify-center items-center w-24 bg-blue-300 dark:bg-blue-700 rounded-lg animate-pulse"></div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CanteenCardSkeleton; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,31 @@ | ||
import React from 'react'; | ||
import React, { useState, useEffect } from 'react'; | ||
import CanteenCard from './CanteenCard'; | ||
import CanteenCardSkeleton from './CanteenCardSkeleton'; | ||
|
||
const CanteenList = ({ canteenData }) => { | ||
const [loading, setLoading] = useState(true); | ||
|
||
useEffect(() => { | ||
const timer = setTimeout(() => { | ||
setLoading(false); | ||
}, 1000); // Set the loading state to false after 1 second | ||
|
||
return () => clearTimeout(timer); // Clean up the timer on component unmount | ||
}, []); | ||
|
||
if (!canteenData || !canteenData.data) { | ||
return <p>No canteen data available.</p>; | ||
} | ||
|
||
return ( | ||
<div className="flex flex-wrap lg:px-28 gap-5 justify-center mt-20"> | ||
{canteenData.data.map((canteen) => ( | ||
<CanteenCard key={canteen._id} canteen={canteen} /> | ||
))} | ||
{loading | ||
? Array(canteenData.data.length).fill().map((_, index) => <CanteenCardSkeleton key={index} />) | ||
: canteenData.data.map((canteen) => ( | ||
<CanteenCard key={canteen._id} canteen={canteen} /> | ||
))} | ||
</div> | ||
); | ||
}; | ||
|
||
export default CanteenList; | ||
export default CanteenList; |