Skip to content

Instantly share code, notes, and snippets.

@guillermodlpa
Created October 28, 2022 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guillermodlpa/4f5a87a124c3bcf9e8660cc120ded629 to your computer and use it in GitHub Desktop.
Save guillermodlpa/4f5a87a124c3bcf9e8660cc120ded629 to your computer and use it in GitHub Desktop.
Generates a string to be passed to img sizes for performance
/**
* Generates a string to be passed to img sizes, for performance.
* @see https://nextjs.org/docs/api-reference/next/image#sizes
*/
export default function generateImageSizesProp(responsiveValues: {
base: string;
sm?: string;
md?: string;
lg?: string;
xl?: string;
'2xl'?: string;
}): string {
const sizesValue = [
responsiveValues['2xl'] && `(min-width: 1536px) ${responsiveValues['2xl']}`,
responsiveValues.xl && `(min-width: 1280px) ${responsiveValues.xl}`,
responsiveValues.lg && `(min-width: 992px) ${responsiveValues.lg}`,
responsiveValues.md && `(min-width: 768px) ${responsiveValues.md}`,
responsiveValues.sm && `(min-width: 480px) ${responsiveValues.sm}`,
responsiveValues.base,
]
.filter(Boolean)
.join(', ');
return sizesValue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment