Package Exports
- @storybook/addon-queryparams
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@storybook/addon-queryparams) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
storybook-addon-queryparams
This storybook addon can be helpful if your components need special query parameters to work the way you want them to. It allows you to mock query params per story so that you can easily reproduce different states of your component.
Getting started
First, install the addon.
$ yarn add @storybook/addon-queryparams --devRegister it by adding it in the addons attribute in your main.js file (create this file inside your storybook config directory if needed).
module.exports = {
addons: ['@storybook/addon-queryparams'],
};In your story, add the withQuery decorator and define the query parameters you want to mock:
import React from 'react';
import { Button } from '@storybook/react/demo';
import { withQuery } from '@storybook/addon-queryparams';
export default {
title: 'Button',
component: Button,
decorators: [withQuery],
parameters: {
query: {
mock: 'Hello world!',
},
},
};
export const WithMockedSearch = () => {
const urlParams = new URLSearchParams(document.location.search);
const mockedParam = urlParams.get('mock');
return <div>Mocked value: {mockedParam}</div>;
};Example with storiesOf API
import React from 'react';
import { storiesOf } from '@storybook/react';
storiesOf('button', module)
.addParameters({
query: {
mock: 'Hello World!',
},
})
.add('Prints the mocked parameter', () => {
const urlParams = new URLSearchParams(document.location.search);
const mockedParam = urlParams.get('mock');
return <div>Mocked value: {mockedParam}</div>;
});