mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-08-15 16:12:05 +02:00
107 lines
3.5 KiB
TypeScript
107 lines
3.5 KiB
TypeScript
import type { HttpResponse } from "@yaakapp-internal/models";
|
|
import { useQueryClient } from "@tanstack/react-query";
|
|
import { useCallback } from "react";
|
|
import { useCopyHttpResponse } from "../../hooks/useCopyHttpResponse";
|
|
import { responseBodyTextQuery, useResponseBodyText } from "../../hooks/useResponseBodyText";
|
|
import { useResponseFilter } from "../../hooks/useResponseFilter";
|
|
import { useSaveResponse } from "../../hooks/useSaveResponse";
|
|
import { languageFromContentType } from "../../lib/contentType";
|
|
import { getContentTypeFromHeaders } from "../../lib/model_util";
|
|
import type { EditorProps } from "../core/Editor/Editor";
|
|
import { IconButton } from "../core/IconButton";
|
|
import { EmptyStateText } from "../EmptyStateText";
|
|
import { TextViewer } from "./TextViewer";
|
|
import { WebPageViewer } from "./WebPageViewer";
|
|
|
|
interface Props {
|
|
response: HttpResponse;
|
|
pretty: boolean;
|
|
textViewerClassName?: string;
|
|
}
|
|
|
|
export function HTMLOrTextViewer({ response, pretty, textViewerClassName }: Props) {
|
|
const rawTextBody = useResponseBodyText({ response, filter: null });
|
|
const contentType = getContentTypeFromHeaders(response.headers);
|
|
const language = languageFromContentType(contentType, rawTextBody.data ?? "");
|
|
|
|
if (rawTextBody.isLoading || response.state === "initialized") {
|
|
return null;
|
|
}
|
|
|
|
if (language === "html" && pretty) {
|
|
return <WebPageViewer html={rawTextBody.data ?? ""} baseUrl={response.url} />;
|
|
}
|
|
if (rawTextBody.data == null) {
|
|
return <EmptyStateText>Empty response</EmptyStateText>;
|
|
}
|
|
return (
|
|
<HttpTextViewer
|
|
response={response}
|
|
text={rawTextBody.data}
|
|
language={language}
|
|
pretty={pretty}
|
|
className={textViewerClassName}
|
|
/>
|
|
);
|
|
}
|
|
|
|
interface HttpTextViewerProps {
|
|
response: HttpResponse;
|
|
text: string;
|
|
language: EditorProps["language"];
|
|
pretty: boolean;
|
|
className?: string;
|
|
}
|
|
|
|
function HttpTextViewer({ response, text, language, pretty, className }: HttpTextViewerProps) {
|
|
const queryClient = useQueryClient();
|
|
const filter = useResponseFilter({
|
|
stateKey: `response.body.${response.requestId}`,
|
|
// Shares the display query's cache entry, so the verdict costs no extra RPC
|
|
runFilter: useCallback(
|
|
(f: string) => queryClient.fetchQuery(responseBodyTextQuery({ response, filter: f })),
|
|
[queryClient, response],
|
|
),
|
|
});
|
|
const filteredBody = useResponseBodyText({ response, filter: filter.appliedFilter });
|
|
const saveResponse = useSaveResponse(response);
|
|
const copyResponse = useCopyHttpResponse(response);
|
|
const actionsDisabled = response.state !== "closed" && response.status >= 100;
|
|
|
|
return (
|
|
<TextViewer
|
|
text={text}
|
|
language={language}
|
|
stateKey={`response.body.${response.id}`}
|
|
pretty={pretty}
|
|
className={className}
|
|
footerActions={[
|
|
<IconButton
|
|
key="save"
|
|
size="sm"
|
|
icon="save"
|
|
title="Save response to file"
|
|
disabled={actionsDisabled}
|
|
onClick={() => saveResponse.mutate()}
|
|
className="border !border-border-subtle"
|
|
/>,
|
|
<IconButton
|
|
key="copy"
|
|
size="sm"
|
|
icon="copy"
|
|
title="Copy response body"
|
|
disabled={actionsDisabled}
|
|
onClick={() => copyResponse.mutate()}
|
|
className="border !border-border-subtle"
|
|
/>,
|
|
]}
|
|
filter={filter}
|
|
filterResult={{
|
|
data: filteredBody.data,
|
|
isPending: filteredBody.isPending,
|
|
error: !!filteredBody.error,
|
|
}}
|
|
/>
|
|
);
|
|
}
|