Files
dewedev/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value/lib/index.js
dwindown 7f2dd5260f Initial commit: Developer Tools MVP with visual editor
- Complete React app with 7 developer tools
- JSON Tool with visual structured editor
- Serialize Tool with visual structured editor
- URL, Base64, CSV/JSON, Beautifier, Diff tools
- Responsive navigation with dropdown menu
- Dark/light mode toggle
- Mobile-responsive design with sticky header
- All tools working with copy/paste functionality
2025-08-02 09:31:26 +07:00

52 lines
1.1 KiB
JavaScript

"use strict";
exports.__esModule = true;
exports.default = void 0;
const addJSXAttribute = ({
types: t,
template
}, opts) => {
function getAttributeValue(value, literal) {
if (typeof value === 'string' && literal) {
return t.jsxExpressionContainer(template.ast(value).expression);
}
if (typeof value === 'string') {
return t.stringLiteral(value);
}
if (typeof value === 'boolean') {
return t.jsxExpressionContainer(t.booleanLiteral(value));
}
if (typeof value === 'number') {
return t.jsxExpressionContainer(t.numericLiteral(value));
}
return null;
}
return {
visitor: {
JSXAttribute(path) {
const valuePath = path.get('value');
if (!valuePath.isStringLiteral()) return;
opts.values.forEach(({
value,
newValue,
literal
}) => {
if (!valuePath.isStringLiteral({
value
})) return;
valuePath.replaceWith(getAttributeValue(newValue, literal));
});
}
}
};
};
var _default = addJSXAttribute;
exports.default = _default;