@mui/codemod
Version:
Codemod scripts for Material UI.
86 lines (84 loc) • 3.41 kB
JavaScript
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = movePropIntoSlots;
var _findComponentJSX = _interopRequireDefault(require("../../util/findComponentJSX"));
var _findComponentDefaultProps = _interopRequireDefault(require("../../util/findComponentDefaultProps"));
var _assignObject = _interopRequireDefault(require("../../util/assignObject"));
var _appendAttribute = _interopRequireDefault(require("../../util/appendAttribute"));
function moveJsxPropIntoSlots(j, element, propName, slotName) {
const index = element.openingElement.attributes.findIndex(attr => attr.type === 'JSXAttribute' && attr.name.name === propName);
if (index !== -1) {
const attrNode = element.openingElement.attributes.splice(index, 1)[0];
const removedValue = attrNode.value.expression || attrNode.value;
let hasSlots = false;
element.openingElement.attributes.forEach(attr => {
if (attr.name?.name === 'slots') {
hasSlots = true;
const slotIndex = attr.value.expression.properties.findIndex(prop => prop?.key?.name === slotName);
if (slotIndex === -1) {
(0, _assignObject.default)(j, {
target: attr,
key: slotName,
expression: removedValue
});
}
}
});
if (!hasSlots) {
(0, _appendAttribute.default)(j, {
target: element,
attributeName: 'slots',
expression: j.objectExpression([j.objectProperty(j.identifier(slotName), removedValue)])
});
}
}
}
function moveDefaultPropsPropIntoSlots(j, defaultPropsPathCollection, propName, slotName) {
defaultPropsPathCollection.find(j.ObjectProperty, {
key: {
name: propName
}
}).forEach(path => {
const removedValue = path.value.value;
const defaultProps = path.parent.value;
let hasSlots = false;
defaultProps.properties.forEach(property => {
if (property.key?.name === 'slots') {
hasSlots = true;
const slots = property.value;
const slotIndex = slots.properties.findIndex(prop => prop?.key?.name === slotName);
if (slotIndex === -1) {
slots.properties.push(j.objectProperty(j.identifier(slotName), removedValue));
}
}
});
if (!hasSlots) {
defaultProps.properties.push(j.property('init', j.identifier('slots'), j.objectExpression([j.objectProperty(j.identifier(slotName), removedValue)])));
}
path.prune();
});
}
/**
* Moves prop into slots.
* If the slots prop exists, it will add the prop to the slots.
* If there are duplicated values, the slots values will be used.
*
* @param {import('jscodeshift')} j
* @param {{ root: import('jscodeshift').Collection; componentName: string, propName: string, slotName: string }} options
*
* @example <Component TransitionComponent={CustomTransition} /> => <Component slots={{ transition: CustomTransition }} />
*/
function movePropIntoSlots(j, options) {
const {
propName,
slotName
} = options;
(0, _findComponentJSX.default)(j, options, elementPath => {
moveJsxPropIntoSlots(j, elementPath.node, propName, slotName);
});
const defaultPropsPathCollection = (0, _findComponentDefaultProps.default)(j, options);
moveDefaultPropsPropIntoSlots(j, defaultPropsPathCollection, propName, slotName);
}
;