X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/1832d4a40997469ae0c2d3e6f2e5a552b834118b..8ff2ace73eab152113f8eec5027a302df48d31a5:/src/views/process-panel/process-information-card.tsx diff --git a/src/views/process-panel/process-information-card.tsx b/src/views/process-panel/process-information-card.tsx index 7f3e025f..ad7673af 100644 --- a/src/views/process-panel/process-information-card.tsx +++ b/src/views/process-panel/process-information-card.tsx @@ -2,20 +2,21 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { StyleRulesCallback, WithStyles, withStyles, Card, - CardHeader, IconButton, CardContent, Grid, Chip, Typography, Tooltip + CardHeader, IconButton, CardContent, Grid, Chip, Typography, Tooltip, Button } 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'; +import { ArvadosTheme } from 'common/custom-theme'; +import { CloseIcon, 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'; +import classNames from 'classnames'; +import { ContainerState } from 'models/container'; - -type CssRules = 'card' | 'iconHeader' | 'label' | 'value' | 'chip' | 'link' | 'content' | 'title' | 'avatar'; +type CssRules = 'card' | 'iconHeader' | 'label' | 'value' | 'chip' | 'link' | 'content' | 'title' | 'avatar' | 'cancelButton'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ card: { @@ -62,6 +63,14 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ title: { overflow: 'hidden', paddingTop: theme.spacing.unit * 0.5 + }, + cancelButton: { + paddingRight: theme.spacing.unit * 2, + fontSize: '14px', + color: theme.customs.colors.red900, + "&:hover": { + cursor: 'pointer' + } } }); @@ -70,13 +79,20 @@ export interface ProcessInformationCardDataProps { onContextMenu: (event: React.MouseEvent) => void; openProcessInputDialog: (uuid: string) => void; navigateToOutput: (uuid: string) => void; + openWorkflow: (uuid: string) => void; + cancelProcess: (uuid: string) => void; + doHidePanel?: () => void; + panelName?: string; } type ProcessInformationCardProps = ProcessInformationCardDataProps & WithStyles; export const ProcessInformationCard = withStyles(styles, { withTheme: true })( - ({ classes, process, onContextMenu, theme, openProcessInputDialog, navigateToOutput }: ProcessInformationCardProps) => - + ({ classes, process, onContextMenu, theme, openProcessInputDialog, navigateToOutput, openWorkflow, cancelProcess, doHidePanel, panelName }: ProcessInformationCardProps) => { + const { container } = process; + const startedAt = container ? formatDate(container.startedAt) : 'N/A'; + const finishedAt = container ? formatDate(container.finishedAt) : 'N/A'; + return } action={
+ {process.container && process.container.state === ContainerState.RUNNING && + cancelProcess(process.containerRequest.uuid)}>Cancel} @@ -95,18 +113,22 @@ export const ProcessInformationCard = withStyles(styles, { withTheme: true })( + { doHidePanel && + + + }
} title={ - + {process.containerRequest.name} } subheader={ - + {getDescription(process)} } /> @@ -114,11 +136,16 @@ export const ProcessInformationCard = withStyles(styles, { withTheme: true })( + label='From' + value={startedAt} /> - + label='To' + value={finishedAt} /> + {process.containerRequest.properties.workflowUuid && + openWorkflow(process.containerRequest.properties.workflowUuid)}> + + } navigateToOutput(process.containerRequest.outputUuid!)}> @@ -130,7 +157,8 @@ export const ProcessInformationCard = withStyles(styles, { withTheme: true })( -
+
; + } ); const getDescription = (process: Process) =>