mirror of
https://github.com/svg/svgo.git
synced 2025-08-09 02:22:08 +03:00
removeUselessStrokeAndFill is back. Checks for inherited attrs and references.
This commit is contained in:
@@ -20,6 +20,7 @@ plugins:
|
|||||||
- removeMetadata
|
- removeMetadata
|
||||||
- removeEditorsNSData
|
- removeEditorsNSData
|
||||||
- cleanupAttrs
|
- cleanupAttrs
|
||||||
|
- cleanupIDs
|
||||||
- convertStyleToAttrs
|
- convertStyleToAttrs
|
||||||
- removeRasterImages
|
- removeRasterImages
|
||||||
- cleanupNumericValues
|
- cleanupNumericValues
|
||||||
@@ -41,7 +42,6 @@ plugins:
|
|||||||
- removeEmptyAttrs
|
- removeEmptyAttrs
|
||||||
- removeEmptyContainers
|
- removeEmptyContainers
|
||||||
- mergePaths
|
- mergePaths
|
||||||
- cleanupIDs
|
|
||||||
- removeUnusedNS
|
- removeUnusedNS
|
||||||
- transformsWithOnePath
|
- transformsWithOnePath
|
||||||
- sortAttrs
|
- sortAttrs
|
||||||
|
@@ -84,10 +84,13 @@ JSAPI.prototype.isElem = function(param) {
|
|||||||
JSAPI.prototype.computedAttr = function(name, val) {
|
JSAPI.prototype.computedAttr = function(name, val) {
|
||||||
if (!arguments.length) return;
|
if (!arguments.length) return;
|
||||||
|
|
||||||
for (var elem = this; elem && !elem.hasAttr(name); elem = elem.parentNode);
|
for (var elem = this; elem && (!elem.hasAttr(name) || !elem.attr(name).value); elem = elem.parentNode);
|
||||||
|
|
||||||
if (elem && elem.hasAttr(name, val))
|
if (val != null) {
|
||||||
return elem.attrs[name];
|
return elem ? elem.hasAttr(name, val) : false;
|
||||||
|
} else if (elem && elem.hasAttr(name)) {
|
||||||
|
return elem.attrs[name].value;
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -7,7 +7,7 @@ var regPathInstructions = /([MmLlHhVvCcSsQqTtAaZz])\s*/,
|
|||||||
transformsMultiply = require('./_transforms').transformsMultiply,
|
transformsMultiply = require('./_transforms').transformsMultiply,
|
||||||
collections = require('./_collections.js'),
|
collections = require('./_collections.js'),
|
||||||
referencesProps = collections.referencesProps,
|
referencesProps = collections.referencesProps,
|
||||||
defaultStrokeWidth = { value: collections.attrsGroupsDefaults.presentation['stroke-width'] },
|
defaultStrokeWidth = collections.attrsGroupsDefaults.presentation['stroke-width'],
|
||||||
cleanupOutData = require('../lib/svgo/tools').cleanupOutData,
|
cleanupOutData = require('../lib/svgo/tools').cleanupOutData,
|
||||||
removeLeadingZero = require('../lib/svgo/tools').removeLeadingZero;
|
removeLeadingZero = require('../lib/svgo/tools').removeLeadingZero;
|
||||||
|
|
||||||
@@ -222,7 +222,7 @@ exports.applyTransforms = function(elem, path, applyTransformsStroked, floatPrec
|
|||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
if (sx !== 1){
|
if (sx !== 1){
|
||||||
var strokeWidth = (elem.computedAttr('stroke-width') || defaultStrokeWidth).value;
|
var strokeWidth = elem.computedAttr('stroke-width') || defaultStrokeWidth;
|
||||||
|
|
||||||
if (elem.hasAttr('stroke-width')){
|
if (elem.hasAttr('stroke-width')){
|
||||||
elem.attrs['stroke-width'].value = elem.attrs['stroke-width'].value.trim()
|
elem.attrs['stroke-width'].value = elem.attrs['stroke-width'].value.trim()
|
||||||
|
@@ -2,15 +2,16 @@
|
|||||||
|
|
||||||
exports.type = 'perItem';
|
exports.type = 'perItem';
|
||||||
|
|
||||||
exports.active = false;
|
exports.active = true;
|
||||||
|
|
||||||
exports.params = {
|
exports.params = {
|
||||||
stroke: true,
|
stroke: true,
|
||||||
fill: true
|
fill: true
|
||||||
};
|
};
|
||||||
|
|
||||||
var regStrokeProps = /^stroke/,
|
var shape = require('./_collections').elemsGroups.shape,
|
||||||
regFillProps = /^fill/;
|
regStrokeProps = /^stroke/,
|
||||||
|
regFillProps = /^fill-/;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove useless stroke and fill attrs.
|
* Remove useless stroke and fill attrs.
|
||||||
@@ -23,28 +24,41 @@ var regStrokeProps = /^stroke/,
|
|||||||
*/
|
*/
|
||||||
exports.fn = function(item, params) {
|
exports.fn = function(item, params) {
|
||||||
|
|
||||||
if (item.isElem()) {
|
if (item.isElem(shape) && !item.computedAttr('id')) {
|
||||||
|
|
||||||
|
var stroke = params.stroke && item.computedAttr('stroke'),
|
||||||
|
fill = params.fill && !item.computedAttr('fill', 'none');
|
||||||
|
|
||||||
// remove stroke*
|
// remove stroke*
|
||||||
if (
|
if (
|
||||||
params.stroke &&
|
params.stroke &&
|
||||||
(!item.hasAttr('stroke') ||
|
(!stroke ||
|
||||||
item.hasAttr('stroke-opacity', '0') ||
|
stroke == 'none' ||
|
||||||
item.hasAttr('stroke-width', '0')
|
item.computedAttr('stroke-opacity', '0') ||
|
||||||
|
item.computedAttr('stroke-width', '0')
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
|
var parentStroke = item.parentNode.computedAttr('stroke'),
|
||||||
|
declineStroke = parentStroke && parentStroke != 'none';
|
||||||
|
|
||||||
item.eachAttr(function(attr) {
|
item.eachAttr(function(attr) {
|
||||||
if (regStrokeProps.test(attr.name)) {
|
if (regStrokeProps.test(attr.name)) {
|
||||||
item.removeAttr(attr.name);
|
item.removeAttr(attr.name);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (declineStroke) item.addAttr({
|
||||||
|
name: 'stroke',
|
||||||
|
value: 'none',
|
||||||
|
prefix: '',
|
||||||
|
local: 'stroke'
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// remove fill*
|
// remove fill*
|
||||||
if (
|
if (
|
||||||
params.fill &&
|
params.fill &&
|
||||||
item.hasAttr('fill', 'none') ||
|
(!fill || item.computedAttr('fill-opacity', '0'))
|
||||||
item.hasAttr('fill-opacity', '0')
|
|
||||||
) {
|
) {
|
||||||
item.eachAttr(function(attr) {
|
item.eachAttr(function(attr) {
|
||||||
if (regFillProps.test(attr.name)) {
|
if (regFillProps.test(attr.name)) {
|
||||||
@@ -52,12 +66,17 @@ exports.fn = function(item, params) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
item.addAttr({
|
if (fill) {
|
||||||
name: 'fill',
|
if (item.hasAttr('fill'))
|
||||||
value: 'none',
|
item.attr('fill').value = 'none';
|
||||||
prefix: '',
|
else
|
||||||
local: 'fill'
|
item.addAttr({
|
||||||
});
|
name: 'fill',
|
||||||
|
value: 'none',
|
||||||
|
prefix: '',
|
||||||
|
local: 'fill'
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,15 +1,41 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg">
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<defs>
|
||||||
|
<g id="test">
|
||||||
|
<rect stroke-dashoffset="5" width="100" height="100"/>
|
||||||
|
</g>
|
||||||
|
</defs>
|
||||||
<circle fill="red" stroke-width="6" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
<circle fill="red" stroke-width="6" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
||||||
<circle fill="red" stroke="#000" stroke-width="6" stroke-dashoffset="5" stroke-opacity="0" cx="60" cy="60" r="50"/>
|
<circle fill="red" stroke="#000" stroke-width="6" stroke-dashoffset="5" stroke-opacity="0" cx="60" cy="60" r="50"/>
|
||||||
<circle fill="red" stroke="#000" stroke-width="0" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
<circle fill="red" stroke="#000" stroke-width="0" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
||||||
<circle fill="red" stroke="#000" stroke-width="6" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
<circle fill="red" stroke="#000" stroke-width="6" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
||||||
|
<g stroke="#000" stroke-width="6">
|
||||||
|
<circle fill="red" stroke="red" stroke-width="0" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
||||||
|
<circle fill="red" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
||||||
|
</g>
|
||||||
|
<g stroke="#000">
|
||||||
|
<circle fill="red" stroke-width="0" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
||||||
|
<circle fill="red" stroke="none" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
||||||
@@@
|
@@@
|
||||||
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg">
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<defs>
|
||||||
|
<g id="test">
|
||||||
|
<rect stroke-dashoffset="5" width="100" height="100"/>
|
||||||
|
</g>
|
||||||
|
</defs>
|
||||||
<circle fill="red" cx="60" cy="60" r="50"/>
|
<circle fill="red" cx="60" cy="60" r="50"/>
|
||||||
<circle fill="red" cx="60" cy="60" r="50"/>
|
<circle fill="red" cx="60" cy="60" r="50"/>
|
||||||
<circle fill="red" cx="60" cy="60" r="50"/>
|
<circle fill="red" cx="60" cy="60" r="50"/>
|
||||||
<circle fill="red" stroke="#000" stroke-width="6" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
<circle fill="red" stroke="#000" stroke-width="6" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
||||||
|
<g stroke="#000" stroke-width="6">
|
||||||
|
<circle fill="red" cx="60" cy="60" r="50" stroke="none"/>
|
||||||
|
<circle fill="red" stroke-dashoffset="5" cx="60" cy="60" r="50"/>
|
||||||
|
</g>
|
||||||
|
<g stroke="#000">
|
||||||
|
<circle fill="red" cx="60" cy="60" r="50" stroke="none"/>
|
||||||
|
<circle fill="red" cx="60" cy="60" r="50" stroke="none"/>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 756 B After Width: | Height: | Size: 1.8 KiB |
@@ -1,13 +1,31 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg">
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<defs>
|
||||||
|
<g id="test">
|
||||||
|
<rect fill-opacity=".5" width="100" height="100"/>
|
||||||
|
</g>
|
||||||
|
</defs>
|
||||||
<circle fill="none" fill-rule="evenodd" cx="60" cy="60" r="50"/>
|
<circle fill="none" fill-rule="evenodd" cx="60" cy="60" r="50"/>
|
||||||
<circle fill="red" fill-opacity="0" cx="60" cy="60" r="50"/>
|
<circle fill="red" fill-opacity="0" cx="90" cy="90" r="50"/>
|
||||||
|
<circle fill-opacity="0" fill-rule="evenodd" cx="90" cy="60" r="50"/>
|
||||||
<circle fill="red" fill-opacity=".5" cx="60" cy="60" r="50"/>
|
<circle fill="red" fill-opacity=".5" cx="60" cy="60" r="50"/>
|
||||||
|
<g fill="none">
|
||||||
|
<circle fill-opacity=".5" cx="60" cy="60" r="50"/>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
||||||
@@@
|
@@@
|
||||||
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg">
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||||||
<circle cx="60" cy="60" r="50" fill="none"/>
|
<defs>
|
||||||
<circle cx="60" cy="60" r="50" fill="none"/>
|
<g id="test">
|
||||||
|
<rect fill-opacity=".5" width="100" height="100"/>
|
||||||
|
</g>
|
||||||
|
</defs>
|
||||||
|
<circle fill="none" cx="60" cy="60" r="50"/>
|
||||||
|
<circle fill="none" cx="90" cy="90" r="50"/>
|
||||||
|
<circle cx="90" cy="60" r="50" fill="none"/>
|
||||||
<circle fill="red" fill-opacity=".5" cx="60" cy="60" r="50"/>
|
<circle fill="red" fill-opacity=".5" cx="60" cy="60" r="50"/>
|
||||||
|
<g fill="none">
|
||||||
|
<circle cx="60" cy="60" r="50"/>
|
||||||
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 466 B After Width: | Height: | Size: 989 B |
Reference in New Issue
Block a user