mirror of
https://github.com/captbaritone/webamp
synced 2024-11-23 08:39:15 +00:00
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
const postcss = require("postcss");
|
|
const dataUriToBuffer = require("data-uri-to-buffer");
|
|
const imagemin = require("imagemin");
|
|
const imageminOptipng = require("imagemin-optipng");
|
|
|
|
const DATA_URL_REGEX = new RegExp(/url\((data:image\/png;base64,.+)\)/gi);
|
|
const DATA_URL_PROPS_REGEX = /^(background(?:-image)?)|(content)|(cursor)/;
|
|
|
|
async function optimizeDataUri(dataUri) {
|
|
const buffer = dataUriToBuffer(dataUri);
|
|
const optimized = await imagemin.buffer(buffer, {
|
|
use: [imageminOptipng()],
|
|
});
|
|
return `data:image/png;base64,${optimized.toString("base64")}`;
|
|
}
|
|
|
|
module.exports = postcss.plugin("postcss-optimize-data-uri-pngs", () => {
|
|
return async function(css) {
|
|
// walkDecls does not let us work async, so we collect the async work we
|
|
// need to do here, and await it at the end
|
|
const promisesFactories = [];
|
|
css.walkDecls(DATA_URL_PROPS_REGEX, decl => {
|
|
let matches;
|
|
// WTF JavaScript. This is the worst API for iterating RegEx matches.
|
|
while ((matches = DATA_URL_REGEX.exec(decl.value))) {
|
|
const [, dataUri] = matches;
|
|
promisesFactories.push(async () => {
|
|
decl.value = decl.value.replace(
|
|
dataUri,
|
|
await optimizeDataUri(dataUri)
|
|
);
|
|
});
|
|
}
|
|
});
|
|
await Promise.all(promisesFactories.map(p => p()));
|
|
};
|
|
});
|