storybook/code/frameworks/nextjs/src/next-image-loader-stub.ts
Kyle Gach b7c1ad20f2 Add nextjs framework
Co-authored-by: Yann Braga <yannbf@gmail.com>
2022-10-13 08:02:23 -06:00

31 lines
726 B
TypeScript

import { interpolateName } from 'loader-utils';
import imageSizeOf from 'image-size';
import { RawLoaderDefinition } from 'webpack';
interface LoaderOptions {
filename: string;
}
const nextImageLoaderStub: RawLoaderDefinition<LoaderOptions> = function (content) {
const { filename } = this.getOptions();
const outputPath = interpolateName(this, filename.replace('[ext]', '.[ext]'), {
context: this.rootContext,
content,
});
this.emitFile(outputPath, content);
const { width, height } = imageSizeOf(content);
return `export default ${JSON.stringify({
src: outputPath,
height,
width,
blurDataURL: outputPath,
})};`;
};
nextImageLoaderStub.raw = true;
export = nextImageLoaderStub;