Files
hetty/admin/src/components/reqlog/LogDetail.tsx

81 lines
1.6 KiB
TypeScript
Raw Normal View History

import { gql, useQuery } from "@apollo/client";
2022-01-28 20:20:15 +01:00
import { Box, Grid, Paper, CircularProgress } from "@mui/material";
import ResponseDetail from "./ResponseDetail";
import RequestDetail from "./RequestDetail";
2022-01-28 20:20:15 +01:00
import Alert from "@mui/lab/Alert";
const HTTP_REQUEST_LOG = gql`
query HttpRequestLog($id: ID!) {
httpRequestLog(id: $id) {
id
method
url
proto
headers {
key
value
}
body
response {
proto
headers {
key
value
}
statusCode
statusReason
body
}
}
}
`;
interface Props {
2022-01-21 11:45:54 +01:00
requestId: string;
}
function LogDetail({ requestId: id }: Props): JSX.Element {
const { loading, error, data } = useQuery(HTTP_REQUEST_LOG, {
variables: { id },
});
2020-09-23 18:10:32 +02:00
if (loading) {
return <CircularProgress />;
}
if (error) {
2022-01-28 20:20:15 +01:00
return <Alert severity="error">Error fetching logs details: {error.message}</Alert>;
2020-09-23 18:10:32 +02:00
}
2020-09-23 23:43:20 +02:00
if (!data.httpRequestLog) {
return (
<Alert severity="warning">
Request <strong>{id}</strong> was not found.
</Alert>
);
}
const { method, url, proto, headers, body, response } = data.httpRequestLog;
return (
<div>
<Grid container item spacing={2}>
<Grid item xs={6}>
<Box component={Paper}>
<RequestDetail request={{ method, url, proto, headers, body }} />
</Box>
</Grid>
<Grid item xs={6}>
{response && (
<Box component={Paper}>
<ResponseDetail response={response} />
</Box>
)}
</Grid>
</Grid>
</div>
);
}
export default LogDetail;