mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
import React, { FunctionComponent } from 'react';
|
|
import GraphiQL from 'graphiql';
|
|
import 'graphiql/graphiql.css';
|
|
|
|
import { Consumer, Combo } from '@storybook/api';
|
|
|
|
import { PARAM_KEY } from '.';
|
|
import { reIndentQuery, getDefaultFetcher } from './shared';
|
|
|
|
interface GQLProps {
|
|
active: boolean;
|
|
}
|
|
|
|
const GQL: FunctionComponent<GQLProps> = ({ active }) => {
|
|
return active ? (
|
|
<Consumer>
|
|
{({ api, state }: Combo) => {
|
|
const story = api.getData(state.storyId);
|
|
const parameters = story ? api.getParameters(story.id, PARAM_KEY) : null;
|
|
|
|
if (parameters) {
|
|
const query = reIndentQuery(parameters.query);
|
|
const variables = parameters.variables || '{}';
|
|
const url = parameters.url || '';
|
|
const fetcher = parameters.fetcher || getDefaultFetcher(url);
|
|
|
|
return <GraphiQL query={query} variables={variables} fetcher={fetcher} />;
|
|
}
|
|
return <div>You have not configured GraphiQL yet</div>;
|
|
}}
|
|
</Consumer>
|
|
) : null;
|
|
};
|
|
|
|
export default GQL;
|