1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import * as React from 'react';
7 StyleRulesCallback, WithStyles, withStyles, Card,
8 CardHeader, IconButton, CardContent, Typography, Tooltip
9 } from '@material-ui/core';
10 import { ArvadosTheme } from '~/common/custom-theme';
11 import { MoreOptionsIcon } from '~/components/icon/icon';
12 import { DetailsAttribute } from '~/components/details-attribute/details-attribute';
13 import { Process, getProcessStatus, getProcessRuntime } from '~/store/processes/process';
14 import { formatTime } from '~/common/formatters';
15 import { getProcessStatusColor } from '~/store/processes/process';
17 export type CssRules = 'label' | 'value' | 'title' | 'content' | 'action' | 'options' | 'status' | 'rightSideHeader' | 'titleHeader' | 'header' | 'moreOptions';
19 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
24 textTransform: 'none',
31 paddingTop: theme.spacing.unit * 0.5,
40 width: theme.spacing.unit * 4,
41 height: theme.spacing.unit * 4,
42 color: theme.palette.common.white,
45 paddingTop: theme.spacing.unit * 0.5,
46 color: theme.palette.common.white,
52 color: theme.palette.common.white,
64 export interface SubprocessItemProps {
70 export interface ProcessSubprocessesCardDataProps {
71 onContextMenu: (event: React.MouseEvent<HTMLElement>) => void;
75 type ProcessSubprocessesCardProps = ProcessSubprocessesCardDataProps & WithStyles<CssRules, true>;
77 export const ProcessSubprocessesCard = withStyles(styles, { withTheme: true })(
78 ({ classes, onContextMenu, subprocess, theme }: ProcessSubprocessesCardProps) => {
81 className={classes.header}
82 style={{ backgroundColor: getProcessStatusColor(getProcessStatus(subprocess), theme as ArvadosTheme) }}
83 classes={{ content: classes.title, action: classes.action }}
85 <div className={classes.rightSideHeader}>
86 <Typography noWrap variant="body2" className={classes.status}>
87 {getProcessStatus(subprocess)}
89 <Tooltip title="More options" disableFocusListener>
91 className={classes.options}
92 aria-label="More options"
93 onClick={onContextMenu}>
94 <MoreOptionsIcon className={classes.moreOptions}/>
100 <Tooltip title={subprocess.containerRequest.name}>
101 <Typography noWrap variant="body2" className={classes.titleHeader}>
102 {subprocess.containerRequest.name}
106 <CardContent className={classes.content}>
107 <DetailsAttribute classLabel={classes.label} classValue={classes.value}
108 label="Runtime" value={formatTime(getProcessRuntime(subprocess))} />