From 789dabb5b8554237e5caa62a41a61f1793e8353e Mon Sep 17 00:00:00 2001 From: Michal Klobukowski Date: Sat, 30 Jun 2018 15:13:33 +0200 Subject: [PATCH] Fix react issue with calling actions in render method, handle opening projects tree on item route change Feature #13678 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- src/views/project-panel/project-panel.tsx | 22 +++++++++++++--- src/views/workbench/workbench.tsx | 32 +++++++++-------------- 2 files changed, 31 insertions(+), 23 deletions(-) diff --git a/src/views/project-panel/project-panel.tsx b/src/views/project-panel/project-panel.tsx index dd61e58a..6bfa61e0 100644 --- a/src/views/project-panel/project-panel.tsx +++ b/src/views/project-panel/project-panel.tsx @@ -12,16 +12,21 @@ import { DataTableFilterItem } from '../../components/data-table-filters/data-ta import { ContextMenuAction } from '../../components/context-menu/context-menu'; import { DispatchProp, connect } from 'react-redux'; import actions from "../../store/data-explorer/data-explorer-action"; -import { setProjectItem, ItemMode } from "../../store/navigation/navigation-action"; import { DataColumns } from '../../components/data-table/data-table'; import { ResourceKind } from "../../models/resource"; import { RouteComponentProps } from 'react-router'; +import { RootState } from '../../store/store'; export const PROJECT_PANEL_ID = "projectPanel"; -type ProjectPanelProps = { onItemClick: (item: ProjectPanelItem) => void } +type ProjectPanelProps = { + currentItemId: string, + onItemClick: (item: ProjectPanelItem) => void, + onItemRouteChange: (itemId: string) => void +} & DispatchProp - & WithStyles; + & WithStyles + & RouteComponentProps<{ id: string }>; class ProjectPanel extends React.Component { render() { return
@@ -54,6 +59,12 @@ class ProjectPanel extends React.Component { this.props.dispatch(actions.SET_COLUMNS({ id: PROJECT_PANEL_ID, columns })); } + componentWillReceiveProps({ match, currentItemId }: ProjectPanelProps) { + if (match.params.id !== currentItemId) { + this.props.onItemRouteChange(match.params.id); + } + } + toggleColumn = (toggledColumn: DataColumn) => { this.props.dispatch(actions.TOGGLE_COLUMN({ id: PROJECT_PANEL_ID, columnName: toggledColumn.name })); } @@ -81,6 +92,7 @@ class ProjectPanel extends React.Component { changeRowsPerPage = (rowsPerPage: number) => { this.props.dispatch(actions.SET_ROWS_PER_PAGE({ id: PROJECT_PANEL_ID, rowsPerPage })); } + } type CssRules = "toolbar" | "button"; @@ -213,4 +225,6 @@ const contextMenuActions = [[{ } ]]; -export default withStyles(styles)(connect()(ProjectPanel)); +export default withStyles(styles)( + connect((state: RootState) => ({ currentItemId: state.projects.currentItemId }))( + ProjectPanel)); diff --git a/src/views/workbench/workbench.tsx b/src/views/workbench/workbench.tsx index 48cab3c6..85ed90c9 100644 --- a/src/views/workbench/workbench.tsx +++ b/src/views/workbench/workbench.tsx @@ -6,7 +6,7 @@ import * as React from 'react'; import { StyleRulesCallback, Theme, WithStyles, withStyles } from '@material-ui/core/styles'; import Drawer from '@material-ui/core/Drawer'; import { connect, DispatchProp } from "react-redux"; -import { Route, Switch, RouteComponentProps } from "react-router"; +import { Route, Switch, RouteComponentProps, withRouter } from "react-router"; import authActions from "../../store/auth/auth-action"; import dataExplorerActions from "../../store/data-explorer/data-explorer-action"; import { User } from "../../models/user"; @@ -27,6 +27,7 @@ import { ResourceKind } from "../../models/resource"; import { ItemMode, setProjectItem } from "../../store/navigation/navigation-action"; import projectActions from "../../store/project/project-action"; import ProjectPanel from "../project-panel/project-panel"; +import { sidePanelData } from '../../store/side-panel/side-panel-reducer'; const drawerWidth = 240; const appBarHeight = 102; @@ -184,14 +185,8 @@ class Workbench extends React.Component { sidePanelItems={this.props.sidePanelItems}> - this.props.dispatch( - setProjectItem(itemId, ItemMode.OPEN) - )} - toggleActive={itemId => - this.props.dispatch( - setProjectItem(itemId, ItemMode.ACTIVE) - )} + toggleOpen={itemId => this.props.dispatch(setProjectItem(itemId, ItemMode.OPEN))} + toggleActive={itemId => this.props.dispatch(setProjectItem(itemId, ItemMode.ACTIVE))} /> } @@ -206,16 +201,15 @@ class Workbench extends React.Component { ); } - renderProjectPanel = (props: RouteComponentProps<{ id: string }>) => { - if (props.match.params.id !== this.props.currentProjectId) { - this.props.dispatch( - setProjectItem(props.match.params.id, ItemMode.ACTIVE) - ); - } - return this.props.dispatch( - setProjectItem(item.uuid, ItemMode.ACTIVE) - )} />; + renderProjectPanel = (props: RouteComponentProps<{ id: string }>) => this.props.dispatch(setProjectItem(item.uuid, ItemMode.ACTIVE))} + {...props} /> + + handleItemRouteChange = (itemId: string) => { + this.props.dispatch(sidePanelActions.RESET_SIDE_PANEL_ACTIVITY()); + this.props.dispatch(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_OPEN(sidePanelData[0].id)); + this.props.dispatch(setProjectItem(itemId, ItemMode.ACTIVE)); } } -- 2.30.2