mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
import React from 'react';
|
|
import GraphiQL from 'graphiql';
|
|
import { fetch } from 'global';
|
|
import 'graphiql/graphiql.css';
|
|
|
|
import FullScreen from './components/FullScreen';
|
|
|
|
const FETCH_OPTIONS = {
|
|
method: 'post',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
};
|
|
|
|
function getDefautlFetcher(url) {
|
|
return params => {
|
|
const body = JSON.stringify(params);
|
|
const options = Object.assign({ body }, FETCH_OPTIONS);
|
|
return fetch(url, options).then(res => res.json());
|
|
};
|
|
}
|
|
|
|
function reIndentQuery(query) {
|
|
const lines = query.split('\n');
|
|
const spaces = lines[lines.length - 1].length - 1;
|
|
return lines.map((l, i) => (i === 0 ? l : l.slice(spaces))).join('\n');
|
|
}
|
|
|
|
export function setupGraphiQL(config) {
|
|
return (_query, variables = '{}') => {
|
|
const query = reIndentQuery(_query);
|
|
const fetcher = config.fetcher || getDefautlFetcher(config.url);
|
|
return () => (
|
|
<FullScreen>
|
|
<GraphiQL query={query} variables={variables} fetcher={fetcher} />
|
|
</FullScreen>
|
|
);
|
|
};
|
|
}
|