X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/428d454e2681d66bb14558946cfe2fb77a2c8dce..b7de31f185fccd2f9b276c1e89754d288e7facfe:/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 c297276e..02408b06 100644 --- a/src/views/workflow-panel/workflow-description-card.tsx +++ b/src/views/workflow-panel/workflow-description-card.tsx @@ -3,23 +3,55 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { StyleRulesCallback, WithStyles, withStyles, CardContent, Tab, Tabs, Paper } from '@material-ui/core'; +import { + StyleRulesCallback, + WithStyles, + withStyles, + CardContent, + Tab, + Tabs, + Table, + TableHead, + TableCell, + TableBody, + 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 } from '~/models/workflow'; -import { WorkflowInput } from '~/components/workflow-inputs-form/workflow-input'; -import { RunProcessInputsForm } from '../run-process-panel/run-process-inputs-form'; +import { WorkflowResource, parseWorkflowDefinition, getWorkflowInputs, getInputLabel, stringifyInputType } from '~/models/workflow'; +import { WorkflowGraph } from "~/views/workflow-panel/workflow-graph"; -export type CssRules = 'root' | 'tab'; +export type CssRules = 'root' | 'tab' | 'inputTab' | 'graphTab' | 'descriptionTab' | 'inputsTable'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { - height: '100%', + height: '100%' }, tab: { - minWidth: '50%' - } + minWidth: '33%' + }, + inputTab: { + overflow: 'auto', + maxHeight: '300px', + marginTop: theme.spacing.unit, + '&:last-child': { + paddingBottom: theme.spacing.unit / 2, + } + }, + graphTab: { + overflow: 'auto', + height: '450px', + marginTop: theme.spacing.unit, + }, + descriptionTab: { + overflow: 'auto', + maxHeight: '300px', + marginTop: theme.spacing.unit, + }, + inputsTable: { + tableLayout: 'fixed', + }, }); interface WorkflowDetailsCardDataProps { @@ -40,27 +72,42 @@ export const WorkflowDetailsCard = withStyles(styles)( render() { const { classes, workflow } = this.props; + if (workflow) { + console.log(workflow.definition); + } const { value } = this.state; - return + return
+ - {value === 0 && + {value === 0 && + {workflow ?
+ {workflow.description} +
: ( + + )} +
} + {value === 1 && {workflow - ? workflow.description + ? this.renderInputsTable() : } + messages={['Please select a workflow to see its inputs.']} /> + } } - {value === 1 && - {workflow && this.inputs - ? + {value === 2 && + {workflow + ? : } + messages={['Please select a workflow to see its visualisation.']} /> + } } - ; +
; } get inputs() { @@ -72,4 +119,24 @@ export const WorkflowDetailsCard = withStyles(styles)( } return; } - }); \ No newline at end of file + + renderInputsTable() { + return + + + Label + Type + Description + + + + {this.inputs && this.inputs.map(input => + + {getInputLabel(input)} + {stringifyInputType(input)} + {input.doc} + )} + +
; + } + });