Automatically remove storiesOf import

This commit is contained in:
Michael Shilman 2019-06-24 00:06:27 +08:00
parent e2ced37f21
commit c4e7ace84f
4 changed files with 15 additions and 6 deletions

View File

@ -2,7 +2,7 @@
import React from 'react';
import Button from './Button';
import { storiesOf, configure } from '@storybook/react';
import { configure } from '@storybook/react';
import { action } from '@storybook/addon-actions';
export default {

View File

@ -2,8 +2,6 @@
import React from 'react';
import Button from './Button';
import { storiesOf } from '@storybook/react';
export default {
title: 'Button',

View File

@ -2,8 +2,6 @@
import React from 'react';
import Button from './Button';
import { storiesOf } from '@storybook/react';
export default {
title: 'Button',
};

View File

@ -147,12 +147,25 @@ export default function transformer(file, api) {
// each top-level add expression corresponds to the last "add" of the chain.
// replace it with the entire export statements
const topLevelAddExpressions = root
root
.find(j.CallExpression)
.filter(add => add.node.callee.property && add.node.callee.property.name === 'add')
.filter(add => add.node.arguments.length >= 2 && add.node.arguments[0].type === 'Literal')
.filter(add => add.parentPath.node.type === 'ExpressionStatement')
.forEach(convertToModuleExports);
// remove storiesOf import
root
.find(j.ImportSpecifier)
.filter(
spec =>
spec.node.imported.name === 'storiesOf' &&
spec.parent.node.source.value.startsWith('@storybook/')
)
.forEach(spec => {
const toRemove = spec.parent.node.specifiers.length > 1 ? spec : spec.parent;
j(toRemove).remove();
});
return root.toSource({ quote: 'single', trailingComma: 'true', tabWidth: 2 });
}