Spaces:
Sleeping
Sleeping
File size: 3,384 Bytes
cc651f6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
"use strict";
exports.__esModule = true;
exports.default = void 0;
const elementToComponent = {
svg: 'Svg',
circle: 'Circle',
clipPath: 'ClipPath',
ellipse: 'Ellipse',
g: 'G',
linearGradient: 'LinearGradient',
radialGradient: 'RadialGradient',
line: 'Line',
path: 'Path',
pattern: 'Pattern',
polygon: 'Polygon',
polyline: 'Polyline',
rect: 'Rect',
symbol: 'Symbol',
text: 'Text',
textPath: 'TextPath',
tspan: 'TSpan',
use: 'Use',
defs: 'Defs',
stop: 'Stop',
mask: 'Mask',
image: 'Image',
foreignObject: 'ForeignObject'
};
const expoPrefix = (component, expo) => {
// Prefix with 'Svg.' in the case we're transforming for Expo
if (!expo) {
return component;
}
return (component !== 'Svg' ? 'Svg.' : '') + component;
};
const plugin = ({
types: t
}, {
expo
}) => {
function replaceElement(path, state) {
const {
name
} = path.node.openingElement.name; // Replace element by react-native-svg components
const component = elementToComponent[name];
if (component) {
const prefixedComponent = expoPrefix(component, expo);
const openingElementName = path.get('openingElement.name');
openingElementName.replaceWith(t.jsxIdentifier(prefixedComponent));
if (path.has('closingElement')) {
const closingElementName = path.get('closingElement.name');
closingElementName.replaceWith(t.jsxIdentifier(prefixedComponent));
}
state.replacedComponents.add(prefixedComponent);
return;
} // Remove element if not supported
state.unsupportedComponents.add(name);
path.remove();
}
const svgElementVisitor = {
JSXElement(path, state) {
if (!path.get('openingElement.name').isJSXIdentifier({
name: 'svg'
})) {
return;
}
replaceElement(path, state);
path.traverse(jsxElementVisitor, state);
}
};
const jsxElementVisitor = {
JSXElement(path, state) {
replaceElement(path, state);
}
};
const importDeclarationVisitor = {
ImportDeclaration(path, state) {
if (path.get('source').isStringLiteral({
value: 'react-native-svg'
})) {
state.replacedComponents.forEach(component => {
if (path.get('specifiers').some(specifier => specifier.get('local').isIdentifier({
name: component
}))) {
return;
}
path.pushContainer('specifiers', t.importSpecifier(t.identifier(component), t.identifier(component)));
});
} else if (path.get('source').isStringLiteral({
value: 'expo'
})) {
path.pushContainer('specifiers', t.importSpecifier(t.identifier('Svg'), t.identifier('Svg')));
} else {
return;
}
if (state.unsupportedComponents.size && !path.has('trailingComments')) {
const componentList = [...state.unsupportedComponents].join(', ');
path.addComment('trailing', ` SVGR has dropped some elements not supported by react-native-svg: ${componentList} `);
}
}
};
return {
visitor: {
Program(path, state) {
state.replacedComponents = new Set();
state.unsupportedComponents = new Set();
path.traverse(svgElementVisitor, state);
path.traverse(importDeclarationVisitor, state);
}
}
};
};
var _default = plugin;
exports.default = _default; |