Skip to content

Instantly share code, notes, and snippets.

@moomdate
Created October 1, 2024 07:15
Show Gist options
  • Save moomdate/fcdce468c2fd071fd1420bb37f21b8b2 to your computer and use it in GitHub Desktop.
Save moomdate/fcdce468c2fd071fd1420bb37f21b8b2 to your computer and use it in GitHub Desktop.
debugger
import React, {useState} from "react";
import {useSearchParams} from "react-router-dom";
export interface Props<T> {
data: T;
debugParam: string;
}
export const JsonDebugger = <T extends Record<string, any> | string>({data: obj, debugParam}: Props<T>) => {
const [query] = useSearchParams();
const [display, setDisplay] = useState(true)
return (
<>
{
query.get('$debug')?.includes(debugParam) ? (
<>
<div
onClick={() => setDisplay(!display)}
style={{
backgroundColor: '#b3ef4d',
padding: '5px',
borderRadius: '3px 3px 0 0',
borderBottom: '1px solid #e3e3e3',
}}>Debug: {debugParam}</div>
{display ?
<pre style={{
backgroundColor: '#e3e3e3',
borderColor: '#b3ef4d',
padding: '10px',
borderRadius: '0 0 3px 3px',
fontSize: '10px'
}}>
{JSON.stringify(obj, null, 2)}
</pre> : null
}
</>
) : null
}
</>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment