X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/400481f862c9de54569daabf9de167601dc887bc..468c4ed9a390a1b0f2dad222b43707779ab49f16:/src/views/workflow-panel/workflow-description-card.tsx?ds=sidebyside diff --git a/src/views/workflow-panel/workflow-description-card.tsx b/src/views/workflow-panel/workflow-description-card.tsx index ecbc9f0c..c4db3fb9 100644 --- a/src/views/workflow-panel/workflow-description-card.tsx +++ b/src/views/workflow-panel/workflow-description-card.tsx @@ -3,11 +3,25 @@ // 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, + Divider +} 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'; @@ -16,9 +30,10 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ height: '100%' }, tab: { - minWidth: '50%' + minWidth: '33%' }, inputTab: { + height: 'calc(100% - 48px - 16px * 2)', overflowX: 'auto', overflowY: 'hidden', '&:last-child': { @@ -50,11 +65,12 @@ export const WorkflowDetailsCard = withStyles(styles)( + {value === 0 && - {workflow ? ( - workflow.description - ) : ( + {workflow ?
+ {workflow.description} +
: ( @@ -68,6 +84,14 @@ export const WorkflowDetailsCard = withStyles(styles)( messages={['Please select a workflow to see its inputs.']} /> }
} + {value === 2 && + {workflow + ? + : + } + } ; } @@ -100,4 +124,4 @@ export const WorkflowDetailsCard = withStyles(styles)( ; } - }); \ No newline at end of file + });