X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/38c87aec8a898f4d1c180be6a7554523aeadcb83..0c6cf2fccc1f1c2a175610312d4b1b83adf9df75:/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 e604fe2b..3e695a2f 100644 --- a/src/views/process-panel/process-panel-root.tsx +++ b/src/views/process-panel/process-panel-root.tsx @@ -12,12 +12,17 @@ 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 { 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'; type CssRules = 'root'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { width: '100%', + height: '100%', }, }); @@ -25,6 +30,7 @@ export interface ProcessPanelRootDataProps { process?: Process; subprocesses: Array; filters: Array; + processLogsPanel: ProcessLogsPanel; } export interface ProcessPanelRootActionProps { @@ -34,19 +40,25 @@ export interface ProcessPanelRootActionProps { navigateToOutput: (uuid: string) => void; navigateToWorkflow: (uuid: string) => void; cancelProcess: (uuid: string) => void; + onLogFilterChange: (filter: FilterOption) => void; + navigateToLog: (uuid: string) => void; + onLogCopyToClipboard: (uuid: string) => void; } export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRootActionProps & WithStyles; const panelsData: MPVPanelState[] = [ {name: "Info"}, + {name: "Details", visible: false}, + {name: "Logs", visible: true}, {name: "Subprocesses"}, ]; -export const ProcessPanelRoot = withStyles(styles)(({ process, ...props }: ProcessPanelRootProps) => +export const ProcessPanelRoot = withStyles(styles)( + ({ process, processLogsPanel, ...props }: ProcessPanelRootProps) => process ? - + props.onContextMenu(event, process)} @@ -56,7 +68,26 @@ export const ProcessPanelRoot = withStyles(styles)(({ process, ...props }: Proce cancelProcess={props.cancelProcess} /> - + + + + + ({ label: filter, value: filter }) + )} + onLogFilterChange={props.onLogFilterChange} + navigateToLog={props.navigateToLog} + /> + + @@ -68,4 +99,3 @@ export const ProcessPanelRoot = withStyles(styles)(({ process, ...props }: Proce icon={ProcessIcon} messages={['Process not found']} /> ); -