mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-19 15:37:08 +01:00
33 lines
938 B
TypeScript
33 lines
938 B
TypeScript
import type { HttpResponse } from '@yaakapp-internal/models';
|
|
import { useMemo } from 'react';
|
|
import { useResponseBodyText } from '../../hooks/useResponseBodyText';
|
|
|
|
interface Props {
|
|
response: HttpResponse;
|
|
}
|
|
|
|
export function WebPageViewer({ response }: Props) {
|
|
const { url } = response;
|
|
const body = useResponseBodyText({ response, filter: null }).data ?? '';
|
|
|
|
const contentForIframe: string | undefined = useMemo(() => {
|
|
if (body.includes('<head>')) {
|
|
return body.replace(/<head>/gi, `<head><base href="${url}"/>`);
|
|
}
|
|
return body;
|
|
}, [url, body]);
|
|
|
|
return (
|
|
<div className="h-full pb-3">
|
|
<iframe
|
|
key={body ? 'has-body' : 'no-body'}
|
|
title="Yaak response preview"
|
|
srcDoc={contentForIframe}
|
|
sandbox="allow-scripts allow-forms"
|
|
referrerPolicy="no-referrer"
|
|
className="h-full w-full rounded-lg border border-border-subtle"
|
|
/>
|
|
</div>
|
|
);
|
|
}
|