Merge branch 'master'
[arvados-workbench2.git] / src / store / details-panel / details-panel-action.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 "unionize";
6 import CommonResourceService from "../../common/api/common-resource-service";
7 import { Dispatch } from "redux";
8 import { serverApi } from "../../common/api/server-api";
9 import { Resource, ResourceKind } from "../../models/resource";
10
11 const actions = unionize({
12     TOGGLE_DETAILS_PANEL: ofType<{}>(),
13     LOAD_DETAILS: ofType<{ uuid: string, kind: ResourceKind }>(),
14     LOAD_DETAILS_SUCCESS: ofType<{ item: Resource }>(),
15 }, { tag: 'type', value: 'payload' });
16
17 export default actions;
18
19 export type DetailsPanelAction = UnionOf<typeof actions>;
20
21 export const loadDetails = (uuid: string, kind: ResourceKind) =>
22     (dispatch: Dispatch) => {
23         dispatch(actions.LOAD_DETAILS({ uuid, kind }));
24         getService(kind)
25             .get(uuid)
26             .then(project => {
27                 dispatch(actions.LOAD_DETAILS_SUCCESS({ item: project }));
28             });
29     };
30
31 const getService = (kind: ResourceKind) => {
32     switch (kind) {
33         case ResourceKind.Project:
34             return new CommonResourceService(serverApi, "groups");
35         case ResourceKind.Collection:
36             return new CommonResourceService(serverApi, "collections");
37         default:
38             return new CommonResourceService(serverApi, "");
39     }
40 };
41
42
43