X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/7a2f0082071947bfec27ed4f2a16250e1d611d21..f912f003853b42c745041796220e28536629a548:/src/views/workflow-panel/workflow-description-card.tsx diff --git a/src/views/workflow-panel/workflow-description-card.tsx b/src/views/workflow-panel/workflow-description-card.tsx index 02408b06..df1b2811 100644 --- a/src/views/workflow-panel/workflow-description-card.tsx +++ b/src/views/workflow-panel/workflow-description-card.tsx @@ -2,7 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { StyleRulesCallback, WithStyles, @@ -14,15 +14,15 @@ import { TableHead, TableCell, TableBody, - TableRow + TableRow, } from '@material-ui/core'; -import { ArvadosTheme } from '~/common/custom-theme'; -import { WorkflowIcon } from '~/components/icon/icon'; -import { DataTableDefaultView } from '~/components/data-table-default-view/data-table-default-view'; -import { WorkflowResource, parseWorkflowDefinition, getWorkflowInputs, getInputLabel, stringifyInputType } from '~/models/workflow'; -import { WorkflowGraph } from "~/views/workflow-panel/workflow-graph"; +import { ArvadosTheme } from 'common/custom-theme'; +import { WorkflowIcon } from 'components/icon/icon'; +import { DataTableDefaultView } from 'components/data-table-default-view/data-table-default-view'; +import { parseWorkflowDefinition, getWorkflowInputs, getInputLabel, stringifyInputType } from 'models/workflow'; +import { WorkflowDetailsCardDataProps, WorkflowDetailsAttributes } from 'views-components/details-panel/workflow-details'; -export type CssRules = 'root' | 'tab' | 'inputTab' | 'graphTab' | 'descriptionTab' | 'inputsTable'; +export type CssRules = 'root' | 'tab' | 'inputTab' | 'graphTab' | 'graphTabWithChosenWorkflow' | 'descriptionTab' | 'inputsTable'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { @@ -34,12 +34,12 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ inputTab: { overflow: 'auto', maxHeight: '300px', - marginTop: theme.spacing.unit, - '&:last-child': { - paddingBottom: theme.spacing.unit / 2, - } + marginTop: theme.spacing.unit }, graphTab: { + marginTop: theme.spacing.unit, + }, + graphTabWithChosenWorkflow: { overflow: 'auto', height: '450px', marginTop: theme.spacing.unit, @@ -54,10 +54,6 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, }); -interface WorkflowDetailsCardDataProps { - workflow?: WorkflowResource; -} - type WorkflowDetailsCardProps = WorkflowDetailsCardDataProps & WithStyles; export const WorkflowDetailsCard = withStyles(styles)( @@ -72,24 +68,21 @@ export const WorkflowDetailsCard = withStyles(styles)( render() { const { classes, workflow } = this.props; - if (workflow) { - console.log(workflow.definition); - } const { value } = this.state; return
- + {value === 0 && {workflow ?
{workflow.description}
: ( - - )} + + )}
} {value === 1 && {workflow @@ -99,12 +92,12 @@ export const WorkflowDetailsCard = withStyles(styles)( messages={['Please select a workflow to see its inputs.']} /> } } - {value === 2 && + {value === 2 && {workflow - ? + ? : + messages={['Please select a workflow to see its details.']} /> } }
; @@ -117,7 +110,7 @@ export const WorkflowDetailsCard = withStyles(styles)( return getWorkflowInputs(definition); } } - return; + return undefined; } renderInputsTable() {