1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-04-19 06:55:30 -04:00

lower default image quality

This commit is contained in:
2022-06-10 10:33:53 -04:00
parent 56d838d375
commit 5f08784a74
3 changed files with 25 additions and 21 deletions
+15 -11
View File
@@ -4,6 +4,10 @@ import { styled } from "../../lib/styles/stitches.config";
import type { ComponentProps } from "react";
import type { ImageProps as NextImageProps, StaticImageData } from "next/image";
// https://nextjs.org/docs/api-reference/next/image#optional-props
const DEFAULT_QUALITY = 60;
const DEFAULT_LAYOUT = "intrinsic";
const Wrapper = styled("div", {
lineHeight: 0,
@@ -25,24 +29,23 @@ const Image = ({
src,
width,
height,
placeholder,
alt,
layout,
quality,
priority,
alt = "",
quality = DEFAULT_QUALITY,
layout = DEFAULT_LAYOUT,
placeholder,
href,
className,
...rest
}: ImageProps) => {
// passed directly into next/image: https://nextjs.org/docs/api-reference/next/image
const imageProps: Partial<NextImageProps> = {
width: typeof width === "string" ? Number.parseInt(width.replace("px", "")) : width,
height: typeof height === "string" ? Number.parseInt(height.replace("px", "")) : height,
alt: alt || "",
layout: layout || "intrinsic",
quality: quality || 65,
priority: !!priority,
loading: priority ? "eager" : "lazy",
alt,
quality,
layout,
placeholder,
};
if (typeof src === "object") {
@@ -50,10 +53,11 @@ const Image = ({
const staticImg = src as StaticImageData;
imageProps.src = staticImg;
// default to blur placeholder while loading
// default to blur placeholder while loading if it's been generated for us
imageProps.placeholder = placeholder || (staticImg.blurDataURL ? "blur" : "empty");
} else {
// regular path to jpg/png/etc. passed in, which makes explicit width and height required
// regular path to a file was passed in, which makes explicit width and height required.
// optionally prepending src with "/public" makes images resolve properly in GitHub markdown previews, etc.
imageProps.src = (src as string).replace(/^\/public/g, "");
}