Merge pull request #10875 from storybookjs/fix/docs-inline-rendering

Addon-docs: Fix story inline rendering
This commit is contained in:
Michael Shilman 2020-05-22 20:09:24 +08:00 committed by GitHub
commit daada5835f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 21 deletions

View File

@ -27,15 +27,6 @@ type StoryRefProps = {
export type StoryProps = StoryDefProps | StoryRefProps;
const inferInlineStories = (framework: string): boolean => {
switch (framework) {
case 'react':
return true;
default:
return false;
}
};
export const lookupStoryId = (
storyName: string,
{ mdxStoryNameToKey, mdxComponentMeta }: DocsContextProps
@ -53,23 +44,17 @@ export const getStoryProps = (props: StoryProps, context: DocsContextProps): Pur
const data = context.storyStore.fromId(previewId) || {};
const { height, inline } = props;
const { parameters = {}, docs = {} } = data;
const { framework = null } = parameters;
const { storyFn = undefined, name: storyName = undefined, parameters = {} } = data;
const { docs = {} } = parameters;
if (docs.disable) {
return null;
}
// prefer props, then global options, then framework-inferred values
const {
inlineStories = inferInlineStories(framework),
iframeHeight = undefined,
prepareForInline = undefined,
} = docs;
const { storyFn = undefined, name: storyName = undefined } = data;
// prefer block props, then story parameters defined by the framework-specific settings and optionally overriden by users
const { inlineStories = false, iframeHeight = 100, prepareForInline } = docs;
const storyIsInline = typeof inline === 'boolean' ? inline : inlineStories;
if (storyIsInline && !prepareForInline && framework !== 'react') {
if (storyIsInline && !prepareForInline) {
throw new Error(
`Story '${storyName}' is set to render inline, but no 'prepareForInline' function is implemented in your docs configuration!`
);

View File

@ -3,8 +3,10 @@ import { enhanceArgTypes } from './enhanceArgTypes';
export const parameters = {
docs: {
inlineStories: false,
container: DocsContainer,
page: DocsPage,
iframeHeight: 100,
},
};

View File

@ -4,7 +4,7 @@ import { extractComponentDescription } from '../../lib/docgen';
export const parameters = {
docs: {
// react is Storybook's "native" framework, so it's stories are inherently prepared to be rendered inline
inlineStories: true,
// NOTE: that the result is a react element. Hooks support is provided by the outer code.
prepareForInline: (storyFn: StoryFn) => storyFn(),
extractArgTypes,