Update dependecies
This commit is contained in:
@@ -25,6 +25,7 @@ function ChartSettings(props: {
|
|||||||
const [interpolationVisible, setInterpolationVisible] = React.useState(false)
|
const [interpolationVisible, setInterpolationVisible] = React.useState(false)
|
||||||
const [sizeVisible, setSizeVisible] = React.useState(false)
|
const [sizeVisible, setSizeVisible] = React.useState(false)
|
||||||
const [colorVisible, setColorVisible] = React.useState(false)
|
const [colorVisible, setColorVisible] = React.useState(false)
|
||||||
|
const open = props.open
|
||||||
|
|
||||||
const toggleRange = React.useCallback(() => {
|
const toggleRange = React.useCallback(() => {
|
||||||
if (open) {
|
if (open) {
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import { Action } from 'redux'
|
|
||||||
import { createReducer } from './lib'
|
import { createReducer } from './lib'
|
||||||
import { Record, List } from 'immutable'
|
import { Record, List } from 'immutable'
|
||||||
import MoveUp from '../components/ChartPanel/ChartSettings/MoveUp'
|
import MoveUp from '../components/ChartPanel/ChartSettings/MoveUp'
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import * as q from '../../../backend/src/Model'
|
import * as q from '../../../backend/src/Model'
|
||||||
import { Action } from 'redux'
|
|
||||||
import { createReducer } from './lib'
|
import { createReducer } from './lib'
|
||||||
import { MqttOptions } from '../../../backend/src/DataSource'
|
import { MqttOptions } from '../../../backend/src/DataSource'
|
||||||
import { TopicViewModel } from '../model/TopicViewModel'
|
import { TopicViewModel } from '../model/TopicViewModel'
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import { Action } from 'redux'
|
|
||||||
import { ConnectionOptions } from '../model/ConnectionOptions'
|
import { ConnectionOptions } from '../model/ConnectionOptions'
|
||||||
import { createReducer } from './lib'
|
import { createReducer } from './lib'
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import { Action } from 'redux'
|
|
||||||
import { createReducer } from './lib'
|
import { createReducer } from './lib'
|
||||||
|
|
||||||
export interface PublishState {
|
export interface PublishState {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import * as q from '../../../backend/src/Model'
|
import * as q from '../../../backend/src/Model'
|
||||||
import { Action } from 'redux'
|
import { Action as ReduxAction } from 'redux'
|
||||||
import { createReducer } from './lib'
|
import { createReducer } from './lib'
|
||||||
import { Record } from 'immutable'
|
import { Record } from 'immutable'
|
||||||
|
|
||||||
@@ -11,7 +11,8 @@ const initialStateFactory = Record<SidebarModel>({
|
|||||||
compareMessage: undefined,
|
compareMessage: undefined,
|
||||||
})
|
})
|
||||||
|
|
||||||
export type Action = SetCompareMessage
|
export type Action = SetCompareMessage | ResetStore
|
||||||
|
|
||||||
export enum ActionTypes {
|
export enum ActionTypes {
|
||||||
SIDEBAR_SET_COMPARE_MESSAGE = 'SIDEBAR_SET_COMPARE_MESSAGE',
|
SIDEBAR_SET_COMPARE_MESSAGE = 'SIDEBAR_SET_COMPARE_MESSAGE',
|
||||||
SIDEBAR_RESET_STORE = 'SIDEBAR_RESET_STORE',
|
SIDEBAR_RESET_STORE = 'SIDEBAR_RESET_STORE',
|
||||||
@@ -20,7 +21,7 @@ export enum ActionTypes {
|
|||||||
export type SidebarState = Record<SidebarModel>
|
export type SidebarState = Record<SidebarModel>
|
||||||
|
|
||||||
const actions: {
|
const actions: {
|
||||||
[s: string]: (state: SidebarState, action: Action) => SidebarState
|
[s: string]: (state: SidebarState, action: ReduxAction) => SidebarState
|
||||||
} = {
|
} = {
|
||||||
SIDEBAR_SET_COMPARE_MESSAGE: setCompareMessage,
|
SIDEBAR_SET_COMPARE_MESSAGE: setCompareMessage,
|
||||||
SIDEBAR_RESET_STORE: resetStore,
|
SIDEBAR_RESET_STORE: resetStore,
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import * as q from '../../../backend/src/Model'
|
import * as q from '../../../backend/src/Model'
|
||||||
import { Action } from 'redux'
|
import { Action as ReduxAction } from 'redux'
|
||||||
import { createReducer } from './lib'
|
import { createReducer } from './lib'
|
||||||
import { Record } from 'immutable'
|
import { Record } from 'immutable'
|
||||||
import { TopicViewModel } from '../model/TopicViewModel'
|
import { TopicViewModel } from '../model/TopicViewModel'
|
||||||
@@ -50,7 +50,7 @@ const setPaused = (pause: boolean) => (state: TreeState, action: ShowTree): Tree
|
|||||||
}
|
}
|
||||||
|
|
||||||
const actions: {
|
const actions: {
|
||||||
[s: string]: (state: TreeState, action: Action) => TreeState
|
[s: string]: (state: TreeState, action: ReduxAction) => TreeState
|
||||||
} = {
|
} = {
|
||||||
TREE_SHOW_TREE: showTree,
|
TREE_SHOW_TREE: showTree,
|
||||||
TREE_SELECT_TOPIC: selectTopic,
|
TREE_SELECT_TOPIC: selectTopic,
|
||||||
|
|||||||
Reference in New Issue
Block a user