mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
Added codemod for deprecated addon-info API
This commit is contained in:
parent
095393c041
commit
4bb1be4e52
@ -4,3 +4,7 @@ export {
|
|||||||
default as updateOrganisationName,
|
default as updateOrganisationName,
|
||||||
packageNames,
|
packageNames,
|
||||||
} from './transforms/update-organisation-name';
|
} from './transforms/update-organisation-name';
|
||||||
|
|
||||||
|
export {
|
||||||
|
default as updateAddonInfo
|
||||||
|
} from './transforms/update-addon-info';
|
||||||
|
71
lib/codemod/src/transforms/update-addon-info.js
Normal file
71
lib/codemod/src/transforms/update-addon-info.js
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
export default function transformer (file, api) {
|
||||||
|
const j = api.jscodeshift;
|
||||||
|
const root = j(file.source);
|
||||||
|
|
||||||
|
const getOptions = args => {
|
||||||
|
if (args[3] === undefined) {
|
||||||
|
return [args[1]];
|
||||||
|
} else {
|
||||||
|
return [
|
||||||
|
j.objectExpression([
|
||||||
|
j.property('init', j.identifier('text'), args[1]),
|
||||||
|
...args[3].properties
|
||||||
|
])
|
||||||
|
];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const withInfo = addWithInfoExpression => {
|
||||||
|
const node = addWithInfoExpression.node;
|
||||||
|
const args = node.arguments;
|
||||||
|
|
||||||
|
node.callee.property.name = 'add';
|
||||||
|
node.arguments = [
|
||||||
|
args[0],
|
||||||
|
j.callExpression(
|
||||||
|
j.callExpression(
|
||||||
|
j.identifier('withInfo'),
|
||||||
|
getOptions(args)
|
||||||
|
),
|
||||||
|
[args[2]]
|
||||||
|
)
|
||||||
|
];
|
||||||
|
|
||||||
|
return node;
|
||||||
|
};
|
||||||
|
|
||||||
|
const checkWithInfoImport = root => {
|
||||||
|
const importExists = root.find(j.ImportDeclaration)
|
||||||
|
.filter(imp => imp.node.source.value === '@storybook/addon-info')
|
||||||
|
.size();
|
||||||
|
|
||||||
|
if (importExists) return;
|
||||||
|
|
||||||
|
root.find(j.ImportDeclaration)
|
||||||
|
.at(-1)
|
||||||
|
.insertAfter(
|
||||||
|
j.importDeclaration(
|
||||||
|
[j.importSpecifier(j.identifier('withInfo'))],
|
||||||
|
j.literal('@storybook/addon-info')
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const addWithInfoExpressions = root.find(
|
||||||
|
j.CallExpression,
|
||||||
|
{
|
||||||
|
callee: {
|
||||||
|
property: {
|
||||||
|
name: 'addWithInfo'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
if (addWithInfoExpressions.size()) {
|
||||||
|
checkWithInfoImport(root);
|
||||||
|
addWithInfoExpressions.replaceWith(withInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
return root.toSource();
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user