/[sudobot]/trunk/docs/components/MDX/ImageWithSkeleton.tsx
ViewVC logotype

Contents of /trunk/docs/components/MDX/ImageWithSkeleton.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (show annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 861 byte(s)
chore: add trunk
1 "use client";
2
3 import { ComponentProps, FC, useState } from "react";
4 import Image from "next/image";
5 import styles from "@/styles/ImageWithSkeleton.module.css";
6
7 type ImageWithSkeletonProps = ComponentProps<typeof Image>;
8
9 const ImageWithSkeleton: FC<ImageWithSkeletonProps> = ({ ...imageProps }) => {
10 const [isLoaded, setIsLoaded] = useState(false);
11 const { onLoad, ...finalImageProps } = imageProps;
12
13 return (
14 <div className="relative">
15 <Image
16 onLoad={() => {
17 setIsLoaded(true);
18 }}
19 {...finalImageProps}
20 />
21 {!isLoaded && (
22 <div
23 className={`absolute top-0 left-0 h-[100%] w-[100%] ${styles.skeleton}`}
24 ></div>
25 )}
26 </div>
27 );
28 };
29
30 export default ImageWithSkeleton;

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26