Skip to content
Danny's Blog
Twitter

Automatic args in React Native Storybook

react native, storybook, typescript, react1 min read

This is a quick guide on how to setup automatic args for React Native Storybook V6 (currently in beta).

If you've used the web version of Storybook you'll know that your types are used to infer the types of your args. This is done using a transform called docgen in the Storybook webpack bundle process.

Docgen for React Native?

In React Native Storybook you might have noticed that this doesn't happen by default. That's because we don't bundle a separate app like in the web so it's not possible to insert a transform into the bundling of the app. In order to do this you the user need to add it to your configuration.

Recently I worked with Michael Shillman one of the core maintainers of Storybook to find a way to make this work for React Native. We came up with something that works for typescript types but requires some setup from user (for the reasons mentioned above).

The setup

To use docgen in React Native Storybook you will need at least version 6.0.1-beta.10 and you will want to have types for your component props.

Then you will want to install these packages:

1yarn add -D @storybook/react @storybook/docs-tools babel-plugin-react-docgen-typescript

Then add the docgen plugin to your babel config:

1plugins: [['babel-plugin-react-docgen-typescript', { exclude: 'node_modules' }]],

Now add the following code to Storybook.tsx

1import { extractArgTypes } from "@storybook/react/dist/modern/client/docs/extractArgTypes";
2import { addArgTypesEnhancer, addParameters } from "@storybook/react-native";
3import { enhanceArgTypes } from "@storybook/docs-tools";
4
5addArgTypesEnhancer(enhanceArgTypes);
6addParameters({
7 docs: {
8 extractArgTypes,
9 },
10});

You can also add it to another file and import it from Storybook.tsx.

Once this is done then you should have Args and ArgTypes without needing to manually specify them.

Thanks for reading! Please try it out and let me know if it worked for you.

twitter: Danny_H_W github: dannyhw

Shoutout to @mshilman for helping make this possible.