X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/23180724fefb8b4b31e2c07e711101367942f721..b334ada5137efaaaa24ed93ce97a03b7838c924a:/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 52c0f451..c2267ec0 100644 --- a/src/views/process-panel/process-panel-root.tsx +++ b/src/views/process-panel/process-panel-root.tsx @@ -2,53 +2,190 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; -import { Grid } from '@material-ui/core'; -import { ProcessInformationCard } from './process-information-card'; -import { DefaultView } from '~/components/default-view/default-view'; -import { ProcessIcon } from '~/components/icon/icon'; -import { Process } from '~/store/processes/process'; -import { SubprocessesCard } from './subprocesses-card'; -import { ProcessSubprocesses } from '~/views/process-panel/process-subprocesses'; -import { SubprocessFilterDataProps } from '~/components/subprocess-filter/subprocess-filter'; +import React, { useState } from 'react'; +import { Grid, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core'; +import { DefaultView } from 'components/default-view/default-view'; +import { ProcessIcon } from 'components/icon/icon'; +import { Process } from 'store/processes/process'; +import { SubprocessPanel } from 'views/subprocess-panel/subprocess-panel'; +import { SubprocessFilterDataProps } from 'components/subprocess-filter/subprocess-filter'; +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 { getIOParamDisplayValue, ProcessIOCard, ProcessIOCardType, ProcessIOParameter } from './process-io-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 { getInputs, getInputCollectionMounts, getOutputParameters, getRawInputs } from 'store/processes/processes-actions'; +import { CommandInputParameter, getIOParamId } 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'; + +type CssRules = 'root'; + +const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ + root: { + width: '100%', + }, +}); export interface ProcessPanelRootDataProps { process?: Process; subprocesses: Array; filters: Array; - totalSubprocessesLength: number; + processLogsPanel: ProcessLogsPanel; + auth: AuthState; } export interface ProcessPanelRootActionProps { onContextMenu: (event: React.MouseEvent, process: Process) => void; onToggle: (status: string) => void; - openProcessInputDialog: (uuid: string) => void; + cancelProcess: (uuid: string) => void; + onLogFilterChange: (filter: FilterOption) => void; + navigateToLog: (uuid: string) => void; + onCopyToClipboard: (uuid: string) => void; + fetchOutputs: (containerRequest: ContainerRequestResource, fetchOutputs) => void; +} + +export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRootActionProps & WithStyles; + +type OutputDetails = { + rawOutputs?: any; + pdh?: string; } -export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRootActionProps; +const panelsData: MPVPanelState[] = [ + {name: "Details"}, + {name: "Command"}, + {name: "Logs", visible: true}, + {name: "Inputs"}, + {name: "Outputs"}, + {name: "Subprocesses"}, +]; + +export const ProcessPanelRoot = withStyles(styles)( + ({ process, auth, processLogsPanel, fetchOutputs, ...props }: ProcessPanelRootProps) => { + + const [outputDetails, setOutputs] = useState(undefined); + const [outputDefinitions, setOutputDefinitions] = useState([]); + const [rawInputs, setInputs] = useState(undefined); + + const [processedOutputs, setProcessedOutputs] = useState(undefined); + const [processedInputs, setProcessedInputs] = useState(undefined); + + const outputUuid = process?.containerRequest.outputUuid; + const requestUuid = process?.containerRequest.uuid; + + const containerRequest = process?.containerRequest; -export const ProcessPanelRoot = ({ process, ...props }: ProcessPanelRootProps) => - process - ? - - { + setOutputs(undefined); + setOutputDefinitions([]); + setInputs(undefined); + setProcessedOutputs(undefined); + setProcessedInputs(undefined); + }, [requestUuid]); + + // Fetch raw output (async for fetching from keep) + React.useEffect(() => { + if (containerRequest) { + fetchOutputs(containerRequest, setOutputs); + } + }, [containerRequest, fetchOutputs]); + + // Fetch outputDefinitons from mounts whenever containerRequest is updated + React.useEffect(() => { + if (containerRequest && containerRequest.mounts) { + const newOutputDefinitions = getOutputParameters(containerRequest); + // Avoid setting output definitions to [] when mounts briefly go missing + if (newOutputDefinitions.length) { + setOutputDefinitions(newOutputDefinitions); + } + } + }, [containerRequest]); + + // Format raw output into ProcessIOParameter[] when it changes + React.useEffect(() => { + if (outputDetails !== undefined && outputDetails.rawOutputs) { + // Update processed outputs as long as outputDetails is loaded (or failed to load with {} rawOutputs) + setProcessedOutputs(formatOutputData(outputDefinitions, outputDetails.rawOutputs, outputDetails.pdh, auth)); + } + }, [outputDetails, auth, outputDefinitions]); + + // Fetch raw inputs and format into ProcessIOParameter[] + // Can be sync because inputs are either already in containerRequest mounts or props + React.useEffect(() => { + if (containerRequest) { + // Since mounts can disappear and reappear, only set inputs if raw / processed inputs is undefined or new inputs has content + const newRawInputs = getRawInputs(containerRequest); + if (rawInputs === undefined || (newRawInputs && newRawInputs.length)) { + setInputs(newRawInputs); + } + const newInputs = getInputs(containerRequest); + if (processedInputs === undefined || (newInputs && newInputs.length)) { + setProcessedInputs(formatInputData(newInputs, auth)); + } + } + }, [requestUuid, auth, containerRequest, processedInputs, rawInputs]); + + return process + ? + + props.onContextMenu(event, process)} - openProcessInputDialog={props.openProcessInputDialog} /> - - - - - - - - + + + + + + ({ label: filter, value: filter }) + )} + onLogFilterChange={props.onLogFilterChange} + navigateToLog={props.navigateToLog} + /> + + + + + + + + + + + : ; + } +); + +const formatInputData = (inputs: CommandInputParameter[], auth: AuthState): ProcessIOParameter[] => { + return inputs.map(input => { + return { + id: getIOParamId(input), + label: input.label || "", + value: getIOParamDisplayValue(auth, input) + }; + }); +}; +const formatOutputData = (definitions: CommandOutputParameter[], values: any, pdh: string | undefined, auth: AuthState): ProcessIOParameter[] => { + return definitions.map(output => { + return { + id: getIOParamId(output), + label: output.label || "", + value: getIOParamDisplayValue(auth, Object.assign(output, { value: values[getIOParamId(output)] || [] }), pdh) + }; + }); +};