X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/1e32e6134cd53c30cd8a9410572a443b37f76f2e..e952a4d2fac7c75375a9307f7f6676bd950bd0ed:/src/store/navigation/navigation-action.ts diff --git a/src/store/navigation/navigation-action.ts b/src/store/navigation/navigation-action.ts index b5dc5e9d..b63fc2cb 100644 --- a/src/store/navigation/navigation-action.ts +++ b/src/store/navigation/navigation-action.ts @@ -4,120 +4,60 @@ import { Dispatch, compose } from 'redux'; import { push } from "react-router-redux"; -import { RootState } from "../store"; -import { ResourceKind, Resource, extractUuidKind } from '~/models/resource'; +import { ResourceKind, extractUuidKind } from '~/models/resource'; import { getCollectionUrl } from "~/models/collection"; import { getProjectUrl } from "~/models/project"; -import { getResource } from '~/store/resources/resources'; -import { loadDetailsPanel } from '~/store/details-panel/details-panel-action'; -import { loadCollectionPanel } from '~/store/collection-panel/collection-panel-action'; -import { snackbarActions } from '../snackbar/snackbar-actions'; -import { resourceLabel } from "~/common/labels"; -import { loadFavoritePanel } from '../favorite-panel/favorite-panel-action'; -import { openProjectPanel, projectPanelActions } from '~/store/project-panel/project-panel-action'; -import { activateSidePanelTreeItem, initSidePanelTree, SidePanelTreeCategory } from '../side-panel-tree/side-panel-tree-actions'; -import { Routes } from '~/routes/routes'; -import { loadResource } from '../resources/resources-actions'; +import { SidePanelTreeCategory } from '../side-panel-tree/side-panel-tree-actions'; +import { Routes, getProcessUrl, getProcessLogUrl } from '~/routes/routes'; +import { RootState } from '~/store/store'; import { ServiceRepository } from '~/services/services'; -import { favoritePanelActions } from '~/store/favorite-panel/favorite-panel-action'; -import { projectPanelColumns } from '~/views/project-panel/project-panel'; -import { favoritePanelColumns } from '~/views/favorite-panel/favorite-panel'; -import { matchRootRoute } from '~/routes/routes'; -import { setCollectionBreadcrumbs, setProjectBreadcrumbs, setSidePanelBreadcrumbs } from '../breadcrumbs/breadcrumbs-actions'; export const navigateTo = (uuid: string) => - async (dispatch: Dispatch, getState: () => RootState) => { + async (dispatch: Dispatch) => { const kind = extractUuidKind(uuid); if (kind === ResourceKind.PROJECT || kind === ResourceKind.USER) { dispatch(navigateToProject(uuid)); } else if (kind === ResourceKind.COLLECTION) { dispatch(navigateToCollection(uuid)); + } else if (kind === ResourceKind.CONTAINER_REQUEST) { + dispatch(navigateToProcess(uuid)); } if (uuid === SidePanelTreeCategory.FAVORITES) { dispatch(navigateToFavorites); + } else if (uuid === SidePanelTreeCategory.SHARED_WITH_ME) { + dispatch(navigateToSharedWithMe); + } else if (uuid === SidePanelTreeCategory.WORKFLOWS) { + dispatch(navigateToWorkflows); + } else if (uuid === SidePanelTreeCategory.TRASH) { + dispatch(navigateToTrash); } }; -const getResourceNavigationAction = (resource: Resource) => { - switch (resource.kind) { - case ResourceKind.COLLECTION: - return navigateToCollection(resource.uuid); - case ResourceKind.PROJECT: - case ResourceKind.USER: - return navigateToProject(resource.uuid); - default: - return cannotNavigateToResource(resource); - } -}; - -export const loadWorkbench = () => - async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { - const { auth, router } = getState(); - const { user } = auth; - if (user) { - const userResource = await dispatch(loadResource(user.uuid)); - if (userResource) { - dispatch(projectPanelActions.SET_COLUMNS({ columns: projectPanelColumns })); - dispatch(favoritePanelActions.SET_COLUMNS({ columns: favoritePanelColumns })); - dispatch(initSidePanelTree()); - if (router.location) { - const match = matchRootRoute(router.location.pathname); - if (match) { - dispatch(navigateToProject(userResource.uuid)); - } - } - } else { - dispatch(userIsNotAuthenticated); - } - } else { - dispatch(userIsNotAuthenticated); - } - }; +export const navigateToRoot = push(Routes.ROOT); export const navigateToFavorites = push(Routes.FAVORITES); -export const loadFavorites = () => - async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { - dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.FAVORITES)); - dispatch(loadFavoritePanel()); - dispatch(setSidePanelBreadcrumbs(SidePanelTreeCategory.FAVORITES)); - }; +export const navigateToTrash = push(Routes.TRASH); +export const navigateToWorkflows = push(Routes.WORKFLOWS); export const navigateToProject = compose(push, getProjectUrl); -export const loadProject = (uuid: string) => - async (dispatch: Dispatch) => { - await dispatch(activateSidePanelTreeItem(uuid)); - dispatch(setProjectBreadcrumbs(uuid)); - dispatch(openProjectPanel(uuid)); - dispatch(loadDetailsPanel(uuid)); - }; - export const navigateToCollection = compose(push, getCollectionUrl); -export const loadCollection = (uuid: string) => - async (dispatch: Dispatch) => { - const collection = await dispatch(loadCollectionPanel(uuid)); - await dispatch(activateSidePanelTreeItem(collection.ownerUuid)); - dispatch(setCollectionBreadcrumbs(collection.uuid)); - dispatch(loadDetailsPanel(uuid)); - }; +export const navigateToProcess = compose(push, getProcessUrl); -export const cannotNavigateToResource = ({ kind, uuid }: Resource) => - snackbarActions.OPEN_SNACKBAR({ - message: `${resourceLabel(kind)} identified by ${uuid} cannot be opened.` - }); +export const navigateToProcessLogs = compose(push, getProcessLogUrl); + +export const navigateToRootProject = (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { + const rootProjectUuid = services.authService.getUuid(); + if (rootProjectUuid) { + dispatch(navigateToProject(rootProjectUuid)); + } +}; -export const resourceIsNotLoaded = (uuid: string) => - snackbarActions.OPEN_SNACKBAR({ - message: `Resource identified by ${uuid} is not loaded.` - }); +export const navigateToSharedWithMe = push(Routes.SHARED_WITH_ME); -export const userIsNotAuthenticated = snackbarActions.OPEN_SNACKBAR({ - message: 'User is not authenticated' -}); +export const navigateToRunProcess = push(Routes.RUN_PROCESS); -export const couldNotLoadUser = snackbarActions.OPEN_SNACKBAR({ - message: 'Could not load user' -}); \ No newline at end of file +export const navigateToSearchResults = push(Routes.SEARCH_RESULTS);