mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:01:06 +08:00
31 lines
726 B
TypeScript
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;
|