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';
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,
61 export interface SubprocessItemProps {
67 export interface ProcessSubprocessesCardDataProps {
68 onContextMenu: (event: React.MouseEvent<HTMLElement>) => void;
72 type ProcessSubprocessesCardProps = ProcessSubprocessesCardDataProps & WithStyles<CssRules>;
74 export const ProcessSubprocessesCard = withStyles(styles, { withTheme: true })(
75 ({ classes, onContextMenu, subprocess, theme }: ProcessSubprocessesCardProps) => {
78 className={classes.header}
79 style={{ backgroundColor: getProcessStatusColor(getProcessStatus(subprocess), theme as ArvadosTheme) }}
80 classes={{ content: classes.title, action: classes.action }}
82 <div className={classes.rightSideHeader}>
83 <Typography noWrap variant="body2" className={classes.status}>
84 {getProcessStatus(subprocess)}
87 className={classes.options}
88 aria-label="More options"
89 onClick={onContextMenu}>
95 <Tooltip title={subprocess.containerRequest.name}>
96 <Typography noWrap variant="body2" className={classes.titleHeader}>
97 {subprocess.containerRequest.name}
101 <CardContent className={classes.content}>
102 <DetailsAttribute classLabel={classes.label} classValue={classes.value}
103 label="Runtime" value={formatTime(getProcessRuntime(subprocess))} />