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 { getResource } from '~/store/resources/resources';
11 import { getProperty } from '~/store/properties/properties';
12 import { WorkflowResource } from '~/models/workflow';
13 import { navigateToRunProcess } from '~/store/navigation/navigation-action';
14 import { goToStep, runProcessPanelActions } from '~/store/run-process-panel/run-process-panel-actions';
15 import { snackbarActions } from '~/store/snackbar/snackbar-actions';
17 export const WORKFLOW_PANEL_ID = "workflowPanel";
18 const UUID_PREFIX_PROPERTY_NAME = 'uuidPrefix';
19 const WORKFLOW_PANEL_DETAILS_UUID = 'workflowPanelDetailsUuid';
20 export const workflowPanelActions = bindDataExplorerActions(WORKFLOW_PANEL_ID);
22 export const loadWorkflowPanel = () =>
23 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
24 dispatch(workflowPanelActions.REQUEST_ITEMS());
25 const response = await services.workflowService.list();
26 dispatch(runProcessPanelActions.SET_WORKFLOWS(response.items));
29 export const setUuidPrefix = (uuidPrefix: string) =>
30 propertiesActions.SET_PROPERTY({ key: UUID_PREFIX_PROPERTY_NAME, value: uuidPrefix });
32 export const getUuidPrefix = (state: RootState) => {
33 return state.properties.uuidPrefix;
36 export const openRunProcess = (uuid: string) =>
37 (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
38 const workflows = getState().runProcessPanel.searchWorkflows;
39 const workflow = workflows.find(workflow => workflow.uuid === uuid);
41 dispatch<any>(navigateToRunProcess);
42 dispatch<any>(goToStep(1));
43 dispatch(runProcessPanelActions.SET_STEP_CHANGED(true));
44 dispatch(runProcessPanelActions.SET_SELECTED_WORKFLOW(workflow));
46 dispatch<any>(snackbarActions.OPEN_SNACKBAR({ message: `You can't run this process` }));
50 export const getPublicUserUuid = (state: RootState) => {
51 const prefix = getProperty<string>(UUID_PREFIX_PROPERTY_NAME)(state.properties);
52 return `${prefix}-tpzed-anonymouspublic`;
54 export const getPublicGroupUuid = (state: RootState) => {
55 const prefix = getProperty<string>(UUID_PREFIX_PROPERTY_NAME)(state.properties);
56 return `${prefix}-j7d0g-anonymouspublic`;
59 export const showWorkflowDetails = (uuid: string) =>
60 propertiesActions.SET_PROPERTY({ key: WORKFLOW_PANEL_DETAILS_UUID, value: uuid });
62 export const getWorkflowDetails = (state: RootState) => {
63 const uuid = getProperty<string>(WORKFLOW_PANEL_DETAILS_UUID)(state.properties);
64 const workflows = state.runProcessPanel.workflows;
65 const workflow = workflows.find(workflow => workflow.uuid === uuid);
66 return workflow || undefined;