1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-06-30 22:46:39 -04:00

images are finally linkable again

This commit is contained in:
2022-03-21 16:17:35 -04:00
parent 6b6bc5497e
commit 05608261ca
15 changed files with 185 additions and 143 deletions

View File

@ -1,8 +1,7 @@
import Image from "../Image";
import Image, { CustomImageProps } from "../Image";
import innerText from "react-innertext";
import { styled } from "../../lib/styles/stitches.config";
import type { PropsWithChildren } from "react";
import type { ImageProps as NextImageProps } from "next/image";
const Wrapper = styled("figure", {
margin: "1em auto",
@ -21,7 +20,7 @@ const Caption = styled("figcaption", {
},
});
export type FigureProps = Omit<NextImageProps, "alt"> &
export type FigureProps = Omit<CustomImageProps, "alt"> &
PropsWithChildren<{
alt?: string; // becomes optional -- pulled from plaintext-ified caption if missing
}>;

View File

@ -1,4 +1,5 @@
import NextImage from "next/image";
import Link from "../Link";
import { styled } from "../../lib/styles/stitches.config";
import type { ComponentProps } from "react";
import type { ImageProps as NextImageProps, StaticImageData } from "next/image";
@ -15,6 +16,11 @@ const RoundedImage = styled(NextImage, {
borderRadius: "$rounded",
});
export type CustomImageProps = NextImageProps &
ComponentProps<typeof RoundedImage> & {
href?: string; // optionally wrap image in a link
};
const CustomImage = ({
src,
width,
@ -24,9 +30,10 @@ const CustomImage = ({
layout,
quality,
priority,
href,
className,
...rest
}: NextImageProps & ComponentProps<typeof RoundedImage>) => {
}: CustomImageProps) => {
// passed directly into next/image: https://nextjs.org/docs/api-reference/next/image
const imageProps: Partial<NextImageProps> = {
width: typeof width === "string" ? Number.parseInt(width) : width,
@ -50,10 +57,18 @@ const CustomImage = ({
imageProps.src = (src as string).replace(/^\/public/g, "");
}
// @ts-ignore
const img = <RoundedImage {...imageProps} {...rest} />;
return (
<Wrapper className={className}>
{/* @ts-ignore */}
<RoundedImage {...imageProps} {...rest} />
{href ? (
<Link href={href} fancy={false}>
{img}
</Link>
) : (
img
)}
</Wrapper>
);
};