X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/082c1782d96a4b1c897df64d9b325d102a5c1144..f75b0aa3966895160535bad24b05c1a763665a5a:/src/views/process-panel/process-panel-root.tsx diff --git a/src/views/process-panel/process-panel-root.tsx b/src/views/process-panel/process-panel-root.tsx index 4f95d0d8..11b31ae0 100644 --- a/src/views/process-panel/process-panel-root.tsx +++ b/src/views/process-panel/process-panel-root.tsx @@ -12,9 +12,18 @@ import { SubprocessFilterDataProps } from 'components/subprocess-filter/subproce import { MPVContainer, MPVPanelContent, MPVPanelState } from 'components/multi-panel-view/multi-panel-view'; import { ArvadosTheme } from 'common/custom-theme'; import { ProcessDetailsCard } from './process-details-card'; +import { ProcessIOCard, ProcessIOCardType, ProcessIOParameter } from './process-io-card'; +import { ProcessResourceCard } from './process-resource-card'; import { getProcessPanelLogs, ProcessLogsPanel } from 'store/process-logs-panel/process-logs-panel'; import { ProcessLogsCard } from './process-log-card'; import { FilterOption } from 'views/process-panel/process-log-form'; +import { getInputCollectionMounts } from 'store/processes/processes-actions'; +import { WorkflowInputsData } from 'models/workflow'; +import { CommandOutputParameter } from 'cwlts/mappings/v1.0/CommandOutputParameter'; +import { AuthState } from 'store/auth/auth-reducer'; +import { ProcessCmdCard } from './process-cmd-card'; +import { ContainerRequestResource } from 'models/container-request'; +import { OutputDetails, NodeInstanceType } from 'store/process-panel/process-panel'; type CssRules = 'root'; @@ -29,61 +38,150 @@ export interface ProcessPanelRootDataProps { subprocesses: Array; filters: Array; processLogsPanel: ProcessLogsPanel; + auth: AuthState; + inputRaw: WorkflowInputsData | null; + inputParams: ProcessIOParameter[] | null; + outputRaw: OutputDetails | null; + outputDefinitions: CommandOutputParameter[]; + outputParams: ProcessIOParameter[] | null; + nodeInfo: NodeInstanceType | null; } export interface ProcessPanelRootActionProps { onContextMenu: (event: React.MouseEvent, process: Process) => void; onToggle: (status: string) => void; cancelProcess: (uuid: string) => void; + startProcess: (uuid: string) => void; onLogFilterChange: (filter: FilterOption) => void; navigateToLog: (uuid: string) => void; - onLogCopyToClipboard: (uuid: string) => void; + onCopyToClipboard: (uuid: string) => void; + loadInputs: (containerRequest: ContainerRequestResource) => void; + loadOutputs: (containerRequest: ContainerRequestResource) => void; + loadNodeJson: (containerRequest: ContainerRequestResource) => void; + loadOutputDefinitions: (containerRequest: ContainerRequestResource) => void; + updateOutputParams: () => void; } export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRootActionProps & WithStyles; const panelsData: MPVPanelState[] = [ - {name: "Details"}, - {name: "Logs", visible: true}, - {name: "Subprocesses"}, + { name: "Details" }, + { name: "Command" }, + { name: "Logs", visible: true }, + { name: "Inputs" }, + { name: "Outputs" }, + { name: "Resources" }, + { name: "Subprocesses" }, ]; export const ProcessPanelRoot = withStyles(styles)( - ({ process, processLogsPanel, ...props }: ProcessPanelRootProps) => - process - ? - - props.onContextMenu(event, process)} - cancelProcess={props.cancelProcess} - /> - - - ({ label: filter, value: filter }) - )} - onLogFilterChange={props.onLogFilterChange} - navigateToLog={props.navigateToLog} - /> - - - - - - : - - ); + ({ + process, + auth, + processLogsPanel, + inputRaw, + inputParams, + outputRaw, + outputDefinitions, + outputParams, + nodeInfo, + loadInputs, + loadOutputs, + loadNodeJson, + loadOutputDefinitions, + updateOutputParams, + ...props + }: ProcessPanelRootProps) => { + + const outputUuid = process?.containerRequest.outputUuid; + const containerRequest = process?.containerRequest; + const inputMounts = getInputCollectionMounts(process?.containerRequest); + + React.useEffect(() => { + if (containerRequest) { + // Load inputs from mounts or props + loadInputs(containerRequest); + // Fetch raw output (loads from props or keep) + loadOutputs(containerRequest); + // Loads output definitions from mounts into store + loadOutputDefinitions(containerRequest); + // load the assigned instance type from node.json in + // the log collection + loadNodeJson(containerRequest); + } + }, [containerRequest, loadInputs, loadOutputs, loadOutputDefinitions, loadNodeJson]); + + // Trigger processing output params when raw or definitions change + React.useEffect(() => { + updateOutputParams(); + }, [outputRaw, outputDefinitions, updateOutputParams]); + + return process + ? + + props.onContextMenu(event, process)} + cancelProcess={props.cancelProcess} + startProcess={props.startProcess} + /> + + + + + + ({ label: filter, value: filter }) + )} + onLogFilterChange={props.onLogFilterChange} + navigateToLog={props.navigateToLog} + /> + + + + + + + + + + + + + + + : + + ; + } +);