From bcb77d979d817e1e609adb4d007bbbcc3f61efbd Mon Sep 17 00:00:00 2001 From: Tom van der Lee Date: Thu, 30 Dec 2021 09:51:00 +0100 Subject: Prepare for github --- src/components/Content/Content.tsx | 100 +++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 src/components/Content/Content.tsx (limited to 'src/components/Content/Content.tsx') diff --git a/src/components/Content/Content.tsx b/src/components/Content/Content.tsx new file mode 100644 index 0000000..a7b5949 --- /dev/null +++ b/src/components/Content/Content.tsx @@ -0,0 +1,100 @@ +import styles from "~components/Details/Details.module.scss"; +import * as React from "react"; +import classNames from "classnames"; +import {RequestPayload, ResponsePayload} from "~hooks/useRequests"; +import { + Dispatch, + forwardRef, SetStateAction, + useEffect, + useImperativeHandle, + useMemo, + useRef, + useState +} from "react"; +import ReactJson from 'react-json-view'; +import styles from './Content.module.scss'; + +interface ContentProps { + data: RequestPayload | ResponsePayload + setRaw: Dispatch> + raw?: boolean +} + +export default function Content({ raw, setRaw, ...props }: ContentProps): JSX.Element { + return ( +
+
+ setRaw(!raw)}/> + +
+
+ {(() => { + try { + return ContentBody({ ...props, raw }) + } catch { + return ( +
+

Body could not be rendered

+ setRaw(true)}>View raw +
+ ) + } + })()} +
+
+ ) +}; + +function ContentBody({ data, raw = false }: Omit) { + const contentType = useMemo(() => { + if (raw) { + return ''; + } + + const [_, type] = ( + Object + .entries(data.headers) + .find(([key]) => key.toLowerCase() === 'content-type') + ); + + return type.toLowerCase().split(';')[0]; + }, [data, raw]); + + if (raw) { + return
{atob(data.body)}
+ } + + if (['application/pdf', 'text/html'].includes(contentType)) { + return