1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { unionize, ofType, UnionOf } from '~/common/unionize';
6 import { RootState } from '~/store/store';
7 import { Dispatch } from 'redux';
8 import { dialogActions } from '~/store/dialog/dialog-actions';
9 import { getResource } from '~/store/resources/resources';
10 import { ProjectResource } from "~/models/project";
11 import { ServiceRepository } from '~/services/services';
12 import { TagProperty } from '~/models/tag';
13 import { startSubmit, stopSubmit } from 'redux-form';
14 import { resourcesActions } from '~/store/resources/resources-actions';
15 import {snackbarActions, SnackbarKind} from '~/store/snackbar/snackbar-actions';
16 import { addProperty, deleteProperty } from '~/lib/resource-properties';
18 export const SLIDE_TIMEOUT = 500;
20 export const detailsPanelActions = unionize({
21 TOGGLE_DETAILS_PANEL: ofType<{}>(),
22 OPEN_DETAILS_PANEL: ofType<string>(),
23 LOAD_DETAILS_PANEL: ofType<string>()
26 export type DetailsPanelAction = UnionOf<typeof detailsPanelActions>;
28 export const PROJECT_PROPERTIES_FORM_NAME = 'projectPropertiesFormName';
29 export const PROJECT_PROPERTIES_DIALOG_NAME = 'projectPropertiesDialogName';
31 export const loadDetailsPanel = (uuid: string) => detailsPanelActions.LOAD_DETAILS_PANEL(uuid);
33 export const openDetailsPanel = (uuid: string) => detailsPanelActions.OPEN_DETAILS_PANEL(uuid);
35 export const openProjectPropertiesDialog = () =>
36 (dispatch: Dispatch) => {
37 dispatch<any>(dialogActions.OPEN_DIALOG({ id: PROJECT_PROPERTIES_DIALOG_NAME, data: { } }));
40 export const deleteProjectProperty = (key: string, value: string) =>
41 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
42 const { detailsPanel, resources } = getState();
43 const project = getResource(detailsPanel.resourceUuid)(resources) as ProjectResource;
44 if (!project) { return; }
46 const properties = Object.assign({}, project.properties);
49 const updatedProject = await services.projectService.update(
51 properties: deleteProperty(properties, key, value),
53 dispatch(resourcesActions.SET_RESOURCES([updatedProject]));
54 dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Property has been successfully deleted.", hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
56 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.errors[0], hideDuration: 2000, kind: SnackbarKind.ERROR }));
60 export const createProjectProperty = (data: TagProperty) =>
61 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
62 const { detailsPanel, resources } = getState();
63 const project = getResource(detailsPanel.resourceUuid)(resources) as ProjectResource;
64 if (!project) { return; }
66 dispatch(startSubmit(PROJECT_PROPERTIES_FORM_NAME));
68 const key = data.keyID || data.key;
69 const value = data.valueID || data.value;
70 const properties = Object.assign({}, project.properties);
71 const updatedProject = await services.projectService.update(
73 properties: addProperty(properties, key, value),
76 dispatch(resourcesActions.SET_RESOURCES([updatedProject]));
77 dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Property has been successfully added.", hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
78 dispatch(stopSubmit(PROJECT_PROPERTIES_FORM_NAME));
80 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.errors[0], hideDuration: 2000, kind: SnackbarKind.ERROR }));
83 export const toggleDetailsPanel = () => (dispatch: Dispatch) => {
84 // because of material-ui issue resizing details panel breaks tabs.
85 // triggering window resize event fixes that.
87 window.dispatchEvent(new Event('resize'));
89 dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL());