X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/61cfe9a4e7c483f5b018dda8e2c46eb8ce3db26a..97599484adf25a991f6733854334676dd55f7260:/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 138c91a5..65c2761b 100644 --- a/src/views-components/details-panel/details-panel.tsx +++ b/src/views-components/details-panel/details-panel.tsx @@ -3,210 +3,169 @@ // 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 { IconButton, Tabs, Tab, Typography, Grid, Tooltip } 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 { Transition } from 'react-transition-group'; +import { ArvadosTheme } from '~/common/custom-theme'; import * as classnames from "classnames"; -import { connect, Dispatch } from 'react-redux'; -import EmptyState from '../../components/empty-state/empty-state'; -import { RootState } from '../../store/store'; -import actions from "../../store/details-panel/details-panel-action"; -import { Resource } from '../../common/api/common-resource-service'; -import { ResourceKind } from '../../models/kinds'; -import { ProjectResource } from '../../models/project'; -import { CollectionResource } from '../../models/collection'; -import IconBase, { IconTypes } from '../../components/icon/icon'; -import { ProcessResource } from '../../models/process'; - -export interface DetailsPanelDataProps { - onCloseDrawer: () => void; - isOpened: boolean; - icon: IconTypes; - title: string; - details: React.ReactElement; -} - -type DetailsPanelProps = DetailsPanelDataProps & WithStyles; - -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, icon, title, details } = this.props; - const { tabsValue } = this.state; - return ( - - - - - - - {title} - - - - - - - - - - - {tabsValue === 0 && this.renderTabContainer( - - {details} - - )} - {tabsValue === 1 && this.renderTabContainer( - - )} - - - ); - } - -} - -type CssRules = 'drawerPaper' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'tabContainer'; - -const drawerWidth = 320; +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"; +import { getResource } from '~/store/resources/resources'; + +type CssRules = 'root' | 'container' | 'opened' | 'headerContainer' | 'headerIcon' | 'headerTitle' | 'tabContainer'; + +const DRAWER_WIDTH = 320; +const SLIDE_TIMEOUT = 500; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ - container: { + root: { width: 0, - position: 'relative', - height: 'auto', - transition: 'width 0.5s ease', - '&$opened': { - width: drawerWidth - } + overflow: 'hidden', + transition: `width ${SLIDE_TIMEOUT}ms ease`, + background: theme.palette.background.paper, + borderLeft: `1px solid ${theme.palette.divider}`, + height: '100%', + }, + opened: { + width: DRAWER_WIDTH, + }, + container: { + width: DRAWER_WIDTH, }, - opened: {}, drawerPaper: { position: 'relative', - width: drawerWidth + width: DRAWER_WIDTH }, headerContainer: { color: theme.palette.grey["600"], - margin: `${theme.spacing.unit}px 0` + margin: `${theme.spacing.unit}px 0`, + textAlign: 'center' }, headerIcon: { - fontSize: "34px" + fontSize: '2.125rem' + }, + headerTitle: { + overflowWrap: 'break-word', + wordWrap: 'break-word' }, tabContainer: { - padding: theme.spacing.unit * 3 + padding: theme.spacing.unit * 3, + overflow: 'auto', } }); -type DetailsPanelResource = ProjectResource | CollectionResource | ProcessResource; - -const getIcon = (res: DetailsPanelResource) => { +const getItem = (resource: DetailsResource): DetailsData => { + const res = resource || { kind: undefined, name: 'Projects' }; switch (res.kind) { - case ResourceKind.Project: - return IconTypes.FOLDER; - case ResourceKind.Collection: - return IconTypes.COLLECTION; - case ResourceKind.Process: - return IconTypes.PROCESS; + case ResourceKind.PROJECT: + return new ProjectDetails(res); + case ResourceKind.COLLECTION: + return new CollectionDetails(res); + case ResourceKind.PROCESS: + return new ProcessDetails(res); default: - return IconTypes.FOLDER; + return new EmptyDetails(res as EmptyResource); } }; -const getDetails = (res: DetailsPanelResource) => { - switch (res.kind) { - case ResourceKind.Project: - return
- - - - - Projects - - - - - -
; - case ResourceKind.Collection: - return
- - - - - Projects - - - - - - - - - - -
; - case ResourceKind.Process: - return
- - - - - Projects - - - - - - - - - - - -
; - default: - return getEmptyState(); - } -}; - -const getEmptyState = () => { - return ; -}; - -const mapStateToProps = ({ detailsPanel }: RootState) => { - const { isOpened, item } = detailsPanel; +const mapStateToProps = ({ detailsPanel, resources }: RootState) => { + const resource = getResource(detailsPanel.resourceUuid)(resources) as DetailsResource; return { - isOpened, - title: item ? (item as DetailsPanelResource).name : 'Projects', - icon: item ? getIcon(item as DetailsPanelResource) : IconTypes.FOLDER, - details: item ? getDetails(item as DetailsPanelResource) : getEmptyState() + isOpened: detailsPanel.isOpened, + item: getItem(resource) }; }; const mapDispatchToProps = (dispatch: Dispatch) => ({ onCloseDrawer: () => { - dispatch(actions.TOGGLE_DETAILS_PANEL()); + dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL()); } }); -const DetailsPanelContainer = connect(mapStateToProps, mapDispatchToProps)(DetailsPanel); +export interface DetailsPanelDataProps { + onCloseDrawer: () => void; + isOpened: boolean; + item: DetailsData; +} -export default withStyles(styles)(DetailsPanelContainer); \ No newline at end of file +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 }); + } + + render() { + const { classes, isOpened } = this.props; + return ( + + + {this.renderContent()} + + + ); + } + + renderContent() { + const { classes, onCloseDrawer, item } = this.props; + const { tabsValue } = this.state; + return + + + + {item.getIcon(classes.headerIcon)} + + + + + {item.getTitle()} + + + + + + {} + + + + + + + + + + + + + {tabsValue === 0 + ? item.getDetails() + : null} + + + ; + } + } + ) +);