Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addon-docs: Automatic source selection based on story type #11601

Merged
merged 5 commits into from
Jul 18, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 61 additions & 12 deletions addons/docs/src/blocks/Source.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,38 @@ import {
SourceError,
SourceProps as PureSourceProps,
} from '@storybook/components';
import { StoryId } from '@storybook/api';
import { logger } from '@storybook/client-logger';

import { DocsContext, DocsContextProps } from './DocsContext';
import { SourceContext, SourceContextProps } from './SourceContainer';
import { CURRENT_SELECTION } from './types';

import { enhanceSource } from './enhanceSource';

enum SourceType {
/**
* AUTO is the default
*
* Use the CODE logic if:
* - the user has set a custom source snippet in `docs.source.code` story parameter
* - the story is not an args-based story
*
* Use the DYNAMIC rendered snippet if the story is an args story
*/
AUTO = 'auto',

/**
* Render the code extracted by source-loader
*/
CODE = 'code',

/**
* Render dynamically-rendered source snippet from the story's virtual DOM (currently React only)
*/
DYNAMIC = 'dynamic',
}

interface CommonProps {
language?: string;
dark?: boolean;
Expand All @@ -32,13 +58,45 @@ type NoneProps = CommonProps;

type SourceProps = SingleSourceProps | MultiSourceProps | CodeProps | NoneProps;

const getSnippet = (
storyId: StoryId,
sourceContext: SourceContextProps,
docsContext: DocsContextProps
): string => {
const { sources } = sourceContext;
const { storyStore } = docsContext;

const snippet = sources && sources[storyId];
const data = storyStore?.fromId(storyId);
shilman marked this conversation as resolved.
Show resolved Hide resolved

if (data) {
const { parameters } = data;
// eslint-disable-next-line no-underscore-dangle
const isArgsStory = parameters.__isArgsStory;
const type = parameters.docs?.source?.type || SourceType.AUTO;

// if user has explicitly set this as a dynamic story, or this is an args story and there's a snippet
if (
type === SourceType.DYNAMIC ||
(type === SourceType.AUTO && snippet && isArgsStory && !parameters.docs?.source?.code)
shilman marked this conversation as resolved.
Show resolved Hide resolved
) {
return snippet || '';
}

const enhanced = data && (enhanceSource(data) || data.parameters);
shilman marked this conversation as resolved.
Show resolved Hide resolved
return enhanced?.docs?.source?.code || '';
}
// Fallback if we can't get the story data for this story
logger.warn(`Unable to find source for story ID '${storyId}'`);
return snippet || '';
};

export const getSourceProps = (
props: SourceProps,
docsContext: DocsContextProps,
sourceContext: SourceContextProps
): PureSourceProps => {
const { id: currentId, storyStore } = docsContext;
const { sources } = sourceContext;
const { id: currentId } = docsContext;

const codeProps = props as CodeProps;
const singleProps = props as SingleSourceProps;
Expand All @@ -50,16 +108,7 @@ export const getSourceProps = (
singleProps.id === CURRENT_SELECTION || !singleProps.id ? currentId : singleProps.id;
const targetIds = multiProps.ids || [targetId];
source = targetIds
.map((sourceId) => {
const snippet = sources && sources[sourceId];
if (snippet) return snippet;
if (storyStore) {
const data = storyStore.fromId(sourceId);
const enhanced = data && (enhanceSource(data) || data.parameters);
return enhanced?.docs?.source?.code || '';
}
return '';
})
.map((storyId) => getSnippet(storyId, sourceContext, docsContext))
.join('\n\n');
}
return source
Expand Down
32 changes: 32 additions & 0 deletions examples/official-storybook/stories/addon-docs/source.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import React from 'react';
import Button from '../../components/TsButton';

export default {
title: 'Addons/Docs/Source',
component: Button,
argTypes: {
children: { control: 'text' },
type: { control: 'text' },
},
parameters: {
chromatic: { enabled: false },
},
};

const Template = (args) => <Button {...args} />;

export const Basic = Template.bind({});
Basic.args = {
children: 'basic',
somethingElse: { a: 2 },
};

export const NoArgs = () => <Button>no args</Button>;

export const ForceCodeSource = Template.bind({});
ForceCodeSource.args = { ...Basic.args };
ForceCodeSource.parameters = { docs: { source: { type: 'code' } } };

export const CustomSource = Template.bind({});
CustomSource.args = { ...Basic.args };
CustomSource.parameters = { docs: { source: { code: 'custom source' } } };