X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4f5fdd49c0c9866fbb613c6c82641d686b0b8ad5..92dd5d32b573b5c90f3ce72dc207f6d0e7f21178:/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 ecbc9f0c0a..02408b06bb 100644 --- a/src/views/workflow-panel/workflow-description-card.tsx +++ b/src/views/workflow-panel/workflow-description-card.tsx @@ -3,28 +3,55 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { StyleRulesCallback, WithStyles, withStyles, CardContent, Tab, Tabs, Typography, List, ListItem, Table, TableHead, TableCell, TableBody, TableRow } 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, getInputLabel, stringifyInputType } from '~/models/workflow'; +import { WorkflowGraph } from "~/views/workflow-panel/workflow-graph"; -export type CssRules = 'root' | 'tab' | 'inputTab'; +export type CssRules = 'root' | 'tab' | 'inputTab' | 'graphTab' | 'descriptionTab' | 'inputsTable'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { height: '100%' }, tab: { - minWidth: '50%' + minWidth: '33%' }, inputTab: { - overflowX: 'auto', - overflowY: 'hidden', + 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 { @@ -45,16 +72,20 @@ 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 === 0 && + {workflow ?
+ {workflow.description} +
: ( @@ -68,6 +99,14 @@ export const WorkflowDetailsCard = withStyles(styles)( messages={['Please select a workflow to see its inputs.']} /> }
} + {value === 2 && + {workflow + ? + : + } + }
; } @@ -82,7 +121,7 @@ export const WorkflowDetailsCard = withStyles(styles)( } renderInputsTable() { - return + return
Label @@ -100,4 +139,4 @@ export const WorkflowDetailsCard = withStyles(styles)(
; } - }); \ No newline at end of file + });