X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/be4232a50f210b4c4023e3dc5fddb931e71a1c4a..670d92f78e9af2390b93e5d984f5fabf59a16071:/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 b8021fb6..b708ad62 100644 --- a/src/store/details-panel/details-panel-action.ts +++ b/src/store/details-panel/details-panel-action.ts @@ -2,48 +2,75 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { unionize, ofType, UnionOf } from "unionize"; -import { Dispatch } from "redux"; -import { Resource, ResourceKind } from "~/models/resource"; -import { RootState } from "../store"; -import { ServiceRepository } from "~/services/services"; +import { unionize, ofType, UnionOf } from 'common/unionize'; +import { RootState } from 'store/store'; +import { Dispatch } from 'redux'; +import { getResource } from 'store/resources/resources'; +import { ServiceRepository } from 'services/services'; +import { resourcesActions } from 'store/resources/resources-actions'; +import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions'; +import { FilterBuilder } from 'services/api/filter-builder'; +import { OrderBuilder } from 'services/api/order-builder'; +import { CollectionResource } from 'models/collection'; +import { extractUuidKind, ResourceKind } from 'models/resource'; + +export const SLIDE_TIMEOUT = 500; export const detailsPanelActions = unionize({ TOGGLE_DETAILS_PANEL: ofType<{}>(), - LOAD_DETAILS: ofType<{ uuid: string, kind: ResourceKind }>(), - LOAD_DETAILS_SUCCESS: ofType<{ item: Resource }>(), - UPDATE_DETAILS: ofType<{ item: Resource }>() -}, { tag: 'type', value: 'payload' }); + OPEN_DETAILS_PANEL: ofType(), + LOAD_DETAILS_PANEL: ofType() +}); export type DetailsPanelAction = UnionOf; -export const loadDetails = (uuid: string, kind: ResourceKind) => - async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { - dispatch(detailsPanelActions.LOAD_DETAILS({ uuid, kind })); - const item = await getService(services, kind).get(uuid); - dispatch(detailsPanelActions.LOAD_DETAILS_SUCCESS({ item })); +export const loadDetailsPanel = (uuid: string) => + (dispatch: Dispatch, getState: () => RootState) => { + if (getState().detailsPanel.isOpened) { + switch(extractUuidKind(uuid)) { + case ResourceKind.COLLECTION: + const c = getResource(uuid)(getState().resources); + dispatch(refreshCollectionVersionsList(c!.currentVersionUuid)); + break; + default: + break; + } + } + dispatch(detailsPanelActions.LOAD_DETAILS_PANEL(uuid)); }; -export const updateDetails = (item: Resource) => - async (dispatch: Dispatch, getState: () => RootState) => { - const currentItem = getState().detailsPanel.item; - if (currentItem && (currentItem.uuid === item.uuid)) { - dispatch(detailsPanelActions.UPDATE_DETAILS({ item })); - dispatch(detailsPanelActions.LOAD_DETAILS_SUCCESS({ item })); +export const openDetailsPanel = (uuid?: string, tabNr: number = 0) => + (dispatch: Dispatch) => { + dispatch(detailsPanelActions.OPEN_DETAILS_PANEL(tabNr)); + if (uuid !== undefined) { + dispatch(loadDetailsPanel(uuid)); } }; +export const refreshCollectionVersionsList = (uuid: string) => + (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { + services.collectionService.list({ + filters: new FilterBuilder() + .addEqual('current_version_uuid', uuid) + .getFilters(), + includeOldVersions: true, + order: new OrderBuilder().addDesc("version").getOrder() + }).then(versions => dispatch(resourcesActions.SET_RESOURCES(versions.items)) + ).catch(e => snackbarActions.OPEN_SNACKBAR({ + message: `Couldn't retrieve versions: ${e.errors[0]}`, + hideDuration: 2000, + kind: SnackbarKind.ERROR }) + ); + }; -const getService = (services: ServiceRepository, kind: ResourceKind) => { - switch (kind) { - case ResourceKind.PROJECT: - return services.projectService; - case ResourceKind.COLLECTION: - return services.collectionService; - default: - return services.projectService; +export const toggleDetailsPanel = () => (dispatch: Dispatch, getState: () => RootState) => { + // because of material-ui issue resizing details panel breaks tabs. + // triggering window resize event fixes that. + setTimeout(() => { + window.dispatchEvent(new Event('resize')); + }, SLIDE_TIMEOUT); + dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL()); + if (getState().detailsPanel.isOpened) { + dispatch(loadDetailsPanel(getState().detailsPanel.resourceUuid)); } }; - - -