1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { Dispatch } from 'redux';
6 import { RootState } from 'store/store';
7 import { ServiceRepository } from 'services/services';
8 import { bindDataExplorerActions } from 'store/data-explorer/data-explorer-action';
9 import { propertiesActions } from 'store/properties/properties-actions';
10 import { getProperty } from 'store/properties/properties';
11 import { navigateToRunProcess, navigateTo } from 'store/navigation/navigation-action';
14 runProcessPanelActions,
16 getWorkflowRunnerSettings
17 } from 'store/run-process-panel/run-process-panel-actions';
18 import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions';
19 import { initialize } from 'redux-form';
20 import { RUN_PROCESS_BASIC_FORM } from 'views/run-process-panel/run-process-basic-form';
21 import { RUN_PROCESS_INPUTS_FORM } from 'views/run-process-panel/run-process-inputs-form';
22 import { RUN_PROCESS_ADVANCED_FORM } from 'views/run-process-panel/run-process-advanced-form';
23 import { getResource } from 'store/resources/resources';
24 import { ProjectResource } from 'models/project';
25 import { UserResource } from 'models/user';
26 import { getWorkflowInputs, parseWorkflowDefinition } from 'models/workflow';
28 export const WORKFLOW_PANEL_ID = "workflowPanel";
29 const UUID_PREFIX_PROPERTY_NAME = 'uuidPrefix';
30 const WORKFLOW_PANEL_DETAILS_UUID = 'workflowPanelDetailsUuid';
31 export const workflowPanelActions = bindDataExplorerActions(WORKFLOW_PANEL_ID);
33 export const loadWorkflowPanel = () =>
34 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
35 dispatch(workflowPanelActions.REQUEST_ITEMS());
36 const response = await services.workflowService.list();
37 dispatch(runProcessPanelActions.SET_WORKFLOWS(response.items));
40 export const setUuidPrefix = (uuidPrefix: string) =>
41 propertiesActions.SET_PROPERTY({ key: UUID_PREFIX_PROPERTY_NAME, value: uuidPrefix });
43 export const getUuidPrefix = (state: RootState) => {
44 return state.properties.uuidPrefix;
47 export const openRunProcess = (workflowUuid: string, ownerUuid?: string, name?: string, inputObj?: { [key: string]: any }) =>
48 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
49 const response = await services.workflowService.list();
50 dispatch(runProcessPanelActions.SET_WORKFLOWS(response.items));
52 const workflows = getState().runProcessPanel.searchWorkflows;
53 const workflow = workflows.find(workflow => workflow.uuid === workflowUuid);
55 dispatch<any>(navigateToRunProcess);
56 dispatch<any>(goToStep(1));
57 dispatch(runProcessPanelActions.SET_STEP_CHANGED(true));
58 dispatch(runProcessPanelActions.SET_SELECTED_WORKFLOW(workflow));
59 dispatch<any>(loadPresets(workflow.uuid));
61 dispatch(initialize(RUN_PROCESS_ADVANCED_FORM, getWorkflowRunnerSettings(workflow)));
65 owner = getResource<ProjectResource | UserResource>(ownerUuid)(getState().resources);
66 if (!owner || !owner.canWrite) {
71 dispatch(runProcessPanelActions.SET_PROCESS_OWNER_UUID(owner.uuid));
74 dispatch(initialize(RUN_PROCESS_BASIC_FORM, { name, owner }));
76 const definition = parseWorkflowDefinition(workflow);
78 const inputs = getWorkflowInputs(definition);
80 const values = inputs.reduce((values, input) => ({
82 [input.id]: input.default,
84 dispatch(initialize(RUN_PROCESS_INPUTS_FORM, values));
89 dispatch(initialize(RUN_PROCESS_INPUTS_FORM, inputObj));
92 dispatch<any>(snackbarActions.OPEN_SNACKBAR({ message: `You can't run this process` }));
96 export const getPublicUserUuid = (state: RootState) => {
97 const prefix = state.auth.localCluster;
98 return `${prefix}-tpzed-anonymouspublic`;
100 export const getPublicGroupUuid = (state: RootState) => {
101 const prefix = state.auth.localCluster;
102 return `${prefix}-j7d0g-anonymouspublic`;
104 export const getAllUsersGroupUuid = (state: RootState) => {
105 const prefix = state.auth.localCluster;
106 return `${prefix}-j7d0g-fffffffffffffff`;
109 export const showWorkflowDetails = (uuid: string) =>
110 propertiesActions.SET_PROPERTY({ key: WORKFLOW_PANEL_DETAILS_UUID, value: uuid });
112 export const getWorkflowDetails = (state: RootState) => {
113 const uuid = getProperty<string>(WORKFLOW_PANEL_DETAILS_UUID)(state.properties);
114 const workflows = state.runProcessPanel.workflows;
115 const workflow = workflows.find(workflow => workflow.uuid === uuid);
116 return workflow || undefined;
119 export const deleteWorkflow = (workflowUuid: string, ownerUuid: string) =>
120 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
121 dispatch<any>(navigateTo(ownerUuid));
122 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Removing ...', kind: SnackbarKind.INFO }));
123 await services.workflowService.delete(workflowUuid);
124 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Removed.', hideDuration: 2000, kind: SnackbarKind.SUCCESS }));