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, Grid, Chip, Typography, Tooltip
9 } from '@material-ui/core';
10 import { ArvadosTheme } from '~/common/custom-theme';
11 import { MoreOptionsIcon, ProcessIcon } from '~/components/icon/icon';
12 import { DetailsAttribute } from '~/components/details-attribute/details-attribute';
13 import { Process } from '~/store/processes/process';
14 import { getProcessStatus } from '../../store/processes/process';
16 type CssRules = 'card' | 'iconHeader' | 'label' | 'value' | 'chip' | 'headerText' | 'link' | 'content' | 'title' | 'avatar';
18 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
20 marginBottom: theme.spacing.unit * 2
24 color: theme.customs.colors.green700,
27 alignSelf: 'flex-start'
31 justifyContent: 'flex-end',
33 marginRight: theme.spacing.unit * 3,
34 paddingRight: theme.spacing.unit
37 textTransform: 'none',
42 color: theme.palette.primary.main,
48 height: theme.spacing.unit * 3,
49 width: theme.spacing.unit * 12,
50 backgroundColor: theme.customs.colors.green700,
51 color: theme.palette.common.white,
53 borderRadius: theme.spacing.unit * 0.625,
57 marginLeft: theme.spacing.unit * 3,
61 paddingBottom: theme.spacing.unit * 2,
70 export interface ProcessInformationCardDataProps {
72 onContextMenu: (event: React.MouseEvent<HTMLElement>) => void;
75 type ProcessInformationCardProps = ProcessInformationCardDataProps & WithStyles<CssRules>;
77 export const ProcessInformationCard = withStyles(styles)(
78 ({ classes, process, onContextMenu }: ProcessInformationCardProps) =>
79 <Card className={classes.card}>
82 content: classes.title,
83 avatar: classes.avatar
85 avatar={<ProcessIcon className={classes.iconHeader} />}
88 <Chip label={getProcessStatus(process)} className={classes.chip} />
90 aria-label="More options"
91 onClick={event => onContextMenu(event)}>
97 <Tooltip title={process.containerRequest.name}>
98 <Typography noWrap variant="title">
99 {process.containerRequest.name}
103 subheader={process.containerRequest.description} />
104 <CardContent className={classes.content}>
107 <DetailsAttribute classLabel={classes.label} classValue={classes.value}
108 label='From' value={process.container ? process.container.startedAt : 'N/A'} />
109 <DetailsAttribute classLabel={classes.label} classValue={classes.value}
110 label='To' value={process.container ? process.container.finishedAt : 'N/A'} />
111 <DetailsAttribute classLabel={classes.label} classValue={classes.link}
112 label='Workflow' value='???' />
115 <DetailsAttribute classLabel={classes.link} label='Outputs' />
116 <DetailsAttribute classLabel={classes.link} label='Inputs' />