X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/e0cb98c44ed8f32f269d2b9f878184263cd14192..b323a94f313671b44a066a2f91dea562e9464d10:/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..34195784 100644 --- a/src/views-components/details-panel/details-panel.tsx +++ b/src/views-components/details-panel/details-panel.tsx @@ -5,93 +5,95 @@ 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 { 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 * as classnames from "classnames"; +import { connect, Dispatch } from 'react-redux'; +import { RootState } from '../../store/store'; +import actions from "../../store/details-panel/details-panel-action"; +import { ProjectResource } from '../../models/project'; +import { CollectionResource } from '../../models/collection'; +import IconBase, { IconTypes } from '../../components/icon/icon'; +import { ProcessResource } from '../../models/process'; +import DetailsPanelFactory from '../../components/details-panel-factory/details-panel-factory'; +import AbstractItem from '../../components/details-panel-factory/items/abstract-item'; +import { EmptyResource } from '../../models/empty'; -export interface DetailsPanelProps { +export interface DetailsPanelDataProps { onCloseDrawer: () => void; isOpened: boolean; + item: AbstractItem; } -class DetailsPanel extends React.Component, {}> { - state = { - tabsValue: 0, - }; +type DetailsPanelProps = DetailsPanelDataProps & WithStyles; - handleChange = (event: any, value: boolean) => { - this.setState({ tabsValue: value }); - } - - renderTabContainer = (children: React.ReactElement) => +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; + render() { + const { classes, onCloseDrawer, isOpened, item } = this.props; + const { tabsValue } = this.state; return ( -
+ - - - - - Tutorial pipeline - - - - - - - - - - + + + + + + + + {item.getTitle()} + + + + + + + + + + + + + {tabsValue === 0 && this.renderTabContainer( - Process - --- - - - Projects - - me - - )} - {tabsValue === 1 && this.renderTabContainer( - - Process - --- - - - Projects - - me + {item.buildDetails()} - )} + )} + {tabsValue === 1 && this.renderTabContainer( + + )} -
+ ); } } -type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' | 'tabContainer'; +type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | '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 +104,45 @@ 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: "34px" + }, + tabContainer: { + padding: theme.spacing.unit * 3 + } }); -export default withStyles(styles)(DetailsPanel); \ No newline at end of file + +export type DetailsPanelResource = ProjectResource | CollectionResource | ProcessResource | EmptyResource; + +const getItem = (res: DetailsPanelResource) => { + return DetailsPanelFactory.createItem(res); +}; + +const getDefaultItem = () => { + return DetailsPanelFactory.createItem({ kind: undefined, name: 'Projects' }); +}; + +const mapStateToProps = ({ detailsPanel }: RootState) => { + const { isOpened, item } = detailsPanel; + return { + isOpened, + item: item ? getItem(item as DetailsPanelResource) : getDefaultItem() + }; +}; + +const mapDispatchToProps = (dispatch: Dispatch) => ({ + onCloseDrawer: () => { + dispatch(actions.TOGGLE_DETAILS_PANEL()); + } +}); + +const DetailsPanelContainer = connect(mapStateToProps, mapDispatchToProps)(DetailsPanel); + +export default withStyles(styles)(DetailsPanelContainer); \ No newline at end of file