1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-04-17 10:28:46 -04:00

custom <Image /> wrapper now supports static imports too

This commit is contained in:
2022-01-24 08:57:21 -05:00
parent 5d402bc31b
commit 51ecae3c9b
22 changed files with 289 additions and 355 deletions

View File

@@ -4,20 +4,34 @@ import type { ImageProps as NextImageProps } from "next/image";
import styles from "./Image.module.css";
const Image = ({ src, width, height, alt, quality, priority, className, ...rest }: NextImageProps) => {
const Image = ({ src, width, height, placeholder, alt, quality, priority, className, ...rest }: NextImageProps) => {
// passed directly into next/image: https://nextjs.org/docs/api-reference/next/image
const imageProps: Partial<NextImageProps> = {
width,
height,
layout: "intrinsic",
alt: alt || "",
quality: quality || 65,
loading: priority ? "eager" : "lazy",
priority: !!priority,
};
if (typeof src === "object") {
// static image imports: extract variables from the src object
const staticImg = src as StaticImageData;
imageProps.src = staticImg;
// default to blur placeholder while loading
imageProps.placeholder = placeholder || (staticImg.blurDataURL ? "blur" : "empty");
} else {
// regular path to jpg/png/etc. passed in, which makes explicit width and height required
imageProps.src = (src as string).replace(/^\/public/g, "");
}
return (
<div className={classNames(styles.wrapper, className)}>
<NextImage
src={(src as string).replace(/^\/public/g, "")}
layout="intrinsic"
width={width}
height={height}
alt={alt || ""}
quality={quality || 65}
loading={priority ? "eager" : "lazy"}
priority={!!priority}
{...rest}
/>
{/* @ts-ignore */}
<NextImage {...imageProps} {...rest} />
</div>
);
};