mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
# Conflicts: # .eslintignore # .travis.yml # addons/actions/src/containers/ActionLogger/index.js # addons/centered/package.json # addons/graphql/package.json # addons/info/src/components/PropTable.js # addons/info/src/components/Props.js # addons/knobs/package.json # addons/knobs/src/components/Panel.js # addons/notes/package.json # addons/notes/src/index.js # addons/notes/src/register.js # addons/storyshots/package.json # addons/storyshots/src/index.js # app/react-native/package.json # app/react/package.json # examples/cra-storybook/package.json # examples/cra-storybook/src/stories/Welcome.js # examples/test-cra/src/stories/Button.js # examples/test-cra/src/stories/Welcome.js # lib/channel-postmessage/package.json # lib/channel-websocket/package.json # lib/cli/bin/generate.js # lib/cli/generators/METEOR/index.js # lib/cli/generators/REACT/index.js # lib/cli/generators/REACT/template/stories/index.js # lib/cli/generators/REACT_NATIVE/index.js # lib/cli/generators/REACT_SCRIPTS/index.js # lib/cli/generators/REACT_SCRIPTS/template/src/stories/Welcome.js # lib/cli/generators/WEBPACK_REACT/index.js # lib/cli/lib/helpers.js # lib/cli/package.json # package.json
Storybook GraphiQL Addon
Storybook GraphiQL Addon can be used to display the GraphiQL IDE with example queries in Storybook.
This addon works with Storybook for: React.
Getting Started
First, install the addon
npm install -D @storybook/addon-graphql
Import the setupGraphiQL
function and use it to create the graphiql helper with a base url.
import { storiesOf } from '@storybook/react'
import { setupGraphiQL } from '@storybook/addon-graphql'
// setup the graphiql helper which can be used with the add method later
const graphiql = setupGraphiQL({ url: 'http://localhost:3000/graphql' });
storiesOf('GraphQL Demo', module)
.add('get user info', graphiql(`{
user(id: "1") {
name
}
}`));
Tip: try creating the helper in another file and import the configured graphiql helper from it
Advanced Setup
The setupGraphiQL
function also accepts a fetcher parameter which can be used to change how graphiql gets data. If the fetcher parameter is not given, it'll create a fetcher which uses the fetch
api to make requests. The above example can also be written using a custom fetcher.
import { storiesOf } from '@storybook/react'
import { setupGraphiQL } from '@storybook/addon-graphql'
const fetcher = function (params) {
const options = {
method: 'post',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(params),
};
return fetch(url, options).then(res => res.json());
};
// create the helper with a custom fetcher
const graphiql = setupGraphiQL({ fetcher });
storiesOf('GraphQL Demo', module)
.add('get user info', graphiql(`{
user(id: "1") {
name
}
}`));