File size: 999 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
import createImageUrlBuilder from "@sanity/image-url";
import { dataset, projectId } from "@/sanity/lib/api";
const imageBuilder = createImageUrlBuilder({
projectId: projectId || "",
dataset: dataset || "",
});
export const urlForImage = (source: any) => {
// Ensure that source image contains a valid reference
if (!source?.asset?._ref) {
return undefined;
}
return imageBuilder?.image(source).auto("format").fit("max");
};
export function resolveOpenGraphImage(image: any, width = 1200, height = 627) {
if (!image) return;
const url = urlForImage(image)?.width(1200).height(627).fit("crop").url();
if (!url) return;
return { url, alt: image?.alt as string, width, height };
}
export function resolveHref(
documentType?: string,
slug?: string,
): string | undefined {
switch (documentType) {
case "post":
return slug ? `/posts/${slug}` : undefined;
default:
console.warn("Invalid document type:", documentType);
return undefined;
}
}
|