Revert "add: noStoriesOf loader option support for custome story"

This reverts commit df2041fcd0e8fda2376c8fe69760cc7d7bfe6a41.
This commit is contained in:
娄涛 2018-08-23 16:04:45 +08:00
parent a328a4a3d5
commit 3229f04d24
2 changed files with 4 additions and 16 deletions

View File

@ -1,16 +1,13 @@
import { getOptions } from 'loader-utils';
import injectDecorator from './inject-decorator';
let ADD_DECORATOR_STATEMENT = '.addDecorator(withStorySource(__STORY__, __ADDS_MAP__))';
const ADD_DECORATOR_STATEMENT = '.addDecorator(withStorySource(__STORY__, __ADDS_MAP__))';
function transform(source) {
const options = getOptions(this) || {};
if (options.noStoriesOf) ADD_DECORATOR_STATEMENT = '';
const result = injectDecorator(source, ADD_DECORATOR_STATEMENT, this.resourcePath, options);
if (!options.noStoriesOf && !result.changed) {
if (!result.changed) {
return source;
}
@ -20,22 +17,13 @@ function transform(source) {
const addsMap = JSON.stringify(result.addsMap);
if (!options.noStoriesOf) {
return `
return `
var withStorySource = require('@storybook/addon-storysource').withStorySource;
var __STORY__ = ${sourceJson};
var __ADDS_MAP__ = ${addsMap};
${result.source}
`;
} else {
return `
export var __STORY__ = ${sourceJson};
export var __ADDS_MAP__ = ${addsMap};
${result.source}
`;
}
}
export default transform;

View File

@ -23,7 +23,7 @@ function inject(source, decorator, filepath, options = {}) {
? generateSourceWithDecorators(source, decorator, options.parser)
: generateSourceWithoutDecorators(source, options.parser);
if (!options.noStoriesOf && !changed) {
if (!changed) {
return {
source: newSource,
addsMap: {},