import { updateSchema } from 'cm6-graphql'; import type { EditorView } from 'codemirror'; import { useCallback, useEffect, useMemo, useRef } from 'react'; import { useIntrospectGraphQL } from '../hooks/useIntrospectGraphQL'; import type { HttpRequest } from '../lib/models'; import { Button } from './core/Button'; import type { EditorProps } from './core/Editor'; import { Editor, formatGraphQL } from './core/Editor'; import { FormattedError } from './core/FormattedError'; import { Separator } from './core/Separator'; import { useDialog } from './DialogContext'; type Props = Pick< EditorProps, 'heightMode' | 'onChange' | 'defaultValue' | 'className' | 'forceUpdateKey' > & { baseRequest: HttpRequest; }; interface GraphQLBody { query: string; variables?: Record; operationName?: string; } export function GraphQLEditor({ defaultValue, onChange, baseRequest, ...extraEditorProps }: Props) { const editorViewRef = useRef(null); const { schema, isLoading, error, refetch } = useIntrospectGraphQL(baseRequest); const { query, variables } = useMemo(() => { if (defaultValue === undefined) { return { query: '', variables: {} }; } try { const p = JSON.parse(defaultValue ?? '{}'); const query = p.query ?? ''; const variables = p.variables; const operationName = p.operationName; return { query, variables, operationName }; } catch (err) { return { query: 'failed to parse' }; } }, [defaultValue]); const handleChange = useCallback( (b: GraphQLBody) => onChange?.(JSON.stringify(b, null, 2)), [onChange], ); const handleChangeQuery = useCallback( (query: string) => handleChange({ query, variables }), [handleChange, variables], ); const handleChangeVariables = useCallback( (variables: string) => { try { handleChange({ query, variables: JSON.parse(variables) }); } catch (e) { // Meh, not much we can do here } }, [handleChange, query], ); // Refetch the schema when the URL changes useEffect(() => { if (editorViewRef.current === null) return; updateSchema(editorViewRef.current, schema); }, [schema]); const dialog = useDialog(); return (
{ dialog.show({ title: 'Introspection Failed', size: 'sm', id: 'introspection-failed', render: () => (
{error ?? 'unknown'}
), }); }} > {error ? 'Introspection Failed' : 'Introspecting'} ) } {...extraEditorProps} />

Variables

); }