X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f362812f74c69b62e107b094f2508ae7fb8cbbff..6ff11e5f5dba8e02a176bbe9455ba916e8990028:/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 be257e83..70c026d3 100644 --- a/src/views-components/details-panel/details-panel.tsx +++ b/src/views-components/details-panel/details-panel.tsx @@ -3,95 +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 FolderIcon from '@material-ui/icons/Folder'; +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 Attribute from '../../components/attribute/attribute'; -import Tabs from '@material-ui/core/Tabs'; -import Tab from '@material-ui/core/Tab'; -import Typography from '@material-ui/core/Typography'; -import Grid from '@material-ui/core/Grid'; +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"; -export interface DetailsPanelProps { - onCloseDrawer: () => void; - isOpened: boolean; -} - -class DetailsPanel 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 } = this.props; - const { tabsValue } = this.state; - return ( -
- - - - - - Tutorial pipeline - - - - - - - - - - - {tabsValue === 0 && this.renderTabContainer( - - Process - --- - - - Projects - - me - - )} - {tabsValue === 1 && this.renderTabContainer( - - Process - --- - - - Projects - - me - - )} - -
- ); - } - -} - -type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' | 'tabContainer'; +type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'headerTitle' | 'tabContainer'; const drawerWidth = 320; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ - container: { + container: { width: 0, - position: 'relative', + position: 'relative', height: 'auto', transition: 'width 0.5s ease', '&$opened': { @@ -102,18 +38,112 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ drawerPaper: { position: 'relative', width: drawerWidth - }, - headerContainer: { + }, + headerContainer: { color: theme.palette.grey["600"], margin: `${theme.spacing.unit}px 0`, - '& .fa-cogs': { - fontSize: "24px", - color: theme.customs.colors.green700 - } - }, - tabContainer: { - padding: theme.spacing.unit * 3 - } + textAlign: 'center' + }, + headerIcon: { + fontSize: '2.125rem' + }, + headerTitle: { + wordBreak: 'break-all' + }, + 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( + + )} + + + ); + } + } + ) +);