X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/eda5e30d786d5d1224a552e962b6b711efab7369..468c4ed9a390a1b0f2dad222b43707779ab49f16:/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 7aa26e6a..c4db3fb9 100644 --- a/src/views/workflow-panel/workflow-description-card.tsx +++ b/src/views/workflow-panel/workflow-description-card.tsx @@ -3,33 +3,125 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { StyleRulesCallback, WithStyles, withStyles, Card, CardHeader, Typography } 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 = 'card'; +export type CssRules = 'root' | 'tab' | 'inputTab'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ - card: { + root: { height: '100%' + }, + tab: { + minWidth: '33%' + }, + inputTab: { + height: 'calc(100% - 48px - 16px * 2)', + overflowX: 'auto', + overflowY: 'hidden', + '&:last-child': { + paddingBottom: theme.spacing.unit / 2, + } } }); -interface WorkflowDescriptionCardDataProps { +interface WorkflowDetailsCardDataProps { + workflow?: WorkflowResource; } -type WorkflowDescriptionCardProps = WorkflowDescriptionCardDataProps & WithStyles; - -export const WorkflowDescriptionCard = withStyles(styles)( - ({ classes }: WorkflowDescriptionCardProps) => { - return - - Workflow description: - } /> - - ; - }); \ No newline at end of file +type WorkflowDetailsCardProps = WorkflowDetailsCardDataProps & WithStyles; + +export const WorkflowDetailsCard = withStyles(styles)( + class extends React.Component { + state = { + value: 0, + }; + + handleChange = (event: React.MouseEvent, value: number) => { + this.setState({ value }); + } + + render() { + const { classes, workflow } = this.props; + const { value } = this.state; + return
+ + + + + + {value === 0 && + {workflow ?
+ {workflow.description} +
: ( + + )} +
} + {value === 1 && + {workflow + ? this.renderInputsTable() + : + } + } + {value === 2 && + {workflow + ? + : + } + } +
; + } + + get inputs() { + if (this.props.workflow) { + const definition = parseWorkflowDefinition(this.props.workflow); + if (definition) { + return getWorkflowInputs(definition); + } + } + return; + } + + renderInputsTable() { + return + + + Label + Type + Description + + + + {this.inputs && this.inputs.map(input => + + {getInputLabel(input)} + {stringifyInputType(input)} + {input.doc} + )} + +
; + } + });