X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/605e792e4854c7aad2f08e08fa7a8d9eba9d64a1..cba2e466c8708c1a89ae2d766d31fa9d04d6f3be:/src/views/process-panel/process-panel.tsx diff --git a/src/views/process-panel/process-panel.tsx b/src/views/process-panel/process-panel.tsx index dff1437b..575c6591 100644 --- a/src/views/process-panel/process-panel.tsx +++ b/src/views/process-panel/process-panel.tsx @@ -2,94 +2,88 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import { RootState } from 'store/store'; +import { connect } from 'react-redux'; +import { getProcess, getSubprocesses, Process, getProcessStatus } from 'store/processes/process'; +import { Dispatch } from 'redux'; +import { openProcessContextMenu } from 'store/context-menu/context-menu-actions'; import { - StyleRulesCallback, WithStyles, withStyles, Card, - CardHeader, IconButton, CardContent, Grid -} from '@material-ui/core'; -import { ArvadosTheme } from '~/common/custom-theme'; -import { ProcessResource } from '~/models/process'; -import { DispatchProp, connect } from 'react-redux'; -import { RouteComponentProps } from 'react-router'; -import { MoreOptionsIcon, ProcessIcon } from '~/components/icon/icon'; -import { DetailsAttribute } from '~/components/details-attribute/details-attribute'; -import { RootState } from '~/store/store'; + ProcessPanelRootDataProps, + ProcessPanelRootActionProps, + ProcessPanelRoot +} from './process-panel-root'; +import { + getProcessPanelCurrentUuid, + ProcessPanel as ProcessPanelState +} from 'store/process-panel/process-panel'; +import { groupBy } from 'lodash'; +import { + loadInputs, + loadOutputDefinitions, + loadOutputs, + toggleProcessPanelFilter, + updateOutputParams, + loadNodeJson +} from 'store/process-panel/process-panel-actions'; +import { cancelRunningWorkflow, resumeOnHoldWorkflow, startWorkflow } from 'store/processes/processes-actions'; +import { navigateToLogCollection, pollProcessLogs, setProcessLogsPanelFilter } from 'store/process-logs-panel/process-logs-panel-actions'; +import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions'; -type CssRules = 'card' | 'iconHeader' | 'label' | 'value'; +const mapStateToProps = ({ router, auth, resources, processPanel, processLogsPanel }: RootState): ProcessPanelRootDataProps => { + const uuid = getProcessPanelCurrentUuid(router) || ''; + const subprocesses = getSubprocesses(uuid)(resources); + return { + process: getProcess(uuid)(resources), + subprocesses: subprocesses.filter(subprocess => processPanel.filters[getProcessStatus(subprocess)]), + filters: getFilters(processPanel, subprocesses), + processLogsPanel: processLogsPanel, + auth: auth, + inputRaw: processPanel.inputRaw, + inputParams: processPanel.inputParams, + outputRaw: processPanel.outputRaw, + outputDefinitions: processPanel.outputDefinitions, + outputParams: processPanel.outputParams, + nodeInfo: processPanel.nodeInfo, + }; +}; -const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ - card: { - marginBottom: theme.spacing.unit * 2 +const mapDispatchToProps = (dispatch: Dispatch): ProcessPanelRootActionProps => ({ + onCopyToClipboard: (message: string) => { + dispatch(snackbarActions.OPEN_SNACKBAR({ + message, + hideDuration: 2000, + kind: SnackbarKind.SUCCESS, + })); }, - iconHeader: { - fontSize: '1.875rem', - color: theme.customs.colors.green700 + onContextMenu: (event, process) => { + dispatch(openProcessContextMenu(event, process)); }, - label: { - fontSize: '0.875rem' + onToggle: status => { + dispatch(toggleProcessPanelFilter(status)); }, - value: { - textTransform: 'none', - fontSize: '0.875rem' - } + cancelProcess: (uuid) => dispatch(cancelRunningWorkflow(uuid)), + startProcess: (uuid) => dispatch(startWorkflow(uuid)), + resumeOnHoldWorkflow: (uuid) => dispatch(resumeOnHoldWorkflow(uuid)), + onLogFilterChange: (filter) => dispatch(setProcessLogsPanelFilter(filter.value)), + navigateToLog: (uuid) => dispatch(navigateToLogCollection(uuid)), + loadInputs: (containerRequest) => dispatch(loadInputs(containerRequest)), + loadOutputs: (containerRequest) => dispatch(loadOutputs(containerRequest)), + loadOutputDefinitions: (containerRequest) => dispatch(loadOutputDefinitions(containerRequest)), + updateOutputParams: () => dispatch(updateOutputParams()), + loadNodeJson: (containerRequest) => dispatch(loadNodeJson(containerRequest)), + pollProcessLogs: (processUuid) => dispatch(pollProcessLogs(processUuid)), }); -interface ProcessPanelDataProps { - item: ProcessResource; -} - -interface ProcessPanelActionProps { - onItemRouteChange: (processId: string) => void; - onContextMenu: (event: React.MouseEvent, item: ProcessResource) => void; -} - -type ProcessPanelProps = ProcessPanelDataProps & ProcessPanelActionProps & DispatchProp & WithStyles & RouteComponentProps<{ id: string }>; - -export const ProcessPanel = withStyles(styles)( - connect((state: RootState) => ({ - item: state.collectionPanel.item, - tags: state.collectionPanel.tags - }))( - class extends React.Component { - render() { - const { classes, onContextMenu, item } = this.props; +const getFilters = (processPanel: ProcessPanelState, processes: Process[]) => { + const grouppedProcesses = groupBy(processes, getProcessStatus); + return Object + .keys(processPanel.filters) + .map(filter => ({ + label: filter, + value: (grouppedProcesses[filter] || []).length, + checked: processPanel.filters[filter], + key: filter, + })); +}; - return
- - } - action={ - onContextMenu(event, item)}> - - - } - title="Pipeline template that generates a config file from a template" - subheader="(no description)" - /> - - - - - - - - - - - -
; - } - componentWillReceiveProps({ match, item, onItemRouteChange }: ProcessPanelProps) { - if (!item || match.params.id !== item.uuid) { - onItemRouteChange(match.params.id); - } - } - } - ) -); \ No newline at end of file +export const ProcessPanel = connect(mapStateToProps, mapDispatchToProps)(ProcessPanelRoot);