react-native-svg
Version:
SVG library for react-native
84 lines (76 loc) • 1.96 kB
JavaScript
import extractBrush from './extractBrush';
import extractOpacity from './extractOpacity';
import extractLengthList from './extractLengthList';
const caps = {
butt: 0,
square: 2,
round: 1,
};
const joins = {
miter: 0,
bevel: 2,
round: 1,
};
const vectorEffects = {
none: 0,
default: 0,
nonScalingStroke: 1,
'non-scaling-stroke': 1,
inherit: 2,
uri: 3,
};
export default function extractStroke(props, styleProperties) {
const {
stroke,
strokeOpacity,
strokeLinecap,
strokeLinejoin,
strokeDasharray,
strokeWidth,
strokeDashoffset,
strokeMiterlimit,
vectorEffect,
} = props;
if (stroke != null) {
styleProperties.push('stroke');
}
if (strokeWidth != null) {
styleProperties.push('strokeWidth');
}
if (strokeOpacity != null) {
styleProperties.push('strokeOpacity');
}
if (strokeDasharray != null) {
styleProperties.push('strokeDasharray');
}
if (strokeDashoffset != null) {
styleProperties.push('strokeDashoffset');
}
if (strokeLinecap != null) {
styleProperties.push('strokeLinecap');
}
if (strokeLinejoin != null) {
styleProperties.push('strokeLinejoin');
}
if (strokeMiterlimit != null) {
styleProperties.push('strokeMiterlimit');
}
const strokeDash =
!strokeDasharray || strokeDasharray === 'none'
? null
: extractLengthList(strokeDasharray);
return {
stroke: extractBrush(stroke),
strokeOpacity: extractOpacity(strokeOpacity),
strokeLinecap: caps[strokeLinecap] || 0,
strokeLinejoin: joins[strokeLinejoin] || 0,
strokeDasharray:
strokeDash && strokeDash.length % 2 === 1
? strokeDash.concat(strokeDash)
: strokeDash,
strokeWidth: strokeWidth != null ? strokeWidth : 1,
strokeDashoffset: strokeDasharray ? +strokeDashoffset || 0 : null,
strokeMiterlimit: parseFloat(strokeMiterlimit) || 4,
vectorEffect: vectorEffects[vectorEffect] || 0,
};
}