mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Start
This commit is contained in:
parent
02e95fc724
commit
251c0dfed9
|
@ -15,7 +15,7 @@ It shows a real-time view of the store aka the current state of the app.
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
```
|
```
|
||||||
yarn add --dev redux-devtools-chart-monitor
|
yarn add redux-devtools-chart-monitor
|
||||||
```
|
```
|
||||||
|
|
||||||
### Usage
|
### Usage
|
||||||
|
|
|
@ -46,15 +46,15 @@
|
||||||
"redux-devtools-themes": "^1.0.0"
|
"redux-devtools-themes": "^1.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@redux-devtools/core": "^3.7.0",
|
||||||
"@types/react": "^16.9.46",
|
"@types/react": "^16.9.46",
|
||||||
"react": "^16.13.1",
|
"react": "^16.13.1",
|
||||||
"redux": "^4.0.5",
|
"redux": "^4.0.5"
|
||||||
"redux-devtools": "^3.7.0"
|
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
"@redux-devtools/core": "^3.0.0",
|
||||||
"@types/react": "^16.3.18",
|
"@types/react": "^16.3.18",
|
||||||
"react": "^16.3.0",
|
"react": "^16.3.0",
|
||||||
"redux": "^3.4.0 || ^4.0.0",
|
"redux": "^3.4.0 || ^4.0.0"
|
||||||
"redux-devtools": "^3.0.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@ import React, { Component, createRef } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { tree } from 'd3-state-visualizer';
|
import { tree } from 'd3-state-visualizer';
|
||||||
import { Action, Dispatch } from 'redux';
|
import { Action, Dispatch } from 'redux';
|
||||||
import { LiftedAction, LiftedState } from 'redux-devtools';
|
import { LiftedAction, LiftedState } from '@redux-devtools/core';
|
||||||
import * as themes from 'redux-devtools-themes';
|
import * as themes from 'redux-devtools-themes';
|
||||||
import { Base16Theme } from 'react-base16-styling';
|
import { Base16Theme } from 'react-base16-styling';
|
||||||
import { ChartMonitorState } from './reducers';
|
import { ChartMonitorState } from './reducers';
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
import React, { CSSProperties, PureComponent } from 'react';
|
import React, { CSSProperties, PureComponent } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import * as themes from 'redux-devtools-themes';
|
import * as themes from 'redux-devtools-themes';
|
||||||
import { ActionCreators, LiftedAction, LiftedState } from 'redux-devtools';
|
import {
|
||||||
|
ActionCreators,
|
||||||
|
LiftedAction,
|
||||||
|
LiftedState,
|
||||||
|
} from '@redux-devtools/core';
|
||||||
import deepmerge from 'deepmerge';
|
import deepmerge from 'deepmerge';
|
||||||
import { Action, Dispatch } from 'redux';
|
import { Action, Dispatch } from 'redux';
|
||||||
import { Base16Theme } from 'react-base16-styling';
|
import { Base16Theme } from 'react-base16-styling';
|
||||||
|
|
|
@ -37,6 +37,7 @@
|
||||||
"prepublishOnly": "npm run clean && npm run build"
|
"prepublishOnly": "npm run clean && npm run build"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@redux-devtools/core": "^3.7.0",
|
||||||
"d3-state-visualizer": "^1.3.4",
|
"d3-state-visualizer": "^1.3.4",
|
||||||
"devui": "^1.0.0-6",
|
"devui": "^1.0.0-6",
|
||||||
"get-params": "^0.1.2",
|
"get-params": "^0.1.2",
|
||||||
|
@ -52,7 +53,6 @@
|
||||||
"react-is": "^16.13.1",
|
"react-is": "^16.13.1",
|
||||||
"react-redux": "^7.2.1",
|
"react-redux": "^7.2.1",
|
||||||
"redux": "^4.0.5",
|
"redux": "^4.0.5",
|
||||||
"redux-devtools": "^3.7.0",
|
|
||||||
"redux-devtools-chart-monitor": "^1.7.2",
|
"redux-devtools-chart-monitor": "^1.7.2",
|
||||||
"redux-devtools-inspector-monitor": "^0.14.0",
|
"redux-devtools-inspector-monitor": "^0.14.0",
|
||||||
"redux-devtools-inspector-monitor-test-tab": "^0.6.2",
|
"redux-devtools-inspector-monitor-test-tab": "^0.6.2",
|
||||||
|
|
|
@ -43,7 +43,7 @@ import {
|
||||||
import { Action } from 'redux';
|
import { Action } from 'redux';
|
||||||
import { Features, State } from '../reducers/instances';
|
import { Features, State } from '../reducers/instances';
|
||||||
import { MonitorStateMonitorState } from '../reducers/monitor';
|
import { MonitorStateMonitorState } from '../reducers/monitor';
|
||||||
import { LiftedAction } from 'redux-devtools';
|
import { LiftedAction } from '@redux-devtools/core';
|
||||||
import { Data } from '../reducers/reports';
|
import { Data } from '../reducers/reports';
|
||||||
|
|
||||||
let monitorReducer: (
|
let monitorReducer: (
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { ActionCreators, LiftedAction } from 'redux-devtools';
|
import { ActionCreators, LiftedAction } from '@redux-devtools/core';
|
||||||
import { Button, Toolbar, Divider } from 'devui';
|
import { Button, Toolbar, Divider } from 'devui';
|
||||||
import { Action } from 'redux';
|
import { Action } from 'redux';
|
||||||
import RecordButton from './buttons/RecordButton';
|
import RecordButton from './buttons/RecordButton';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import { withTheme } from 'styled-components';
|
import { withTheme } from 'styled-components';
|
||||||
import { LiftedAction, LiftedState } from 'redux-devtools';
|
import { LiftedAction, LiftedState } from '@redux-devtools/core';
|
||||||
import { Action } from 'redux';
|
import { Action } from 'redux';
|
||||||
import getMonitor from '../utils/getMonitor';
|
import getMonitor from '../utils/getMonitor';
|
||||||
import { InitMonitorAction } from '../actions';
|
import { InitMonitorAction } from '../actions';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import styled, { withTheme } from 'styled-components';
|
import styled, { withTheme } from 'styled-components';
|
||||||
import SliderMonitor from 'redux-devtools-slider-monitor';
|
import SliderMonitor from 'redux-devtools-slider-monitor';
|
||||||
import { LiftedAction } from 'redux-devtools';
|
import { LiftedAction } from '@redux-devtools/core';
|
||||||
import { Action } from 'redux';
|
import { Action } from 'redux';
|
||||||
import { ThemeFromProvider } from 'devui';
|
import { ThemeFromProvider } from 'devui';
|
||||||
import { State } from '../../reducers/instances';
|
import { State } from '../../reducers/instances';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { PerformAction } from 'redux-devtools';
|
import { PerformAction } from '@redux-devtools/core';
|
||||||
import { Action } from 'redux';
|
import { Action } from 'redux';
|
||||||
import {
|
import {
|
||||||
UPDATE_STATE,
|
UPDATE_STATE,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import commitExcessActions from './commitExcessActions';
|
import commitExcessActions from './commitExcessActions';
|
||||||
import { State } from '../reducers/instances';
|
import { State } from '../reducers/instances';
|
||||||
import { Action } from 'redux';
|
import { Action } from 'redux';
|
||||||
import { PerformAction } from 'redux-devtools';
|
import { PerformAction } from '@redux-devtools/core';
|
||||||
|
|
||||||
export function recompute(
|
export function recompute(
|
||||||
previousLiftedState: State,
|
previousLiftedState: State,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import mapValues from 'lodash/mapValues';
|
import mapValues from 'lodash/mapValues';
|
||||||
import { PerformAction } from 'redux-devtools';
|
import { PerformAction } from '@redux-devtools/core';
|
||||||
import { Action } from 'redux';
|
import { Action } from 'redux';
|
||||||
import { State } from '../app/reducers/instances';
|
import { State } from '../app/reducers/instances';
|
||||||
|
|
||||||
|
|
|
@ -19,13 +19,13 @@
|
||||||
"type-check:watch": "npm run type-check -- --watch"
|
"type-check:watch": "npm run type-check -- --watch"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@redux-devtools/core": "^3.7.0",
|
||||||
"prop-types": "^15.7.2",
|
"prop-types": "^15.7.2",
|
||||||
"react": "^16.13.1",
|
"react": "^16.13.1",
|
||||||
"react-dom": "^16.13.1",
|
"react-dom": "^16.13.1",
|
||||||
"react-hot-loader": "^4.12.21",
|
"react-hot-loader": "^4.12.21",
|
||||||
"react-redux": "^7.2.1",
|
"react-redux": "^7.2.1",
|
||||||
"redux": "^4.0.5",
|
"redux": "^4.0.5",
|
||||||
"redux-devtools": "^3.7.0",
|
|
||||||
"redux-devtools-dock-monitor": "^1.2.0",
|
"redux-devtools-dock-monitor": "^1.2.0",
|
||||||
"redux-devtools-log-monitor": "^2.1.0",
|
"redux-devtools-log-monitor": "^2.1.0",
|
||||||
"redux-thunk": "^2.3.0"
|
"redux-thunk": "^2.3.0"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { createDevTools } from 'redux-devtools';
|
import { createDevTools } from '@redux-devtools/core';
|
||||||
import LogMonitor from 'redux-devtools-log-monitor';
|
import LogMonitor from 'redux-devtools-log-monitor';
|
||||||
import DockMonitor from 'redux-devtools-dock-monitor';
|
import DockMonitor from 'redux-devtools-dock-monitor';
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { createStore, applyMiddleware, compose, PreloadedState } from 'redux';
|
import { createStore, applyMiddleware, compose, PreloadedState } from 'redux';
|
||||||
import { persistState } from 'redux-devtools';
|
import { persistState } from '@redux-devtools/core';
|
||||||
import thunk from 'redux-thunk';
|
import thunk from 'redux-thunk';
|
||||||
import rootReducer, { CounterState } from '../reducers';
|
import rootReducer, { CounterState } from '../reducers';
|
||||||
import DevTools from '../containers/DevTools';
|
import DevTools from '../containers/DevTools';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { createDevTools } from 'redux-devtools';
|
import { createDevTools } from '@redux-devtools/core';
|
||||||
import LogMonitor from 'redux-devtools-log-monitor';
|
import LogMonitor from 'redux-devtools-log-monitor';
|
||||||
import DockMonitor from 'redux-devtools-dock-monitor';
|
import DockMonitor from 'redux-devtools-dock-monitor';
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
"type-check:watch": "npm run type-check -- --watch"
|
"type-check:watch": "npm run type-check -- --watch"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@redux-devtools/core": "^3.7.0",
|
||||||
"classnames": "^2.2.6",
|
"classnames": "^2.2.6",
|
||||||
"prop-types": "^15.7.2",
|
"prop-types": "^15.7.2",
|
||||||
"react": "^16.13.1",
|
"react": "^16.13.1",
|
||||||
|
@ -38,7 +39,6 @@
|
||||||
"react-hot-loader": "^4.12.21",
|
"react-hot-loader": "^4.12.21",
|
||||||
"react-redux": "^7.2.1",
|
"react-redux": "^7.2.1",
|
||||||
"redux": "^4.0.5",
|
"redux": "^4.0.5",
|
||||||
"redux-devtools": "^3.7.0",
|
|
||||||
"redux-devtools-dock-monitor": "^1.2.0",
|
"redux-devtools-dock-monitor": "^1.2.0",
|
||||||
"redux-devtools-log-monitor": "^2.1.0",
|
"redux-devtools-log-monitor": "^2.1.0",
|
||||||
"todomvc-app-css": "^2.3.0"
|
"todomvc-app-css": "^2.3.0"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { createStore, compose, PreloadedState } from 'redux';
|
import { createStore, compose, PreloadedState } from 'redux';
|
||||||
import { persistState } from 'redux-devtools';
|
import { persistState } from '@redux-devtools/core';
|
||||||
import rootReducer, { TodoState } from '../reducers';
|
import rootReducer, { TodoState } from '../reducers';
|
||||||
import DevTools from '../containers/DevTools';
|
import DevTools from '../containers/DevTools';
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "redux-devtools",
|
"name": "@redux-devtools/core",
|
||||||
"version": "3.7.0",
|
"version": "3.7.0",
|
||||||
"description": "Redux DevTools with hot reloading and time travel",
|
"description": "Redux DevTools with hot reloading and time travel",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
Loading…
Reference in New Issue
Block a user