X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/69a166d7f4e7768cfa79c133b45b3e6f7601e9b7..ffac6f1051efb642db49c4c4a5d2f3f477ca6d34:/src/views-components/details-panel/details-panel.tsx diff --git a/src/views-components/details-panel/details-panel.tsx b/src/views-components/details-panel/details-panel.tsx index ac4b151f..20d3843f 100644 --- a/src/views-components/details-panel/details-panel.tsx +++ b/src/views-components/details-panel/details-panel.tsx @@ -3,117 +3,31 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import Drawer from '@material-ui/core/Drawer'; -import IconButton from "@material-ui/core/IconButton"; -import CloseIcon from '@material-ui/icons/Close'; -import { StyleRulesCallback, WithStyles, withStyles, Theme } from "@material-ui/core/styles"; -import Tabs from '@material-ui/core/Tabs'; -import Tab from '@material-ui/core/Tab'; -import Typography from '@material-ui/core/Typography'; +import { Drawer, IconButton, Tabs, Tab, Typography, Grid } from '@material-ui/core'; +import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; +import { ArvadosTheme } from '../../common/custom-theme'; import * as classnames from "classnames"; -import Grid from '@material-ui/core/Grid'; +import { connect } from 'react-redux'; +import { RootState } from '../../store/store'; +import { detailsPanelActions } from "../../store/details-panel/details-panel-action"; +import { CloseIcon } from '../../components/icon/icon'; +import { EmptyResource } from '../../models/empty'; +import { Dispatch } from "redux"; +import { ResourceKind } from "../../models/resource"; +import { ProjectDetails } from "./project-details"; +import { CollectionDetails } from "./collection-details"; +import { ProcessDetails } from "./process-details"; +import { EmptyDetails } from "./empty-details"; +import { DetailsData } from "./details-data"; +import { DetailsResource } from "../../models/details"; -function TabContainer(props: any) { - return ( - - {props.children} - - ); -} - -export interface DetailsPanelProps { - toggleDrawer: (isOpened: boolean) => void; - isOpened: boolean; -} - -class DetailsPanel extends React.Component, {}> { - state = { - tabsValue: 0, - }; - - handleChange = (event: any, value: boolean) => { - this.setState({ tabsValue: value }); - } - - render() { - const { classes, toggleDrawer, isOpened } = this.props; - const { tabsValue } = this.state; - return ( -
- toggleDrawer(false)} - classes={{ - paper: classes.drawerPaper - }}> - {/* className={classnames([classes.root, { [classes.active]: isActive }])} */} - - - - Tutorial pipeline - - toggleDrawer(false)}> - - - - - - - - - {tabsValue === 0 && - - -

Type

-

Size

-

Location

-

Owner

-
- -

Process

-

---

-

Projects

-

me

-
-
-
} - {tabsValue === 1 && - - -

Type

-

Size

-

Location

-

Owner

-
- -

Process

-

---

-

Projects

-

me

-
-
-
} -
-
- ); - } - -} - -type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' - | 'tabsIndicator' | 'tabRoot' | 'tabContainer' | 'tabSelected' | 'gridLabel'; +type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'tabContainer'; const drawerWidth = 320; -const purple = '#692498'; -const styles: StyleRulesCallback = (theme: Theme) => ({ - container: { +const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ + container: { width: 0, - position: 'relative', + position: 'relative', height: 'auto', transition: 'width 0.5s ease', '&$opened': { @@ -124,28 +38,109 @@ const styles: StyleRulesCallback = (theme: Theme) => ({ drawerPaper: { position: 'relative', width: drawerWidth - }, - headerContainer: { - color: '#A1A1A1', - margin: `${theme.spacing.unit}px 0` - }, - tabsIndicator: { - backgroundColor: purple - }, - tabRoot: { - color: '#333333', - '&$tabSelected': { - fontWeight: 700, - color: purple - } - }, - tabContainer: { - padding: theme.spacing.unit * 3 - }, - tabSelected: {}, - gridLabel: { - color: '#999999', - } + }, + headerContainer: { + color: theme.palette.grey["600"], + margin: `${theme.spacing.unit}px 0`, + textAlign: 'center' + }, + headerIcon: { + fontSize: "34px" + }, + tabContainer: { + padding: theme.spacing.unit * 3 + } }); -export default withStyles(styles)(DetailsPanel); \ No newline at end of file +const getItem = (resource: DetailsResource): DetailsData => { + const res = resource || { kind: undefined, name: 'Projects' }; + switch (res.kind) { + case ResourceKind.PROJECT: + return new ProjectDetails(res); + case ResourceKind.COLLECTION: + return new CollectionDetails(res); + case ResourceKind.PROCESS: + return new ProcessDetails(res); + default: + return new EmptyDetails(res as EmptyResource); + } +}; + +const mapStateToProps = ({ detailsPanel }: RootState) => ({ + isOpened: detailsPanel.isOpened, + item: getItem(detailsPanel.item as DetailsResource) +}); + +const mapDispatchToProps = (dispatch: Dispatch) => ({ + onCloseDrawer: () => { + dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL()); + } +}); + +export interface DetailsPanelDataProps { + onCloseDrawer: () => void; + isOpened: boolean; + item: DetailsData; +} + +type DetailsPanelProps = DetailsPanelDataProps & WithStyles; + +export const DetailsPanel = withStyles(styles)( + connect(mapStateToProps, mapDispatchToProps)( + class extends React.Component { + state = { + tabsValue: 0 + }; + + handleChange = (event: any, value: boolean) => { + this.setState({ tabsValue: value }); + } + + renderTabContainer = (children: React.ReactElement) => + + {children} + + + render() { + const { classes, onCloseDrawer, isOpened, item } = this.props; + const { tabsValue } = this.state; + return ( + + + + + + {item.getIcon(classes.headerIcon)} + + + + {item.getTitle()} + + + + + {} + + + + + + + + + {tabsValue === 0 && this.renderTabContainer( + + {item.getDetails()} + + )} + {tabsValue === 1 && this.renderTabContainer( + + )} + + + ); + } + } + ) +);