16672: Removes unused code, avoids requesting the CR twice.
[arvados-workbench2.git] / src / store / process-panel / process-panel-actions.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { unionize, ofType, UnionOf } from "common/unionize";
6 import { loadProcess } from 'store/processes/processes-actions';
7 import { Dispatch } from 'redux';
8 import { ProcessStatus } from 'store/processes/process';
9 import { RootState } from 'store/store';
10 import { ServiceRepository } from "services/services";
11 import { navigateTo, navigateToWorkflows } from 'store/navigation/navigation-action';
12 import { snackbarActions } from 'store/snackbar/snackbar-actions';
13 import { SnackbarKind } from '../snackbar/snackbar-actions';
14 import { showWorkflowDetails } from 'store/workflow-panel/workflow-panel-actions';
15 import { loadSubprocessPanel } from "../subprocess-panel/subprocess-panel-actions";
16 import { initProcessLogsPanel } from "store/process-logs-panel/process-logs-panel-actions";
17
18 export const processPanelActions = unionize({
19     SET_PROCESS_PANEL_CONTAINER_REQUEST_UUID: ofType<string>(),
20     SET_PROCESS_PANEL_FILTERS: ofType<string[]>(),
21     TOGGLE_PROCESS_PANEL_FILTER: ofType<string>(),
22 });
23
24 export type ProcessPanelAction = UnionOf<typeof processPanelActions>;
25
26 export const toggleProcessPanelFilter = processPanelActions.TOGGLE_PROCESS_PANEL_FILTER;
27
28 export const loadProcessPanel = (uuid: string) =>
29     async (dispatch: Dispatch) => {
30         dispatch<ProcessPanelAction>(processPanelActions.SET_PROCESS_PANEL_CONTAINER_REQUEST_UUID(uuid));
31         await dispatch<any>(loadProcess(uuid));
32         dispatch(initProcessPanelFilters);
33         dispatch<any>(initProcessLogsPanel(uuid));
34         dispatch<any>(loadSubprocessPanel());
35     };
36
37 export const navigateToOutput = (uuid: string) =>
38     async (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
39         try {
40             await services.collectionService.get(uuid);
41             dispatch<any>(navigateTo(uuid));
42         } catch {
43             dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'This collection does not exists!', hideDuration: 2000, kind: SnackbarKind.ERROR }));
44         }
45     };
46
47 export const openWorkflow = (uuid: string) =>
48     (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
49         dispatch<any>(navigateToWorkflows);
50         dispatch<any>(showWorkflowDetails(uuid));
51     };
52
53 export const initProcessPanelFilters = processPanelActions.SET_PROCESS_PANEL_FILTERS([
54     ProcessStatus.QUEUED,
55     ProcessStatus.COMPLETED,
56     ProcessStatus.FAILED,
57     ProcessStatus.RUNNING,
58     ProcessStatus.LOCKED,
59     ProcessStatus.CANCELLED
60 ]);