X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/e90926e12f0d64e435475a7c9c025df4f824b608..24f65df0b986dd604b47d148cc84e3a96b25cc66:/src/views/process-panel/process-io-card.tsx?ds=sidebyside diff --git a/src/views/process-panel/process-io-card.tsx b/src/views/process-panel/process-io-card.tsx index 71b831b4..ceba293e 100644 --- a/src/views/process-panel/process-io-card.tsx +++ b/src/views/process-panel/process-io-card.tsx @@ -24,9 +24,19 @@ import { Paper, Grid, Chip, + CircularProgress, } from '@material-ui/core'; import { ArvadosTheme } from 'common/custom-theme'; -import { CloseIcon, ImageIcon, InputIcon, ImageOffIcon, OutputIcon, MaximizeIcon } from 'components/icon/icon'; +import { + CloseIcon, + ImageIcon, + InputIcon, + ImageOffIcon, + OutputIcon, + MaximizeIcon, + UnMaximizeIcon, + InfoIcon +} from 'components/icon/icon'; import { MPVPanelProps } from 'components/multi-panel-view/multi-panel-view'; import { BooleanCommandInputParameter, @@ -62,6 +72,9 @@ import { RootState } from 'store/store'; import { ProcessOutputCollectionFiles } from './process-output-collection-files'; import { Process } from 'store/processes/process'; import { navigateTo } from 'store/navigation/navigation-action'; +import classNames from 'classnames'; +import { DefaultCodeSnippet } from 'components/default-code-snippet/default-code-snippet'; +import { KEEP_URL_REGEX } from 'models/resource'; type CssRules = | "card" @@ -77,11 +90,14 @@ type CssRules = | "collectionLink" | "imagePreview" | "valArray" + | "secondaryVal" + | "secondaryRow" | "emptyValue" - | "halfRow" + | "noBorderRow" | "symmetricTabs" | "imagePlaceholder" - | "rowWithPreview"; + | "rowWithPreview" + | "labelColumn"; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ card: { @@ -89,7 +105,7 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, header: { paddingTop: theme.spacing.unit, - paddingBottom: theme.spacing.unit, + paddingBottom: 0, }, iconHeader: { fontSize: '1.875rem', @@ -102,7 +118,7 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ content: { height: `calc(100% - ${theme.spacing.unit * 7}px - ${theme.spacing.unit * 1.5}px)`, padding: theme.spacing.unit * 1.0, - paddingTop: theme.spacing.unit * 0.5, + paddingTop: 0, '&:last-child': { paddingBottom: theme.spacing.unit * 1, } @@ -112,7 +128,8 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ paddingTop: theme.spacing.unit * 0.5 }, tableWrapper: { - height: `calc(100% - ${theme.spacing.unit * 6}px)`, + height: 'auto', + maxHeight: `calc(100% - ${theme.spacing.unit * 4.5}px)`, overflow: 'auto', }, tableRoot: { @@ -158,10 +175,19 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ display: 'inline', } }, + secondaryVal: { + paddingLeft: '20px', + }, + secondaryRow: { + height: '29px', + verticalAlign: 'top', + position: 'relative', + top: '-9px', + }, emptyValue: { color: theme.customs.colors.grey500, }, - halfRow: { + noBorderRow: { '& td': { borderBottom: 'none', } @@ -182,7 +208,10 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, rowWithPreview: { verticalAlign: 'bottom', - } + }, + labelColumn: { + minWidth: '120px', + }, }); export enum ProcessIOCardType { @@ -192,8 +221,8 @@ export enum ProcessIOCardType { export interface ProcessIOCardDataProps { process: Process; label: ProcessIOCardType; - params: ProcessIOParameter[]; - raw?: any; + params: ProcessIOParameter[] | null; + raw: any; mounts?: InputCollectionMount[]; outputUuid?: string; } @@ -209,7 +238,7 @@ const mapDispatchToProps = (dispatch: Dispatch): ProcessIOCardActionProps => ({ type ProcessIOCardProps = ProcessIOCardDataProps & ProcessIOCardActionProps & WithStyles & MPVPanelProps; export const ProcessIOCard = withStyles(styles)(connect(null, mapDispatchToProps)( - ({ classes, label, params, raw, mounts, outputUuid, doHidePanel, doMaximizePanel, panelMaximized, panelName, process, navigateTo }: ProcessIOCardProps) => { + ({ classes, label, params, raw, mounts, outputUuid, doHidePanel, doMaximizePanel, doUnMaximizePanel, panelMaximized, panelName, process, navigateTo }: ProcessIOCardProps) => { const [mainProcTabState, setMainProcTabState] = useState(0); const handleMainProcTabChange = (event: React.MouseEvent, value: number) => { setMainProcTabState(value); @@ -220,6 +249,10 @@ export const ProcessIOCard = withStyles(styles)(connect(null, mapDispatchToProps const PanelIcon = label === ProcessIOCardType.INPUT ? InputIcon : OutputIcon; const mainProcess = !process.containerRequest.requestingContainerUuid; + const loading = raw === null || raw === undefined || params === null; + const hasRaw = !!(raw && Object.keys(raw).length > 0); + const hasParams = !!(params && params.length > 0); + return {setShowImagePreview(!showImagePreview)}}>{showImagePreview ? : } } + { doUnMaximizePanel && panelMaximized && + + + } { doMaximizePanel && !panelMaximized && } { doHidePanel && - + } } /> {mainProcess ? (<> - {params.length ? + {/* raw is undefined until params are loaded */} + {loading && + + } + {/* Once loaded, either raw or params may still be empty + * Raw when all params are empty + * Params when raw is provided by containerRequest properties but workflow mount is absent for preview + */} + {(!loading && (hasRaw || hasParams)) && <> - + {/* params will be empty on processes without workflow definitions in mounts, so we only show raw */} + {hasParams && } - {mainProcTabState === 0 &&
+ {(mainProcTabState === 0 && params && hasParams) &&
} - {mainProcTabState === 1 &&
- + {(mainProcTabState === 1 || !hasParams) &&
+
} - : - - - - } + } + {!loading && !hasRaw && !hasParams && + + } ) : + // Subprocess (<> {((mounts && mounts.length) || outputUuid) ? <> @@ -302,6 +348,7 @@ export type ProcessIOValue = { display: ReactElement; imageUrl?: string; collection?: ReactElement; + secondary?: boolean; } export type ProcessIOParameter = { @@ -324,7 +371,7 @@ const ProcessIOPreview = withStyles(styles)( Name - {showLabel && Label} + {showLabel && Label} Value Collection @@ -333,10 +380,12 @@ const ProcessIOPreview = withStyles(styles)( {data.map((param: ProcessIOParameter) => { const firstVal = param.value.length > 0 ? param.value[0] : undefined; const rest = param.value.slice(1); - const rowClass = rest.length > 0 ? classes.halfRow : undefined; + const mainRowClasses = { + [classes.noBorderRow]: (rest.length > 0), + }; return <> - + {param.id} @@ -350,8 +399,12 @@ const ProcessIOPreview = withStyles(styles)( - {rest.map((val, i) => ( - + {rest.map((val, i) => { + const rowClasses = { + [classes.noBorderRow]: (i < rest.length-1), + [classes.secondaryRow]: val.secondary, + }; + return {showLabel && } @@ -363,7 +416,7 @@ const ProcessIOPreview = withStyles(styles)( - ))} + })} ; })} @@ -380,17 +433,12 @@ const ProcessValuePreview = withStyles(styles)( {value.imageUrl && showImagePreview ? Inline Preview : ""} {value.imageUrl && !showImagePreview ? : ""} - + {value.display} ) -const handleClick = (url) => { - window.open(url, '_blank'); -} - - interface ProcessIORawDataProps { data: ProcessIOParameter[]; } @@ -398,9 +446,7 @@ interface ProcessIORawDataProps { const ProcessIORaw = withStyles(styles)( ({ data }: ProcessIORawDataProps) => -
-                {JSON.stringify(data, null, 2)}
-            
+
); @@ -441,37 +487,33 @@ export const getIOParamDisplayValue = (auth: AuthState, input: CommandInputParam switch (true) { case isPrimitiveOfType(input, CWLType.BOOLEAN): const boolValue = (input as BooleanCommandInputParameter).value; - return boolValue !== undefined && !(Array.isArray(boolValue) && boolValue.length === 0) ? - [{display:
{String(boolValue)}
}] : + [{display: renderPrimitiveValue(boolValue, false) }] : [{display: }]; case isPrimitiveOfType(input, CWLType.INT): case isPrimitiveOfType(input, CWLType.LONG): const intValue = (input as IntCommandInputParameter).value; - return intValue !== undefined && // Missing values are empty array !(Array.isArray(intValue) && intValue.length === 0) ? - [{display:
{String(intValue)}
}] + [{display: renderPrimitiveValue(intValue, false) }] : [{display: }]; case isPrimitiveOfType(input, CWLType.FLOAT): case isPrimitiveOfType(input, CWLType.DOUBLE): const floatValue = (input as FloatCommandInputParameter).value; - return floatValue !== undefined && !(Array.isArray(floatValue) && floatValue.length === 0) ? - [{display:
{String(floatValue)}
}]: + [{display: renderPrimitiveValue(floatValue, false) }]: [{display: }]; case isPrimitiveOfType(input, CWLType.STRING): const stringValue = (input as StringCommandInputParameter).value || undefined; - return stringValue !== undefined && !(Array.isArray(stringValue) && stringValue.length === 0) ? - [{display:
{stringValue}
}] : + [{display: renderPrimitiveValue(stringValue, false) }] : [{display: }]; case isPrimitiveOfType(input, CWLType.FILE): @@ -482,14 +524,13 @@ export const getIOParamDisplayValue = (auth: AuthState, input: CommandInputParam ...(mainFile && !(Array.isArray(mainFile) && mainFile.length === 0) ? [mainFile] : []), ...secondaryFiles ]; - + const mainFilePdhUrl = mainFile ? getResourcePdhUrl(mainFile, pdh) : ""; return files.length ? - files.map(file => fileToProcessIOValue(file, auth, pdh)) : + files.map((file, i) => fileToProcessIOValue(file, (i > 0), auth, pdh, (i > 0 ? mainFilePdhUrl : ""))) : [{display: }]; case isPrimitiveOfType(input, CWLType.DIRECTORY): const directory = (input as DirectoryCommandInputParameter).value; - return directory !== undefined && !(Array.isArray(directory) && directory.length === 0) ? [directoryToProcessIOValue(directory, auth, pdh)] : @@ -499,63 +540,77 @@ export const getIOParamDisplayValue = (auth: AuthState, input: CommandInputParam !(input.type instanceof Array) && input.type.type === 'enum': const enumValue = (input as EnumCommandInputParameter).value; - - return enumValue !== undefined ? - [{ display:
{(input as EnumCommandInputParameter).value || ''}
}] : + return enumValue !== undefined && enumValue ? + [{ display:
{enumValue}
}] : [{display: }]; case isArrayOfType(input, CWLType.STRING): const strArray = (input as StringArrayCommandInputParameter).value || []; return strArray.length ? - [{ display: <>{((input as StringArrayCommandInputParameter).value || []).map((val) => )} }] : + [{ display: <>{strArray.map((val) => renderPrimitiveValue(val, true))} }] : [{display: }]; case isArrayOfType(input, CWLType.INT): case isArrayOfType(input, CWLType.LONG): const intArray = (input as IntArrayCommandInputParameter).value || []; - return intArray.length ? - [{ display: <>{((input as IntArrayCommandInputParameter).value || []).map((val) => )} }] : + [{ display: <>{intArray.map((val) => renderPrimitiveValue(val, true))} }] : [{display: }]; case isArrayOfType(input, CWLType.FLOAT): case isArrayOfType(input, CWLType.DOUBLE): const floatArray = (input as FloatArrayCommandInputParameter).value || []; - return floatArray.length ? - [{ display: <>{floatArray.map((val) => )} }] : + [{ display: <>{floatArray.map((val) => renderPrimitiveValue(val, true))} }] : [{display: }]; case isArrayOfType(input, CWLType.FILE): - const fileArrayMainFile = ((input as FileArrayCommandInputParameter).value || []); - const fileArraySecondaryFiles = fileArrayMainFile.map((file) => ( - ((file as unknown) as FileWithSecondaryFiles)?.secondaryFiles || [] - )).reduce((acc: File[], params: File[]) => (acc.concat(params)), []); - - const fileArrayFiles = [ - ...fileArrayMainFile, - ...fileArraySecondaryFiles - ]; - - return fileArrayFiles.length ? - fileArrayFiles.map(file => fileToProcessIOValue(file, auth, pdh)) : + const fileArrayMainFiles = ((input as FileArrayCommandInputParameter).value || []); + const firstMainFilePdh = (fileArrayMainFiles.length > 0 && fileArrayMainFiles[0]) ? getResourcePdhUrl(fileArrayMainFiles[0], pdh) : ""; + + // Convert each main file into separate arrays of ProcessIOValue to preserve secondaryFile grouping + const fileArrayValues = fileArrayMainFiles.map((mainFile: File, i): ProcessIOValue[] => { + const secondaryFiles = ((mainFile as unknown) as FileWithSecondaryFiles)?.secondaryFiles || []; + return [ + // Pass firstMainFilePdh to secondary files and every main file besides the first to hide pdh if equal + ...(mainFile ? [fileToProcessIOValue(mainFile, false, auth, pdh, i > 0 ? firstMainFilePdh : "")] : []), + ...(secondaryFiles.map(file => fileToProcessIOValue(file, true, auth, pdh, firstMainFilePdh))) + ]; + // Reduce each mainFile/secondaryFile group into single array preserving ordering + }).reduce((acc: ProcessIOValue[], mainFile: ProcessIOValue[]) => (acc.concat(mainFile)), []); + + return fileArrayValues.length ? + fileArrayValues : [{display: }]; case isArrayOfType(input, CWLType.DIRECTORY): const directories = (input as DirectoryArrayCommandInputParameter).value || []; - return directories.length ? directories.map(directory => directoryToProcessIOValue(directory, auth, pdh)) : [{display: }]; default: - return []; + return [{display: }]; } }; +const renderPrimitiveValue = (value: any, asChip: boolean) => { + const isObject = typeof value === 'object'; + if (!isObject) { + return asChip ? :
{String(value)}
; + } else { + return asChip ? : ; + } +}; + +/* + * @returns keep url without keep: prefix + */ const getKeepUrl = (file: File | Directory, pdh?: string): string => { const isKeepUrl = file.location?.startsWith('keep:') || false; - const keepUrl = isKeepUrl ? file.location : pdh ? `keep:${pdh}/${file.location}` : file.location; + const keepUrl = isKeepUrl ? + file.location?.replace('keep:', '') : + pdh ? `${pdh}/${file.location}` : file.location; return keepUrl || ''; }; @@ -565,11 +620,15 @@ interface KeepUrlProps { pdh?: string; } -const KeepUrlBase = withStyles(styles)(({auth, res, pdh, classes}: KeepUrlProps & WithStyles) => { +const getResourcePdhUrl = (res: File | Directory, pdh?: string): string => { const keepUrl = getKeepUrl(res, pdh); - const pdhUrl = keepUrl ? keepUrl.split('/').slice(0, 1)[0] : ''; + return keepUrl ? keepUrl.split('/').slice(0, 1)[0] : ''; +}; + +const KeepUrlBase = withStyles(styles)(({auth, res, pdh, classes}: KeepUrlProps & WithStyles) => { + const pdhUrl = getResourcePdhUrl(res, pdh); // Passing a pdh always returns a relative wb2 collection url - const pdhWbPath = getNavUrl(pdhUrl.replace('keep:', ''), auth); + const pdhWbPath = getNavUrl(pdhUrl, auth); return pdhUrl && pdhWbPath ? {pdhUrl} : <>; @@ -581,19 +640,18 @@ const KeepUrlPath = withStyles(styles)(({auth, res, pdh, classes}: KeepUrlProps const keepUrlPath = keepUrlParts.length > 1 ? keepUrlParts.slice(1).join('/') : ''; const keepUrlPathNav = getKeepNavUrl(auth, res, pdh); - return keepUrlPath && keepUrlPathNav ? - handleClick(keepUrlPathNav)}>{keepUrlPath} : - // Show No value for root collection io that lacks path part + return keepUrlPathNav ? + {keepUrlPath || '/'} : ; }); const getKeepNavUrl = (auth: AuthState, file: File | Directory, pdh?: string): string => { - let keepUrl = getKeepUrl(file, pdh).replace('keep:', ''); + let keepUrl = getKeepUrl(file, pdh); return (getInlineFileUrl(`${auth.config.keepWebServiceUrl}/c=${keepUrl}?api_token=${auth.apiToken}`, auth.config.keepWebServiceUrl, auth.config.keepWebInlineServiceUrl)); }; const getImageUrl = (auth: AuthState, file: File, pdh?: string): string => { - const keepUrl = getKeepUrl(file, pdh).replace('keep:', ''); + const keepUrl = getKeepUrl(file, pdh); return getInlineFileUrl(`${auth.config.keepWebServiceUrl}/c=${keepUrl}?api_token=${auth.apiToken}`, auth.config.keepWebServiceUrl, auth.config.keepWebInlineServiceUrl); }; @@ -601,6 +659,11 @@ const isFileImage = (basename?: string): boolean => { return basename ? (mime.getType(basename) || "").startsWith('image/') : false; }; +const isFileUrl = (location?: string): boolean => ( + !!location && !KEEP_URL_REGEX.exec(location) && + (location.startsWith("http://") || location.startsWith("https://")) +); + const normalizeDirectoryLocation = (directory: Directory): Directory => { if (!directory.location) { return directory; @@ -612,6 +675,8 @@ const normalizeDirectoryLocation = (directory: Directory): Directory => { }; const directoryToProcessIOValue = (directory: Directory, auth: AuthState, pdh?: string): ProcessIOValue => { + if (isExternalValue(directory)) {return {display: }} + const normalizedDirectory = normalizeDirectoryLocation(directory); return { display: , @@ -619,18 +684,41 @@ const directoryToProcessIOValue = (directory: Directory, auth: AuthState, pdh?: }; }; -const fileToProcessIOValue = (file: File, auth: AuthState, pdh?: string): ProcessIOValue => { +const fileToProcessIOValue = (file: File, secondary: boolean, auth: AuthState, pdh: string | undefined, mainFilePdh: string): ProcessIOValue => { + if (isExternalValue(file)) {return {display: }} + + if (isFileUrl(file.location)) { + return { + display: {file.location}, + secondary, + }; + } + + const resourcePdh = getResourcePdhUrl(file, pdh); return { display: , + secondary, imageUrl: isFileImage(file.basename) ? getImageUrl(auth, file, pdh) : undefined, - collection: , + collection: (resourcePdh !== mainFilePdh) ? : <>, } }; +const isExternalValue = (val: any) => + Object.keys(val).includes('$import') || + Object.keys(val).includes('$include') + const EmptyValue = withStyles(styles)( ({classes}: WithStyles) => No value ); +const UnsupportedValue = withStyles(styles)( + ({classes}: WithStyles) => Cannot display value +); + +const UnsupportedValueChip = withStyles(styles)( + ({classes}: WithStyles) => } label={"Cannot display value"} /> +); + const ImagePlaceholder = withStyles(styles)( ({classes}: WithStyles) => );