request/response pane styling fixes (#5025)

This commit is contained in:
lohit
2025-07-03 13:35:05 +05:30
committed by GitHub
parent df1c5f9363
commit 1a93eabf01
9 changed files with 16 additions and 20 deletions

View File

@@ -267,7 +267,7 @@ const RequestTabPanel = () => {
<div className="dragbar-handle" />
</div>
<section className="response-pane flex-grow">
<section className="response-pane flex-grow overflow-x-auto">
<ResponsePane item={item} collection={collection} response={item.response} />
</section>
</section>

View File

@@ -1,7 +1,7 @@
import QueryResult from "components/ResponsePane/QueryResult/index";
import { useState } from "react";
const BodyBlock = ({ collection, data, dataBuffer, headers, error, item, width }) => {
const BodyBlock = ({ collection, data, dataBuffer, headers, error, item }) => {
const [isBodyCollapsed, toggleBody] = useState(true);
return (
<div className="collapsible-section">
@@ -17,7 +17,6 @@ const BodyBlock = ({ collection, data, dataBuffer, headers, error, item, width }
<QueryResult
item={item}
collection={collection}
width={width}
data={data}
dataBuffer={dataBuffer}
headers={headers}

View File

@@ -16,7 +16,7 @@ const safeStringifyJSONIfNotString = (obj) => {
};
const Request = ({ collection, request, item, width }) => {
const Request = ({ collection, request, item }) => {
let { url, headers, data, dataBuffer, error } = request || {};
if (!dataBuffer) {
dataBuffer = Buffer.from(safeStringifyJSONIfNotString(data))?.toString('base64');
@@ -33,7 +33,7 @@ const Request = ({ collection, request, item, width }) => {
<Headers headers={headers} type={'request'} />
{/* Body */}
<BodyBlock collection={collection} data={data} dataBuffer={dataBuffer} error={error} headers={headers} item={item} width={width} />
<BodyBlock collection={collection} data={data} dataBuffer={dataBuffer} error={error} headers={headers} item={item} />
</div>
)
}

View File

@@ -16,7 +16,7 @@ const safeStringifyJSONIfNotString = (obj) => {
}
};
const Response = ({ collection, response, item, width }) => {
const Response = ({ collection, response, item }) => {
let { status, statusCode, statusText, dataBuffer, headers, data, error } = response || {};
if (!dataBuffer) {
dataBuffer = Buffer.from(safeStringifyJSONIfNotString(data))?.toString('base64');
@@ -35,7 +35,7 @@ const Response = ({ collection, response, item, width }) => {
<Headers headers={headers} type={'response'} />
{/* Body */}
<BodyBlock collection={collection} data={data} dataBuffer={dataBuffer} error={error} headers={headers} item={item} width={width} />
<BodyBlock collection={collection} data={data} dataBuffer={dataBuffer} error={error} headers={headers} item={item} />
</div>
)
}

View File

@@ -6,7 +6,7 @@ import Method from "./Common/Method/index";
import Status from "./Common/Status/index";
import { RelativeTime } from "./Common/Time/index";
const TimelineItem = ({ timestamp, request, response, item, collection, width, isOauth2 }) => {
const TimelineItem = ({ timestamp, request, response, item, collection, isOauth2 }) => {
const [isCollapsed, _toggleCollapse] = useState(false);
const [activeTab, setActiveTab] = useState('request');
const toggleCollapse = () => _toggleCollapse(prev => !prev);
@@ -57,15 +57,15 @@ const TimelineItem = ({ timestamp, request, response, item, collection, width, i
</div>
{/* Tab Content */}
<div className="tab-content">
<div className="tab-content break-all">
{/* Request Tab */}
{activeTab === 'request' && (
<Request request={request} item={item} collection={collection} width={width} />
<Request request={request} item={item} collection={collection} />
)}
{/* Response Tab */}
{activeTab === 'response' && (
<Response response={response} item={item} collection={collection} width={width} />
<Response response={response} item={item} collection={collection} />
)}
{/* Network Logs Tab */}

View File

@@ -41,7 +41,7 @@ const getEffectiveAuthSource = (collection, item) => {
return effectiveSource;
};
const Timeline = ({ collection, item, width }) => {
const Timeline = ({ collection, item }) => {
// Get the effective auth source if auth mode is inherit
const authSource = getEffectiveAuthSource(collection, item);
@@ -62,7 +62,6 @@ const Timeline = ({ collection, item, width }) => {
return (
<StyledWrapper
className="pb-4 w-full flex flex-grow flex-col"
style={{ maxWidth: width - 60, overflowWrap: 'break-word' }}
>
{combinedTimeline.map((event, index) => {
if (event.type === 'request') {
@@ -76,7 +75,6 @@ const Timeline = ({ collection, item, width }) => {
response={response}
item={item}
collection={collection}
width={width}
/>
</div>
);
@@ -101,7 +99,6 @@ const Timeline = ({ collection, item, width }) => {
response={data?.response}
item={item}
collection={collection}
width={width - 50}
isOauth2={true}
/>
</div>

View File

@@ -189,7 +189,7 @@ const ResponsePane = ({ item, collection }) => {
onClose={() => setShowScriptErrorCard(false)}
/>
)}
<div className='flex-1 min-h-[200px]'>
<div className='flex-1 min-h-[200px] overflow-y-auto'>
{!item?.response ? (
focusedTab?.responsePaneTab === "timeline" && requestTimeline?.length ? (
<Timeline

View File

@@ -14,10 +14,10 @@ const StyledWrapper = styled.div`
min-height: 0;
}
/* Grid container - enforces boundaries */
.grid-boundary {
/* flex container - enforces boundaries */
.flex-boundary {
width: 100%;
display: grid;
display: flex;
overflow-y: auto;
}
`;

View File

@@ -5,7 +5,7 @@ const HeightBoundContainer = ({children}) => {
return (
<StyledWrapper>
<div className="height-constraint">
<div className="grid-boundary">
<div className="flex-boundary">
{children}
</div>
</div>