mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 17:23:22 +01:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import fs from 'fs'
|
|
import { join } from 'path'
|
|
import sharp from 'sharp'
|
|
import type ImageType from '@/types/image'
|
|
import { rgbDataURL } from './rgbDataURL'
|
|
|
|
const imagesDirectory = join(process.cwd(), 'public', 'images')
|
|
|
|
export async function getProjectImages(slug: string) {
|
|
const allImages = fs.readdirSync(imagesDirectory, 'utf8')
|
|
const projectImages = allImages.filter((image) => image.includes(slug))
|
|
|
|
let images: ImageType[] = []
|
|
|
|
await Promise.all(
|
|
projectImages.map(async (image) => {
|
|
const file = `${imagesDirectory}/${image}`
|
|
const transformer = sharp(file)
|
|
const { width, height, format } = await transformer.metadata()
|
|
const { dominant } = await transformer.stats()
|
|
const blurDataURL = rgbDataURL(dominant.r, dominant.g, dominant.b)
|
|
|
|
const imageType: ImageType = {
|
|
width,
|
|
height,
|
|
format,
|
|
blurDataURL,
|
|
src: `/images/${image}`
|
|
}
|
|
images.push(imageType)
|
|
})
|
|
)
|
|
// Sort images by sequentially numbered name to be sure
|
|
images = images.sort((a, b) => a.src.localeCompare(b.src))
|
|
return images
|
|
}
|