add: noStoriesOf loader option support for custome story

This commit is contained in:
challenget 2018-08-13 16:20:37 +08:00
parent 6d7c3c9e46
commit df2041fcd0
2 changed files with 16 additions and 4 deletions

View File

@ -1,13 +1,16 @@
import { getOptions } from 'loader-utils';
import injectDecorator from './inject-decorator';
const ADD_DECORATOR_STATEMENT = '.addDecorator(withStorySource(__STORY__, __ADDS_MAP__))';
let 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 (!result.changed) {
if (!options.noStoriesOf && !result.changed) {
return source;
}
@ -17,13 +20,22 @@ function transform(source) {
const addsMap = JSON.stringify(result.addsMap);
return `
if (!options.noStoriesOf) {
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 = {}) {
options.parser
);
if (!changed) {
if (!options.noStoriesOf && !changed) {
return {
source: newSource,
addsMap: {},