mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:11:08 +08:00
Add some template exampes to external docs
And make sure doc blocks use the "primary" story by id when possible.
This commit is contained in:
parent
b2e34b88f1
commit
eaf5af0f77
@ -1,8 +1,10 @@
|
||||
const config = {
|
||||
stories: [
|
||||
'../Introduction.mdx',
|
||||
{
|
||||
directory: '../components',
|
||||
titlePrefix: 'Demo',
|
||||
files: '**/!(Template).(stories.tsx|mdx)',
|
||||
},
|
||||
],
|
||||
logLevel: 'debug',
|
||||
|
8
examples/external-docs/components/Template.mdx
Normal file
8
examples/external-docs/components/Template.mdx
Normal file
@ -0,0 +1,8 @@
|
||||
import { Title, Description, ArgsTable, Stories, PRIMARY_STORY } from '@storybook/addon-docs';
|
||||
|
||||
# This is a template!
|
||||
|
||||
<Title />
|
||||
<Description />
|
||||
<ArgsTable story={PRIMARY_STORY} />
|
||||
<Stories />
|
7
examples/external-docs/components/button.mdx
Normal file
7
examples/external-docs/components/button.mdx
Normal file
@ -0,0 +1,7 @@
|
||||
import { Meta } from '@storybook/blocks';
|
||||
import * as ButtonStories from './button.stories.tsx';
|
||||
import Template from './Template.mdx';
|
||||
|
||||
<Meta of={ButtonStories} />
|
||||
|
||||
<Template />
|
7
examples/external-docs/components/emoji-button.mdx
Normal file
7
examples/external-docs/components/emoji-button.mdx
Normal file
@ -0,0 +1,7 @@
|
||||
import { Meta } from '@storybook/addon-docs';
|
||||
import * as EmojiButtonStories from './emoji-button.stories.tsx';
|
||||
import Template from './Template.mdx';
|
||||
|
||||
<Meta of={EmojiButtonStories} />
|
||||
|
||||
<Template />
|
1
examples/external-docs/pages/button.mdx
Symbolic link
1
examples/external-docs/pages/button.mdx
Symbolic link
@ -0,0 +1 @@
|
||||
../components/button.mdx
|
1
examples/external-docs/pages/emoji-button.mdx
Symbolic link
1
examples/external-docs/pages/emoji-button.mdx
Symbolic link
@ -0,0 +1 @@
|
||||
../components/emoji-button.mdx
|
@ -41,20 +41,12 @@ type StoryProps = BaseProps & {
|
||||
|
||||
type ArgsTableProps = BaseProps | OfProps | ComponentsProps | StoryProps;
|
||||
|
||||
const getContext = (storyId: string, context: DocsContextProps) => {
|
||||
const story = context.storyById(storyId);
|
||||
if (!story) {
|
||||
throw new Error(`Unknown story: ${storyId}`);
|
||||
}
|
||||
return context.getStoryContext(story);
|
||||
};
|
||||
|
||||
const useArgs = (
|
||||
storyId: string,
|
||||
context: DocsContextProps
|
||||
): [Args, (args: Args) => void, (argNames?: string[]) => void] => {
|
||||
const channel = addons.getChannel();
|
||||
const storyContext = getContext(storyId, context);
|
||||
const storyContext = context.getStoryContext(context.storyById());
|
||||
|
||||
const [args, setArgs] = useState(storyContext.args);
|
||||
useEffect(() => {
|
||||
@ -79,7 +71,7 @@ const useArgs = (
|
||||
|
||||
const useGlobals = (storyId: string, context: DocsContextProps): [Globals] => {
|
||||
const channel = addons.getChannel();
|
||||
const storyContext = getContext(storyId, context);
|
||||
const storyContext = context.getStoryContext(context.storyById());
|
||||
const [globals, setGlobals] = useState(storyContext.globals);
|
||||
|
||||
useEffect(() => {
|
||||
@ -95,11 +87,11 @@ const useGlobals = (storyId: string, context: DocsContextProps): [Globals] => {
|
||||
|
||||
export const extractComponentArgTypes = (
|
||||
component: Component,
|
||||
{ id, storyById }: DocsContextProps,
|
||||
context: DocsContextProps,
|
||||
include?: PropDescriptor,
|
||||
exclude?: PropDescriptor
|
||||
): StrictArgTypes => {
|
||||
const { parameters } = storyById(id);
|
||||
const { parameters } = context.storyById();
|
||||
const { extractArgTypes }: { extractArgTypes: ArgTypesExtractor } = parameters.docs || {};
|
||||
if (!extractArgTypes) {
|
||||
throw new Error(ArgsTableError.ARGS_UNSUPPORTED);
|
||||
@ -114,13 +106,10 @@ const isShortcut = (value?: string) => {
|
||||
return value && [CURRENT_SELECTION, PRIMARY_STORY].includes(value);
|
||||
};
|
||||
|
||||
export const getComponent = (
|
||||
props: ArgsTableProps = {},
|
||||
{ id, storyById }: DocsContextProps
|
||||
): Component => {
|
||||
export const getComponent = (props: ArgsTableProps = {}, context: DocsContextProps): Component => {
|
||||
const { of } = props as OfProps;
|
||||
const { story } = props as StoryProps;
|
||||
const { component } = storyById(id);
|
||||
const { component } = context.storyById();
|
||||
if (isShortcut(of) || isShortcut(story)) {
|
||||
return component || null;
|
||||
}
|
||||
@ -149,7 +138,7 @@ export const StoryTable: FC<
|
||||
StoryProps & { component: Component; subcomponents: Record<string, Component> }
|
||||
> = (props) => {
|
||||
const context = useContext(DocsContext);
|
||||
const { id: currentId, componentStories } = context;
|
||||
const { id: currentId } = context;
|
||||
const {
|
||||
story: storyName,
|
||||
component,
|
||||
@ -167,7 +156,7 @@ export const StoryTable: FC<
|
||||
break;
|
||||
}
|
||||
case PRIMARY_STORY: {
|
||||
const primaryStory = componentStories()[0];
|
||||
const primaryStory = context.storyById();
|
||||
storyId = primaryStory.id;
|
||||
break;
|
||||
}
|
||||
@ -228,11 +217,10 @@ export const ComponentsTable: FC<ComponentsProps> = (props) => {
|
||||
|
||||
export const ArgsTable: FC<ArgsTableProps> = (props) => {
|
||||
const context = useContext(DocsContext);
|
||||
const { id, storyById } = context;
|
||||
const {
|
||||
parameters: { controls },
|
||||
subcomponents,
|
||||
} = storyById(id);
|
||||
} = context.storyById();
|
||||
|
||||
const { include, exclude, components, sort: sortProp } = props as ComponentsProps;
|
||||
const { story: storyName } = props as StoryProps;
|
||||
|
@ -32,9 +32,9 @@ const noDescription = (component?: Component): string | null => null;
|
||||
|
||||
export const getDescriptionProps = (
|
||||
{ of, type, markdown, children }: DescriptionProps,
|
||||
{ id, storyById }: DocsContextProps<any>
|
||||
{ storyById }: DocsContextProps<any>
|
||||
): PureDescriptionProps => {
|
||||
const { component, parameters } = storyById(id);
|
||||
const { component, parameters } = storyById();
|
||||
if (children || markdown) {
|
||||
return { markdown: children || markdown };
|
||||
}
|
||||
|
@ -94,12 +94,7 @@ export const getSourceProps = (
|
||||
sourceContext: SourceContextProps
|
||||
): PureSourceProps & SourceStateProps => {
|
||||
const { id: currentId, storyById } = docsContext;
|
||||
let parameters = {} as Parameters;
|
||||
try {
|
||||
({ parameters } = storyById(currentId));
|
||||
} catch (err) {
|
||||
// TODO: in external mode, there is no "current"
|
||||
}
|
||||
const { parameters } = storyById();
|
||||
|
||||
const codeProps = props as CodeProps;
|
||||
const singleProps = props as SingleSourceProps;
|
||||
|
Loading…
x
Reference in New Issue
Block a user