// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 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 { 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 { ProcessLogPanel } from 'views/process-log-panel/process-log-panel'; import { ProcessDetailsCard } from './process-details-card'; type CssRules = 'root'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { width: '100%', }, }); export interface ProcessPanelRootDataProps { process?: Process; subprocesses: Array; filters: Array; } export interface ProcessPanelRootActionProps { 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; } export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRootActionProps & WithStyles; const panelsData: MPVPanelState[] = [ {name: "Info"}, {name: "Details", visible: false}, {name: "Subprocesses"}, ]; export const ProcessPanelRoot = withStyles(styles)(({ process, ...props }: ProcessPanelRootProps) => process ? props.onContextMenu(event, process)} openProcessInputDialog={props.openProcessInputDialog} navigateToOutput={props.navigateToOutput} openWorkflow={props.navigateToWorkflow} cancelProcess={props.cancelProcess} /> : );