X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cba0f400f56889778321bdc0fdcf6cee236f6a79..909844cdb1eda3d4cd31f3fa1818ee7eca62d319:/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 feada3acb3..5a0b6b6475 100644 --- a/src/views/process-panel/process-panel-root.tsx +++ b/src/views/process-panel/process-panel-root.tsx @@ -2,68 +2,100 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; -import { Grid } from '@material-ui/core'; +import React from 'react'; +import { Grid, StyleRulesCallback, WithStyles, withStyles } 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 { 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 { FilterOption } from 'views/process-log-panel/process-log-panel'; +import { ProcessLogMainCard } from 'views/process-log-panel/process-log-main-card'; +import { getProcessPanelLogs, ProcessLogsPanel } from 'store/process-logs-panel/process-logs-panel'; + +type CssRules = 'root'; + +const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ + root: { + width: '100%', + }, +}); export interface ProcessPanelRootDataProps { process?: Process; + subprocesses: Array; + filters: Array; + processLogsPanel: ProcessLogsPanel; } export interface ProcessPanelRootActionProps { - onContextMenu: (event: React.MouseEvent) => void; + onContextMenu: (event: React.MouseEvent, process: Process) => void; + onToggle: (status: string) => void; + openProcessInputDialog: (uuid: string) => void; + navigateToOutput: (uuid: string) => void; + navigateToWorkflow: (uuid: string) => void; + cancelProcess: (uuid: string) => void; + onLogFilterChange: (filter: FilterOption) => void; + navigateToLog: (uuid: string) => void; } -export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRootActionProps; +export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRootActionProps & WithStyles; -export const ProcessPanelRoot = (props: ProcessPanelRootProps) => - props.process - ? - +const panelsData: MPVPanelState[] = [ + {name: "Info"}, + {name: "Details", visible: false}, + {name: "Logs", visible: true}, + {name: "Subprocesses"}, +]; + +export const ProcessPanelRoot = withStyles(styles)( + ({ process, processLogsPanel, ...props }: ProcessPanelRootProps) => + process + ? + - - - { return; }} + process={process} + onContextMenu={event => props.onContextMenu(event, process)} + openProcessInputDialog={props.openProcessInputDialog} + navigateToOutput={props.navigateToOutput} + openWorkflow={props.navigateToWorkflow} + cancelProcess={props.cancelProcess} + /> + + + + + + ({ label: filter, value: filter }) + )} + onChange={props.onLogFilterChange} + onContextMenu={function (event: any, process: Process): void { + throw new Error('Function not implemented.'); + } } + navigateToLogCollection={props.navigateToLog} /> - - + + + + + : + justify='center' + style={{ minHeight: '100%' }}> - ; + );