mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-21 23:27:54 +01:00
26 lines
650 B
TypeScript
26 lines
650 B
TypeScript
import classNames from 'classnames';
|
|
import { useResponseBodyText } from '../../hooks/useResponseBodyText';
|
|
import type { HttpResponse } from '../../lib/models';
|
|
import { JsonAttributeTree } from '../core/JsonAttributeTree';
|
|
|
|
interface Props {
|
|
response: HttpResponse;
|
|
className?: string;
|
|
}
|
|
|
|
export function JsonViewer({ response, className }: Props) {
|
|
const rawBody = useResponseBodyText(response) ?? '';
|
|
let parsed = {};
|
|
try {
|
|
parsed = JSON.parse(rawBody);
|
|
} catch (e) {
|
|
// foo
|
|
}
|
|
|
|
return (
|
|
<div className={classNames(className, 'overflow-x-auto h-full')}>
|
|
<JsonAttributeTree attrValue={parsed} />
|
|
</div>
|
|
);
|
|
}
|