X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2d37867eccb0a76df1a285e7b7e32bbb13db99a1..a080578919155fc6f6d1be2f966951b629ae5b45:/src/store/navigation/navigation-action.ts diff --git a/src/store/navigation/navigation-action.ts b/src/store/navigation/navigation-action.ts index a4b9a8f6ed..f3f9cafe7f 100644 --- a/src/store/navigation/navigation-action.ts +++ b/src/store/navigation/navigation-action.ts @@ -3,23 +3,20 @@ // SPDX-License-Identifier: AGPL-3.0 import { Dispatch } from "redux"; -import projectActions, { getProjectList } from "../project/project-action"; +import { projectActions, getProjectList } from "../project/project-action"; import { push } from "react-router-redux"; import { TreeItemStatus } from "../../components/tree/tree"; -import { getCollectionList } from "../collection/collection-action"; import { findTreeItem } from "../project/project-reducer"; -import { Resource, ResourceKind } from "../../models/resource"; -import sidePanelActions from "../side-panel/side-panel-action"; -import dataExplorerActions from "../data-explorer/data-explorer-action"; +import { dataExplorerActions } from "../data-explorer/data-explorer-action"; import { PROJECT_PANEL_ID } from "../../views/project-panel/project-panel"; -import { projectPanelItems } from "../../views/project-panel/project-panel-selectors"; import { RootState } from "../store"; +import { Resource, ResourceKind } from "../../models/resource"; -export const getResourceUrl = (resource: Resource): string => { +export const getResourceUrl = (resource: T): string => { switch (resource.kind) { case ResourceKind.PROJECT: return `/projects/${resource.uuid}`; case ResourceKind.COLLECTION: return `/collections/${resource.uuid}`; - default: return ""; + default: return resource.href; } }; @@ -36,13 +33,11 @@ export const setProjectItem = (itemId: string, itemMode: ItemMode) => if (treeItem) { - dispatch(sidePanelActions.RESET_SIDE_PANEL_ACTIVITY()); - if (itemMode === ItemMode.OPEN || itemMode === ItemMode.BOTH) { dispatch(projectActions.TOGGLE_PROJECT_TREE_ITEM_OPEN(treeItem.data.uuid)); } - const resourceUrl = getResourceUrl({ ...treeItem.data }); + const resourceUrl = getResourceUrl(treeItem.data); if (itemMode === ItemMode.ACTIVE || itemMode === ItemMode.BOTH) { if (router.location && !router.location.pathname.includes(resourceUrl)) { @@ -51,23 +46,16 @@ export const setProjectItem = (itemId: string, itemMode: ItemMode) => dispatch(projectActions.TOGGLE_PROJECT_TREE_ITEM_ACTIVE(treeItem.data.uuid)); } - const promise = treeItem.status === TreeItemStatus.Loaded + const promise = treeItem.status === TreeItemStatus.LOADED ? Promise.resolve() : dispatch(getProjectList(itemId)); promise - .then(() => dispatch(getCollectionList(itemId))) .then(() => dispatch(() => { - const { projects, collections } = getState(); - dispatch(dataExplorerActions.SET_ITEMS({ - id: PROJECT_PANEL_ID, - items: projectPanelItems( - projects.items, - treeItem.data.uuid, - collections - ) - })); + dispatch(dataExplorerActions.RESET_PAGINATION({id: PROJECT_PANEL_ID})); + dispatch(dataExplorerActions.REQUEST_ITEMS({id: PROJECT_PANEL_ID})); })); } }; +