mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:41:06 +08:00
Addon-docs: Support non-story exports in module format
This commit is contained in:
parent
c546d4d516
commit
7aa8d07bb8
@ -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',
|
||||
|
@ -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]} />;
|
||||
|
@ -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;
|
||||
|
@ -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();
|
||||
});
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user