mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-10-29 23:17:26 +03:00
* chore(deps): update dependency eslint-plugin-react-hooks to v7 * Update * Update --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
import { createDevTools } from '@redux-devtools/core';
|
|
import { DockMonitor } from '@redux-devtools/dock-monitor';
|
|
import { InspectorMonitor } from '@redux-devtools/inspector-monitor';
|
|
import type { Base16ThemeName } 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 Base16ThemeName}
|
|
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);
|
|
// eslint-disable-next-line react-hooks/static-components
|
|
return <DevTools />;
|
|
}
|