mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-17 14:37:05 +01:00
121 lines
4.2 KiB
TypeScript
121 lines
4.2 KiB
TypeScript
import classnames from 'classnames';
|
|
import { useCallback, useMemo } from 'react';
|
|
import { useActiveRequest } from '../hooks/useActiveRequest';
|
|
import { useKeyValue } from '../hooks/useKeyValue';
|
|
import { useUpdateRequest } from '../hooks/useUpdateRequest';
|
|
import { tryFormatJson } from '../lib/formatters';
|
|
import type { HttpHeader } from '../lib/models';
|
|
import { Editor } from './core/Editor';
|
|
import type { TabItem } from './core/Tabs/Tabs';
|
|
import { TabContent, Tabs } from './core/Tabs/Tabs';
|
|
import { GraphQLEditor } from './GraphQLEditor';
|
|
import { HeaderEditor } from './HeaderEditor';
|
|
import { ParametersEditor } from './ParameterEditor';
|
|
import { UrlBar } from './UrlBar';
|
|
|
|
interface Props {
|
|
fullHeight: boolean;
|
|
className?: string;
|
|
}
|
|
|
|
export function RequestPane({ fullHeight, className }: Props) {
|
|
const activeRequest = useActiveRequest();
|
|
const activeRequestId = activeRequest?.id ?? null;
|
|
const updateRequest = useUpdateRequest(activeRequestId);
|
|
const activeTab = useKeyValue<string>({
|
|
key: ['active_request_body_tab', activeRequestId ?? 'n/a'],
|
|
defaultValue: 'body',
|
|
});
|
|
|
|
const tabs: TabItem[] = useMemo(
|
|
() => [
|
|
{
|
|
value: 'body',
|
|
label: activeRequest?.bodyType ?? 'NoBody',
|
|
options: {
|
|
onValueChange: (t) => updateRequest.mutate({ bodyType: t.value }),
|
|
value: activeRequest?.bodyType ?? 'nobody',
|
|
items: [
|
|
{ label: 'No Body', value: 'nobody' },
|
|
{ label: 'JSON', value: 'json' },
|
|
{ label: 'XML', value: 'xml' },
|
|
{ label: 'GraphQL', value: 'graphql' },
|
|
],
|
|
},
|
|
},
|
|
{ value: 'params', label: 'Params' },
|
|
{ value: 'headers', label: 'Headers' },
|
|
{ value: 'auth', label: 'Auth' },
|
|
],
|
|
[activeRequest?.bodyType],
|
|
);
|
|
|
|
const handleBodyChange = useCallback((body: string) => updateRequest.mutate({ body }), []);
|
|
const handleHeadersChange = useCallback(
|
|
(headers: HttpHeader[]) => updateRequest.mutate({ headers }),
|
|
[],
|
|
);
|
|
|
|
return (
|
|
<div className={classnames(className, 'py-3 grid grid-rows-[auto_minmax(0,1fr)] grid-cols-1')}>
|
|
{activeRequest && (
|
|
<>
|
|
<UrlBar className="pl-3" request={activeRequest} />
|
|
<Tabs
|
|
value={activeTab.value}
|
|
onChangeValue={activeTab.set}
|
|
tabs={tabs}
|
|
className="mt-2"
|
|
tabListClassName="pl-3"
|
|
label="Request body"
|
|
>
|
|
<TabContent value="headers">
|
|
<HeaderEditor
|
|
key={activeRequestId}
|
|
headers={activeRequest.headers}
|
|
onChange={handleHeadersChange}
|
|
/>
|
|
</TabContent>
|
|
<TabContent value="params">
|
|
<ParametersEditor key={activeRequestId} parameters={[]} onChange={() => null} />
|
|
</TabContent>
|
|
<TabContent value="body" className="pl-3 mt-1">
|
|
{activeRequest.bodyType === 'json' ? (
|
|
<Editor
|
|
key={activeRequest.id}
|
|
useTemplating
|
|
className="!bg-gray-50"
|
|
heightMode={fullHeight ? 'full' : 'auto'}
|
|
defaultValue={activeRequest.body ?? ''}
|
|
contentType="application/json"
|
|
onChange={handleBodyChange}
|
|
format={(v) => tryFormatJson(v)}
|
|
/>
|
|
) : activeRequest.bodyType === 'xml' ? (
|
|
<Editor
|
|
key={activeRequest.id}
|
|
useTemplating
|
|
className="!bg-gray-50"
|
|
heightMode={fullHeight ? 'full' : 'auto'}
|
|
defaultValue={activeRequest.body ?? ''}
|
|
contentType="text/xml"
|
|
onChange={handleBodyChange}
|
|
/>
|
|
) : activeRequest.bodyType === 'graphql' ? (
|
|
<GraphQLEditor
|
|
key={activeRequest.id}
|
|
className="!bg-gray-50"
|
|
defaultValue={activeRequest?.body ?? ''}
|
|
onChange={handleBodyChange}
|
|
/>
|
|
) : (
|
|
<div className="h-full text-gray-400 flex items-center justify-center">No Body</div>
|
|
)}
|
|
</TabContent>
|
|
</Tabs>
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|