X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/cf9e11013710478809fe44b5cad7d3b77f6d5a1f..b238c5cec390860b3265238e07b41d62349f70ce:/src/views/process-log-panel/process-log-panel.tsx diff --git a/src/views/process-log-panel/process-log-panel.tsx b/src/views/process-log-panel/process-log-panel.tsx index 2b2d6842..f5425dbc 100644 --- a/src/views/process-log-panel/process-log-panel.tsx +++ b/src/views/process-log-panel/process-log-panel.tsx @@ -2,17 +2,15 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; import { RootState } from '~/store/store'; import { connect } from 'react-redux'; import { getProcess } from '~/store/processes/process'; import { Dispatch } from 'redux'; import { openProcessContextMenu } from '~/store/context-menu/context-menu-actions'; -import { matchProcessLogRoute } from '~/routes/routes'; import { ProcessLogPanelRootDataProps, ProcessLogPanelRootActionProps, ProcessLogPanelRoot } from './process-log-panel-root'; import { getProcessPanelLogs } from '~/store/process-logs-panel/process-logs-panel'; -import { setProcessLogsPanelFilter } from '~/store/process-logs-panel/process-logs-panel-actions'; -import { getProcessLogsPanelCurrentUuid } from '../../store/process-logs-panel/process-logs-panel'; +import { setProcessLogsPanelFilter, navigateToLogCollection } from '~/store/process-logs-panel/process-logs-panel-actions'; +import { getProcessLogsPanelCurrentUuid } from '~/store/process-logs-panel/process-logs-panel'; export interface Log { object_uuid: string; @@ -39,11 +37,14 @@ const mapStateToProps = (state: RootState): ProcessLogPanelRootDataProps => { }; const mapDispatchToProps = (dispatch: Dispatch): ProcessLogPanelRootActionProps => ({ - onContextMenu: (event: React.MouseEvent) => { - dispatch(openProcessContextMenu(event)); + onContextMenu: (event, process) => { + dispatch(openProcessContextMenu(event, process)); }, - onChange: (filter: FilterOption) => { + onChange: filter => { dispatch(setProcessLogsPanelFilter(filter.value)); + }, + navigateToLogCollection: (uuid: string) => { + dispatch(navigateToLogCollection(uuid)); } });