Addon-docs: Support non-story exports in module format

This commit is contained in:
Michael Shilman 2019-06-25 14:52:09 +08:00
parent c546d4d516
commit 7aa8d07bb8
4 changed files with 64 additions and 15 deletions

View File

@ -7,6 +7,7 @@ import { DocsPageWrapper } from '../DocsPage';
export default {
Component: PropRow,
title: 'Docs|PropRow',
excludeStories: /.*Def$/,
decorators: [
getStory => (
<DocsPageWrapper>
@ -18,7 +19,7 @@ export default {
],
};
const stringDef = {
export const stringDef = {
name: 'someString',
type: { name: 'string' },
required: true,
@ -26,17 +27,17 @@ const stringDef = {
defaultValue: 'fixme',
};
const longNameDef = {
export const longNameDef = {
...stringDef,
name: 'reallyLongStringThatTakesUpSpace',
};
const longDescDef = {
export const longDescDef = {
...stringDef,
description: 'really long description that takes up a lot of space. sometimes this happens.',
};
const numberDef = {
export const numberDef = {
name: 'someNumber',
type: { name: 'number' },
required: false,
@ -44,7 +45,7 @@ const numberDef = {
defaultValue: 0,
};
const objectDef = {
export const objectDef = {
name: 'someObject',
type: { name: 'objectOf', value: { name: 'number' } },
required: false,
@ -52,7 +53,7 @@ const objectDef = {
defaultValue: { value: '{ key: 1 }', computed: false },
};
const arrayDef = {
export const arrayDef = {
name: 'someOArray',
type: { name: 'arrayOf', value: { name: 'number' } },
required: false,
@ -60,7 +61,7 @@ const arrayDef = {
defaultValue: { value: '[1, 2, 3]', computed: false },
};
const complexDef = {
export const complexDef = {
name: 'someComplex',
type: {
name: 'objectOf',

View File

@ -1,7 +1,7 @@
import React from 'react';
import { PropsTable, PropsTableError } from './PropsTable';
import { DocsPageWrapper } from '../DocsPage';
import * as rowStories from './PropRow.stories';
import { stringDef, numberDef } from './PropRow.stories';
export default {
Component: PropsTable,
@ -13,6 +13,4 @@ export const error = () => <PropsTable error={PropsTableError.NO_COMPONENT} />;
export const empty = () => <PropsTable rows={[]} />;
const { row: stringRow } = rowStories.string().props;
const { row: numberRow } = rowStories.number().props;
export const normal = () => <PropsTable rows={[stringRow, numberRow]} />;
export const normal = () => <PropsTable rows={[stringDef, numberDef]} />;

View File

@ -21,6 +21,20 @@ const classes = {
ERROR: 'sb-show-errordisplay',
};
function matches(storyKey, arrayOrRegex) {
if (Array.isArray(arrayOrRegex)) {
return arrayOrRegex.includes(storyKey);
}
return storyKey.match(arrayOrRegex);
}
export function includeStory(storyKey, { includeStories, excludeStories }) {
return (
(!includeStories || matches(storyKey, includeStories)) &&
(!excludeStories || !matches(storyKey, excludeStories))
);
}
function showMain() {
document.body.classList.remove(classes.NOPREVIEW);
document.body.classList.remove(classes.ERROR);
@ -308,9 +322,11 @@ export default function start(render, { decorateStory } = {}) {
}
Object.keys(stories).forEach(key => {
const story = stories[key];
const { title = story.title || key, parameters } = story;
kind.add(title, story, parameters);
if (includeStory(key, meta)) {
const story = stories[key];
const { title = story.title || key, parameters } = story;
kind.add(title, story, parameters);
}
});
previousExports[filename] = fileExports;

View File

@ -2,7 +2,7 @@
import { history, document, window } from 'global';
import Events from '@storybook/core-events';
import start from './start';
import start, { includeStory } from './start';
jest.mock('@storybook/client-logger');
jest.mock('global', () => ({
@ -142,3 +142,37 @@ describe('STORY_INIT', () => {
expect(store.setSelection).toHaveBeenCalledWith({ storyId: 'kind--story' });
});
});
describe('story filters for module exports', () => {
it('should include all stories when there are no filters', () => {
expect(includeStory('a', {})).toBeTruthy();
});
it('should filter stories by arrays', () => {
expect(includeStory('a', { includeStories: ['a'] })).toBeTruthy();
expect(includeStory('a', { includeStories: [] })).toBeFalsy();
expect(includeStory('a', { includeStories: ['b'] })).toBeFalsy();
expect(includeStory('a', { excludeStories: ['a'] })).toBeFalsy();
expect(includeStory('a', { excludeStories: [] })).toBeTruthy();
expect(includeStory('a', { excludeStories: ['b'] })).toBeTruthy();
expect(includeStory('a', { includeStories: ['a'], excludeStories: ['a'] })).toBeFalsy();
expect(includeStory('a', { includeStories: [], excludeStories: [] })).toBeFalsy();
expect(includeStory('a', { includeStories: ['a'], excludeStories: ['b'] })).toBeTruthy();
});
it('should filter stories by regex', () => {
expect(includeStory('a', { includeStories: /a/ })).toBeTruthy();
expect(includeStory('a', { includeStories: /.*/ })).toBeTruthy();
expect(includeStory('a', { includeStories: /b/ })).toBeFalsy();
expect(includeStory('a', { excludeStories: /a/ })).toBeFalsy();
expect(includeStory('a', { excludeStories: /.*/ })).toBeFalsy();
expect(includeStory('a', { excludeStories: /b/ })).toBeTruthy();
expect(includeStory('a', { includeStories: /a/, excludeStories: ['a'] })).toBeFalsy();
expect(includeStory('a', { includeStories: /.*/, excludeStories: /.*/ })).toBeFalsy();
expect(includeStory('a', { includeStories: /a/, excludeStories: /b/ })).toBeTruthy();
});
});