// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { StyleRulesCallback, WithStyles, withStyles, Card, CardHeader, IconButton, CardContent, Grid, Chip, Typography, Tooltip } from '@material-ui/core'; import { ArvadosTheme } from '~/common/custom-theme'; import { MoreOptionsIcon, ProcessIcon } from '~/components/icon/icon'; import { DetailsAttribute } from '~/components/details-attribute/details-attribute'; import { Process } from '~/store/processes/process'; import { getProcessStatus, getProcessStatusColor } from '../../store/processes/process'; import { formatDate } from '~/common/formatters'; type CssRules = 'card' | 'iconHeader' | 'label' | 'value' | 'chip' | 'link' | 'content' | 'title' | 'avatar'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ card: { height: '100%' }, iconHeader: { fontSize: '1.875rem', color: theme.customs.colors.green700, }, avatar: { alignSelf: 'flex-start', paddingTop: theme.spacing.unit * 0.5 }, label: { display: 'flex', justifyContent: 'flex-end', fontSize: '0.875rem', marginRight: theme.spacing.unit * 3, paddingRight: theme.spacing.unit }, value: { textTransform: 'none', fontSize: '0.875rem', }, link: { fontSize: '0.875rem', color: theme.palette.primary.main, '&:hover': { cursor: 'pointer' } }, chip: { height: theme.spacing.unit * 3, width: theme.spacing.unit * 12, color: theme.palette.common.white, fontSize: '0.875rem', borderRadius: theme.spacing.unit * 0.625, }, content: { '&:last-child': { paddingBottom: theme.spacing.unit * 2, } }, title: { overflow: 'hidden', paddingTop: theme.spacing.unit * 0.5 } }); export interface ProcessInformationCardDataProps { process: Process; onContextMenu: (event: React.MouseEvent) => void; } type ProcessInformationCardProps = ProcessInformationCardDataProps & WithStyles; export const ProcessInformationCard = withStyles(styles, { withTheme: true })( ({ classes, process, onContextMenu, theme }: ProcessInformationCardProps) => {console.log(process)} } action={
onContextMenu(event)}>
} title={ {process.containerRequest.name} } subheader={ {getDescription(process)} } />
); const getDescription = (process: Process) => process.containerRequest.description || '(no-description)';