Merge branch 'master' into 14043-switch-tagging-adding-properties
[arvados-workbench2.git] / src / store / details-panel / details-panel-action.ts
index e2d2479b35d2d55f3b62afa227bc7c17a6362d37..2724a3e3465dbbac374a029f1f68c321dce2a9b1 100644 (file)
@@ -2,34 +2,17 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { unionize, ofType, UnionOf } from "unionize";
-import { Resource } from "../../common/api/common-resource-service";
-import { ResourceKind } from "../../models/kinds";
-import { Dispatch } from "redux";
-import { groupsService } from "../../services/services";
+import { unionize, ofType, UnionOf } from '~/common/unionize';
 
-const actions = unionize({
+export const detailsPanelActions = unionize({
     TOGGLE_DETAILS_PANEL: ofType<{}>(),
-    LOAD_DETAILS: ofType<{ uuid: string, kind: ResourceKind }>(),
-    LOAD_DETAILS_SUCCESS: ofType<{ item: Resource }>(),
-}, { tag: 'type', value: 'payload' });
-
-export default actions;
-
-export type DetailsPanelAction = UnionOf<typeof actions>;
-
-export const loadDetails = (uuid: string, kind: ResourceKind) =>
-    (dispatch: Dispatch) => {
-        dispatch(actions.LOAD_DETAILS({ uuid, kind }));
-        if (kind === ResourceKind.Project) {
-            groupsService
-                .get(uuid)
-                .then(project => {
-                    dispatch(actions.LOAD_DETAILS_SUCCESS({ item: project }));
-                });
-        }
-
-    };
+    LOAD_DETAILS_PANEL: ofType<string>()
+});
+
+export type DetailsPanelAction = UnionOf<typeof detailsPanelActions>;
+
+export const loadDetailsPanel = (uuid: string) => detailsPanelActions.LOAD_DETAILS_PANEL(uuid);
+