You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

37 lines
958 B

const memoize = require('micro-memoize');
const visit = require('unist-util-visit');
const pAll = require('p-all');
const sizeOf = require('image-size');
/**
* Simple plugin to get the size of local images so we can use it in react
*/
const rehypeImageSize = () => {
async function transformer(tree) {
const nodes = [];
visit(tree, 'element', node => {
if (node.tagName !== 'img') {
return;
} else {
nodes.push(node);
}
});
await pAll(
nodes.map(node => () => visitor(node)),
{ concurrency: 25 }
);
return tree;
}
async function visitor(node) {
const isRelative =
node && node.properties && node.properties.src && node.properties.src.startsWith('/');
if (isRelative) {
const dimensions = sizeOf(`public/${node.properties.src}`);
node.properties['dimensions'] = dimensions;
}
}
return transformer;
};
module.exports = memoize(rehypeImageSize);