X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f05e6a9cece7e3b118134136ee81bd7477ad10a0..cc493b89840b48f40c2beaf626994724331aa196:/src/store/details-panel/details-panel-action.ts diff --git a/src/store/details-panel/details-panel-action.ts b/src/store/details-panel/details-panel-action.ts index ffa66b69..2724a3e3 100644 --- a/src/store/details-panel/details-panel-action.ts +++ b/src/store/details-panel/details-panel-action.ts @@ -2,43 +2,17 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { unionize, ofType, UnionOf } from "unionize"; -import CommonResourceService, { Resource } from "../../common/api/common-resource-service"; -import { ResourceKind } from "../../models/kinds"; -import { Dispatch } from "redux"; -import { groupsService } from "../../services/services"; -import { serverApi } from "../../common/api/server-api"; - -const actions = unionize({ +import { unionize, ofType, UnionOf } from '~/common/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; - -export const loadDetails = (uuid: string, kind: ResourceKind) => - (dispatch: Dispatch) => { - dispatch(actions.LOAD_DETAILS({ uuid, kind })); - getService(kind) - .get(uuid) - .then(project => { - dispatch(actions.LOAD_DETAILS_SUCCESS({ item: project })); - }); - }; - -const getService = (kind: ResourceKind) => { - switch (kind) { - case ResourceKind.Project: - return new CommonResourceService(serverApi, "groups"); - case ResourceKind.Collection: - return new CommonResourceService(serverApi, "collections"); - default: - return new CommonResourceService(serverApi, ""); - } -}; + LOAD_DETAILS_PANEL: ofType() +}); + +export type DetailsPanelAction = UnionOf; + +export const loadDetailsPanel = (uuid: string) => detailsPanelActions.LOAD_DETAILS_PANEL(uuid); +