refs #14350-more-options-on-subprocesses-misplaced
[arvados-workbench2.git] / src / views / workflow-panel / workflow-description-card.tsx
index ecbc9f0c0a2e7b83a1849ffbc7ad578737bf76c7..c4db3fb912bc6b6f8b800b42c6ca8d0b22e30275 100644 (file)
@@ -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<CssRules> = (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)(
                 <Tabs value={value} onChange={this.handleChange} centered={true}>
                     <Tab className={classes.tab} label="Description" />
                     <Tab className={classes.tab} label="Inputs" />
+                    <Tab className={classes.tab} label="Graph" />
                 </Tabs>
                 {value === 0 && <CardContent>
-                    {workflow ? (
-                        workflow.description
-                    ) : (
+                    {workflow ? <div>
+                        {workflow.description}
+                    </div> : (
                             <DataTableDefaultView
                                 icon={WorkflowIcon}
                                 messages={['Please select a workflow to see its description.']} />
@@ -68,6 +84,14 @@ export const WorkflowDetailsCard = withStyles(styles)(
                             messages={['Please select a workflow to see its inputs.']} />
                     }
                 </CardContent>}
+                {value === 2 && <CardContent className={classes.inputTab}>
+                    {workflow
+                        ? <WorkflowGraph workflow={workflow}/>
+                        : <DataTableDefaultView
+                            icon={WorkflowIcon}
+                            messages={['Please select a workflow to see its visualisation.']} />
+                    }
+                </CardContent>}
             </div>;
         }
 
@@ -100,4 +124,4 @@ export const WorkflowDetailsCard = withStyles(styles)(
                 </TableBody>
             </Table>;
         }
-    });
\ No newline at end of file
+    });