X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/8dce1fa34833d40dad114eed8895fd5e6d7df28d..bf6ffb898a38a806ea0dd98daca7b3801923b62f:/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 b9e89c76..df1b2811 100644 --- a/src/views/workflow-panel/workflow-description-card.tsx +++ b/src/views/workflow-panel/workflow-description-card.tsx @@ -15,16 +15,12 @@ import { TableCell, TableBody, TableRow, - Grid, } 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"; -import { DetailsAttribute } from 'components/details-attribute/details-attribute'; -import { ResourceOwnerWithName } from 'views-components/data-explorer/renderers'; -import { formatDate } from "common/formatters"; +import { parseWorkflowDefinition, getWorkflowInputs, getInputLabel, stringifyInputType } from 'models/workflow'; +import { WorkflowDetailsCardDataProps, WorkflowDetailsAttributes } from 'views-components/details-panel/workflow-details'; export type CssRules = 'root' | 'tab' | 'inputTab' | 'graphTab' | 'graphTabWithChosenWorkflow' | 'descriptionTab' | 'inputsTable'; @@ -58,10 +54,6 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, }); -interface WorkflowDetailsCardDataProps { - workflow?: WorkflowResource; -} - type WorkflowDetailsCardProps = WorkflowDetailsCardDataProps & WithStyles; export const WorkflowDetailsCard = withStyles(styles)( @@ -82,7 +74,6 @@ export const WorkflowDetailsCard = withStyles(styles)( - {/* */} {value === 0 && {workflow ?
@@ -101,14 +92,6 @@ export const WorkflowDetailsCard = withStyles(styles)( messages={['Please select a workflow to see its inputs.']} /> } } - {/* {value === 2 && - {workflow - ? - : - } - } */} {value === 2 && {workflow ? @@ -150,29 +133,3 @@ export const WorkflowDetailsCard = withStyles(styles)( ; } }); - -export const WorkflowDetailsAttributes = ({ workflow }: WorkflowDetailsCardDataProps) => { - return - - - - - } /> - - - - - - - - - } /> - - ; -};