mirror of
https://github.com/svg/svgo.git
synced 2025-04-19 10:22:15 +03:00
I saw complaints about `extendDefaultPlugins` api - it cannot be used when svgo is installed globally - it requires svgo to be installed when using svgo-loader or svgo-jsx - it prevents using serializable config formats like json In this diff I introduced the new plugin which is a bundle of all default plugins. ```js module.exports = { plugins: [ 'preset_default', // or { name: 'preset_default', floatPrecision: 4, overrides: { convertPathData: { applyTransforms: false } } } ] } ```
51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const { elemsGroups } = require('./_collections');
|
|
|
|
exports.name = 'removeUselessDefs';
|
|
|
|
exports.type = 'perItem';
|
|
|
|
exports.active = true;
|
|
|
|
exports.description = 'removes elements in <defs> without id';
|
|
|
|
/**
|
|
* Removes content of defs and properties that aren't rendered directly without ids.
|
|
*
|
|
* @param {Object} item current iteration item
|
|
* @return {Boolean} if false, item will be filtered out
|
|
*
|
|
* @author Lev Solntsev
|
|
*/
|
|
exports.fn = function (item) {
|
|
if (item.type === 'element') {
|
|
if (item.name === 'defs') {
|
|
item.children = getUsefulItems(item, []);
|
|
if (item.children.length === 0) {
|
|
return false;
|
|
}
|
|
} else if (
|
|
elemsGroups.nonRendering.includes(item.name) &&
|
|
item.attributes.id == null
|
|
) {
|
|
return false;
|
|
}
|
|
}
|
|
};
|
|
|
|
function getUsefulItems(item, usefulItems) {
|
|
for (const child of item.children) {
|
|
if (child.type === 'element') {
|
|
if (child.attributes.id != null || child.name === 'style') {
|
|
usefulItems.push(child);
|
|
child.parentNode = item;
|
|
} else {
|
|
child.children = getUsefulItems(child, usefulItems);
|
|
}
|
|
}
|
|
}
|
|
|
|
return usefulItems;
|
|
}
|