mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 13:43:39 +01:00
30 lines
864 B
TypeScript
30 lines
864 B
TypeScript
import type { CSSProperties } from 'react';
|
|
import React from 'react';
|
|
import type { HttpRequest } from '@yaakapp-internal/models';
|
|
import { SplitLayout } from './core/SplitLayout';
|
|
import { HttpRequestPane } from './HttpRequestPane';
|
|
import { HttpResponsePane } from './HttpResponsePane';
|
|
|
|
interface Props {
|
|
activeRequest: HttpRequest;
|
|
style: CSSProperties;
|
|
}
|
|
|
|
export function HttpRequestLayout({ activeRequest, style }: Props) {
|
|
return (
|
|
<SplitLayout
|
|
name="http_layout"
|
|
className="p-3 gap-1.5"
|
|
style={style}
|
|
firstSlot={({ orientation, style }) => (
|
|
<HttpRequestPane
|
|
style={style}
|
|
activeRequest={activeRequest}
|
|
fullHeight={orientation === 'horizontal'}
|
|
/>
|
|
)}
|
|
secondSlot={({ style }) => <HttpResponsePane activeRequestId={activeRequest.id} style={style} />}
|
|
/>
|
|
);
|
|
}
|