mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-04-27 03:33:43 +03:00
* chore(deps): update dependency prettier to v3 * Format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import React from 'react';
|
|
import { createDevTools } from '@redux-devtools/core';
|
|
import { DockMonitor } from '@redux-devtools/dock-monitor';
|
|
import {
|
|
InspectorMonitor,
|
|
base16Themes,
|
|
} from '@redux-devtools/inspector-monitor';
|
|
import { useLocation } from 'react-router-dom';
|
|
import getOptions from './getOptions';
|
|
|
|
const CustomComponent = () => (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
width: '100%',
|
|
height: '100%',
|
|
minHeight: '20rem',
|
|
}}
|
|
>
|
|
<div>Custom Tab Content</div>
|
|
</div>
|
|
);
|
|
|
|
export const getDevTools = (location: { search: string }) =>
|
|
createDevTools(
|
|
<DockMonitor
|
|
defaultIsVisible
|
|
toggleVisibilityKey="ctrl-h"
|
|
changePositionKey="ctrl-q"
|
|
changeMonitorKey="ctrl-m"
|
|
>
|
|
<InspectorMonitor
|
|
theme={getOptions(location).theme as keyof typeof base16Themes}
|
|
invertTheme={!getOptions(location).dark}
|
|
supportImmutable={getOptions(location).supportImmutable}
|
|
tabs={(defaultTabs) => [
|
|
{
|
|
name: 'Custom Tab',
|
|
component: CustomComponent,
|
|
},
|
|
...defaultTabs,
|
|
]}
|
|
/>
|
|
</DockMonitor>,
|
|
);
|
|
|
|
export function ConnectedDevTools() {
|
|
const location = useLocation();
|
|
const DevTools = getDevTools(location);
|
|
return <DevTools />;
|
|
}
|