
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@redux-devtools/dock-monitor
Advanced tools
A resizable and movable dock for Redux DevTools monitors
A resizable and movable dock for Redux DevTools.
Powered by React Dock.
yarn add @redux-devtools/dock-monitor
Wrap any other Redux DevTools monitor in DockMonitor
to make it dockable to different screen edges.
For example, you can use it together with LogMonitor
:
containers/DevTools.js
import React from 'react';
import { createDevTools } from '@redux-devtools/core';
import { LogMonitor } from '@redux-devtools/log-monitor';
import { SliderMonitor } from '@redux-devtools/slider-monitor';
import { DockMonitor } from '@redux-devtools/dock-monitor';
export default createDevTools(
<DockMonitor
toggleVisibilityKey="ctrl-h"
changePositionKey="ctrl-q"
changeMonitorKey="ctrl-m"
>
<LogMonitor />
<SliderMonitor />
</DockMonitor>,
);
Read how to start using Redux DevTools.
You can put more than one monitor inside <DockMonitor>
. There will still be a single dock, but you will be able to switch between different monitors by pressing a key specified as changeMonitorKey
prop.
Name | Description |
---|---|
children | Any valid Redux DevTools monitor. Required. |
toggleVisibilityKey | A key or a key combination that toggles the dock visibility. Must be recognizable by parse-key (for example, 'ctrl-h' ). Required. |
changePositionKey | A key or a key combination that toggles the dock position. Must be recognizable by parse-key (for example, 'ctrl-w' ). Required. |
changeMonitorKey | A key or a key combination that switches the currently visible monitor. Must be recognizable by parse-key (for example, 'ctrl-m' ). Required if you use more than one monitor. |
fluid | When true , the dock size is a fraction of the window size, fixed otherwise. Optional. By default set to true . |
defaultSize | Size of the dock. When fluid is true , a float (0.5 means half the window size). When fluid is false , a width in pixels. Optional. By default set to 0.3 (3/10th of the window size). |
defaultPosition | Where the dock appears on the screen. Valid values: 'left' , 'top' , 'right' , 'bottom' . Optional. By default set to 'right' . |
defaultIsVisible | Defines whether dock should be open by default. A value of true means that it's open when the page/app loads. |
The current size and the position are persisted between sessions with persistState()
enhancer from Redux DevTools.
MIT
FAQs
A resizable and movable dock for Redux DevTools monitors
The npm package @redux-devtools/dock-monitor receives a total of 6,713 weekly downloads. As such, @redux-devtools/dock-monitor popularity was classified as popular.
We found that @redux-devtools/dock-monitor demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.