X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ef305b983cd28c2f3535cb6b3eb46e9a02e1a409..fef17c665b0d6acb4be97c9dcf4a6cb7a92ee6ef:/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 b63266a0..148a0481 100644 --- a/src/views-components/details-panel/details-panel.tsx +++ b/src/views-components/details-panel/details-panel.tsx @@ -3,117 +3,93 @@ // 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 Grid from '@material-ui/core/Grid'; +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 actions from "../../store/details-panel/details-panel-action"; +import { ProjectResource } from '../../models/project'; +import { CollectionResource } from '../../models/collection'; +import { CloseIcon } 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'; +import { Dispatch } from "redux"; -export interface DetailsPanelProps { - closeDrawer: () => void; +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) => { - return ( - - {children} - - ); +class DetailsPanel extends React.Component { + state = { + tabsValue: 0 + }; + + handleChange = (event: any, value: boolean) => { + this.setState({ tabsValue: value }); } - render() { - const { classes, closeDrawer, isOpened } = this.props; - const { tabsValue } = this.state; + renderTabContainer = (children: React.ReactElement) => + + {children} + + + render() { + const { classes, onCloseDrawer, isOpened, item } = this.props; + const { tabsValue } = this.state; return ( -
+ - - - - Tutorial pipeline - - - - - - - - - - + + + + {item.getIcon(classes.headerIcon)} + + + + {item.getTitle()} + + + + + {} + + + + + + + + {tabsValue === 0 && this.renderTabContainer( - - -

Type

-

Size

-

Location

-

Owner

-
- -

Process

-

---

-

Projects

-

me

-
-
- )} + + {item.buildDetails()} + + )} {tabsValue === 1 && this.renderTabContainer( - - -

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 colorPurple = '#692498'; -const colorLightGray = '#A1A1A1'; -const colorVeryLightGray = '#999999'; -const colorGray = '#333'; - -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 +100,45 @@ const styles: StyleRulesCallback = (theme: Theme) => ({ drawerPaper: { position: 'relative', width: drawerWidth - }, - headerContainer: { - color: colorLightGray, - margin: `${theme.spacing.unit}px 0` - }, - tabsIndicator: { - backgroundColor: colorPurple - }, - tabRoot: { - color: colorGray, - '&$tabSelected': { - fontWeight: 700, - color: colorPurple - } - }, - tabContainer: { - padding: theme.spacing.unit * 3 - }, - tabSelected: {}, - gridLabel: { - color: colorVeryLightGray, - } + }, + headerContainer: { + color: theme.palette.grey["600"], + margin: `${theme.spacing.unit}px 0`, + textAlign: 'center' + }, + headerIcon: { + fontSize: "34px" + }, + tabContainer: { + padding: theme.spacing.unit * 3 + } +}); + + +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()); + } }); -export default withStyles(styles)(DetailsPanel); \ No newline at end of file +const DetailsPanelContainer = connect(mapStateToProps, mapDispatchToProps)(DetailsPanel); + +export default withStyles(styles)(DetailsPanelContainer);