X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/3127f7c6b7c0a68981598ffb83efa7ae0b41ae7c..07d646d908bcbd2b3de9ad22c02a93b65d04af2a:/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 16c1f92f..70c026d3 100644 --- a/src/views-components/details-panel/details-panel.tsx +++ b/src/views-components/details-panel/details-panel.tsx @@ -3,107 +3,147 @@ // 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 { 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} - - ); -} +type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'headerTitle' | 'tabContainer'; -export interface DetailsPanelProps { - toggleDrawer: (isOpened: boolean) => void; - isOpened: boolean; -} +const drawerWidth = 320; +const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ + container: { + width: 0, + position: 'relative', + height: 'auto', + transition: 'width 0.5s ease', + '&$opened': { + width: drawerWidth + } + }, + opened: {}, + drawerPaper: { + position: 'relative', + width: drawerWidth + }, + headerContainer: { + color: theme.palette.grey["600"], + margin: `${theme.spacing.unit}px 0`, + textAlign: 'center' + }, + headerIcon: { + fontSize: '2.125rem' + }, + headerTitle: { + wordBreak: 'break-all' + }, + tabContainer: { + padding: theme.spacing.unit * 3 + } +}); + +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); + } +}; -class DetailsPanel extends React.Component, {}> { - state = { - value: 0, - }; +const mapStateToProps = ({ detailsPanel }: RootState) => ({ + isOpened: detailsPanel.isOpened, + item: getItem(detailsPanel.item as DetailsResource) +}); - handleChange = (event: any, value: boolean) => { - this.setState({ value }); - } - - render() { - const { classes, toggleDrawer, isOpened } = this.props; - const { value } = this.state; - return ( -
- toggleDrawer(false)} - classes={{ - paper: classes.drawerPaper - }}> -

Tutorial pipeline

- toggleDrawer(false)}> - - - - - - - {value === 0 && - Item One - } - {value === 1 && - Item Two - } -
-
- ); +const mapDispatchToProps = (dispatch: Dispatch) => ({ + onCloseDrawer: () => { + dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL()); } +}); +export interface DetailsPanelDataProps { + onCloseDrawer: () => void; + isOpened: boolean; + item: DetailsData; } -type CssRules = 'drawerPaper' | 'container' | 'title' | 'tabsRoot' | 'tabsIndicator' | 'tabRoot' | 'tabSelected'; +type DetailsPanelProps = DetailsPanelDataProps & WithStyles; -const drawerWidth = 320; -const styles: StyleRulesCallback = (theme: Theme) => ({ - container: { - position: 'relative', - height: 'auto' - }, - drawerPaper: { - position: 'relative', - width: drawerWidth - }, - title: { - padding: '10px 0px', - fontSize: '20px', - fontWeight: 400, - fontStyle: 'normal' - }, - tabsRoot: { - borderBottom: '1px solid transparent', - }, - tabsIndicator: { - backgroundColor: 'rgb(106, 27, 154)', - }, - tabRoot: { - fontSize: '13px', - fontWeight: 400, - color: '#333333', - '&$tabSelected': { - fontWeight: 700, - color: 'rgb(106, 27, 154)' - }, - }, - tabSelected: {} -}); +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} + -export default withStyles(styles)(DetailsPanel); \ No newline at end of file + 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( + + )} + + + ); + } + } + ) +);