// Copyright (C) The Arvados Authors. All rights reserved. // // 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 { 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"; 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'; 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`, '& .fa-cogs': { fontSize: "24px" } }, tabContainer: { padding: theme.spacing.unit * 3 } }); export default withStyles(styles)(DetailsPanel);