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
9 } from '@material-ui/core';
10 import { ArvadosTheme } from '~/common/custom-theme';
11 import { ProcessResource } from '~/models/process';
12 import { DispatchProp, connect } from 'react-redux';
13 import { MoreOptionsIcon, ProcessIcon } from '~/components/icon/icon';
14 import { DetailsAttribute } from '~/components/details-attribute/details-attribute';
15 import { RootState } from '~/store/store';
16 import { ContextMenuKind } from '~/views-components/context-menu/context-menu';
17 import { openContextMenu } from '~/store/context-menu/context-menu-actions';
19 type CssRules = 'card' | 'iconHeader' | 'label' | 'value' | 'content' | 'chip' | 'headerText' | 'link';
21 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
23 marginBottom: theme.spacing.unit * 2,
27 color: theme.customs.colors.green700
33 textTransform: 'none',
38 paddingBottom: '0px ',
41 paddingBottom: '0px ',
46 color: theme.palette.primary.main,
52 height: theme.spacing.unit * 2.5,
53 width: theme.spacing.unit * 12,
54 backgroundColor: theme.customs.colors.green700,
55 color: theme.palette.common.white,
57 borderRadius: theme.spacing.unit * 0.625
62 top: -theme.spacing.unit * 4.5,
63 left: theme.spacing.unit * 3,
67 interface ProcessInformationCardDataProps {
68 item: ProcessResource;
71 type InformationCardProps = ProcessInformationCardDataProps & DispatchProp & WithStyles<CssRules>;
73 export const InformationCard = withStyles(styles)(
74 connect((state: RootState) => ({
75 item: state.collectionPanel.item
77 class extends React.Component<InformationCardProps> {
79 const { classes } = this.props;
82 <Card className={classes.card}>
84 avatar={<ProcessIcon className={classes.iconHeader} />}
87 aria-label="More options"
88 onClick={this.handleContextMenu}>
92 title="Pipeline template that generates a config file from a template" />
93 <CardContent className={classes.content}>
94 <Grid container direction="column">
96 <DetailsAttribute classLabel={classes.label} classValue={classes.value}
97 label='Status' value={<Chip label="Complete" className={classes.chip} />} />
98 <DetailsAttribute classLabel={classes.label} classValue={classes.value}
99 label='Started at' value="1:25 PM 3/23/2018" />
100 <DetailsAttribute classLabel={classes.label} classValue={classes.value}
101 label='Finished at' value='1:25 PM 3/23/2018' />
104 <Grid container direction="column">
106 <DetailsAttribute classLabel={classes.link} classValue={classes.value}
107 label='Container output' />
108 <DetailsAttribute classLabel={classes.link} classValue={classes.value}
109 label='Show inputs' />
110 <DetailsAttribute classLabel={classes.link} classValue={classes.value}
111 label='Show command' />
115 <span className={classes.headerText}>This container request was created from the workflow <span className={classes.link}>FastQC MultiQC</span></span>
120 handleContextMenu = (event: React.MouseEvent<any>) => {
121 // const { uuid, name, description } = this.props.item;
126 kind: ContextMenuKind.PROCESS
128 this.props.dispatch<any>(openContextMenu(event, resource));