Add radix cwl graph visualization
[arvados-workbench2.git] / src / views / workflow-panel / workflow-description-card.tsx
index 146236269a19681f2320c129b6e3c596d9052d90..c4db3fb912bc6b6f8b800b42c6ca8d0b22e30275 100644 (file)
@@ -3,20 +3,42 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import * as React from 'react';
-import { StyleRulesCallback, WithStyles, withStyles, CardContent, Tab, Tabs } 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 } from '~/models/workflow';
+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';
 
 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
     root: {
-        height: '100%',
+        height: '100%'
     },
     tab: {
-        minWidth: '50%'
+        minWidth: '33%'
+    },
+    inputTab: {
+        height: 'calc(100% - 48px - 16px * 2)',
+        overflowX: 'auto',
+        overflowY: 'hidden',
+        '&:last-child': {
+            paddingBottom: theme.spacing.unit / 2,
+        }
     }
 });
 
@@ -43,24 +65,32 @@ 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
-                    ) : (
-                        <DataTableDefaultView
-                            icon={WorkflowIcon}
-                            messages={['Please select a workflow to see its description.']} />
-                    )}
+                    {workflow ? <div>
+                        {workflow.description}
+                    </div> : (
+                            <DataTableDefaultView
+                                icon={WorkflowIcon}
+                                messages={['Please select a workflow to see its description.']} />
+                        )}
                 </CardContent>}
-                {value === 1 && <CardContent>
-                    {workflow ? (
-                        workflow.name
-                    ) : (
-                        <DataTableDefaultView
+                {value === 1 && <CardContent className={classes.inputTab}>
+                    {workflow
+                        ? this.renderInputsTable()
+                        : <DataTableDefaultView
                             icon={WorkflowIcon}
                             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>;
         }
@@ -74,4 +104,24 @@ export const WorkflowDetailsCard = withStyles(styles)(
             }
             return;
         }
-    });
\ No newline at end of file
+
+        renderInputsTable() {
+            return <Table>
+                <TableHead>
+                    <TableRow>
+                        <TableCell>Label</TableCell>
+                        <TableCell>Type</TableCell>
+                        <TableCell>Description</TableCell>
+                    </TableRow>
+                </TableHead>
+                <TableBody>
+                    {this.inputs && this.inputs.map(input =>
+                        <TableRow key={input.id}>
+                            <TableCell>{getInputLabel(input)}</TableCell>
+                            <TableCell>{stringifyInputType(input)}</TableCell>
+                            <TableCell>{input.doc}</TableCell>
+                        </TableRow>)}
+                </TableBody>
+            </Table>;
+        }
+    });