1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { Dispatch } from 'redux';
6 import { RootState } from "store/store";
7 import { getUserUuid } from "common/getuser";
8 import { loadDetailsPanel } from 'store/details-panel/details-panel-action';
9 import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions';
10 import { favoritePanelActions, loadFavoritePanel } from 'store/favorite-panel/favorite-panel-action';
12 getProjectPanelCurrentUuid,
15 setIsProjectPanelTrashed
16 } from 'store/project-panel/project-panel-action';
18 activateSidePanelTreeItem,
20 loadSidePanelTreeProjects,
22 } from 'store/side-panel-tree/side-panel-tree-actions';
23 import { updateResources } from 'store/resources/resources-actions';
24 import { projectPanelColumns } from 'views/project-panel/project-panel';
25 import { favoritePanelColumns } from 'views/favorite-panel/favorite-panel';
26 import { matchRootRoute } from 'routes/routes';
29 setGroupDetailsBreadcrumbs,
31 setProcessBreadcrumbs,
32 setSharedWithMeBreadcrumbs,
33 setSidePanelBreadcrumbs,
36 setMyAccountBreadcrumbs,
37 setUserProfileBreadcrumbs,
38 } from 'store/breadcrumbs/breadcrumbs-actions';
39 import { navigateTo, navigateToRootProject } from 'store/navigation/navigation-action';
40 import { MoveToFormDialogData } from 'store/move-to-dialog/move-to-dialog';
41 import { ServiceRepository } from 'services/services';
42 import { getResource } from 'store/resources/resources';
43 import * as projectCreateActions from 'store/projects/project-create-actions';
44 import * as projectMoveActions from 'store/projects/project-move-actions';
45 import * as projectUpdateActions from 'store/projects/project-update-actions';
46 import * as collectionCreateActions from 'store/collections/collection-create-actions';
47 import * as collectionCopyActions from 'store/collections/collection-copy-actions';
48 import * as collectionMoveActions from 'store/collections/collection-move-actions';
49 import * as processesActions from 'store/processes/processes-actions';
50 import * as processMoveActions from 'store/processes/process-move-actions';
51 import * as processUpdateActions from 'store/processes/process-update-actions';
52 import * as processCopyActions from 'store/processes/process-copy-actions';
53 import { trashPanelColumns } from "views/trash-panel/trash-panel";
54 import { loadTrashPanel, trashPanelActions } from "store/trash-panel/trash-panel-action";
55 import { loadProcessPanel } from 'store/process-panel/process-panel-actions';
57 loadSharedWithMePanel,
58 sharedWithMePanelActions
59 } from 'store/shared-with-me-panel/shared-with-me-panel-actions';
60 import { CopyFormDialogData } from 'store/copy-dialog/copy-dialog';
61 import { loadWorkflowPanel, workflowPanelActions } from 'store/workflow-panel/workflow-panel-actions';
62 import { loadSshKeysPanel } from 'store/auth/auth-action-ssh';
63 import { loadLinkAccountPanel, linkAccountPanelActions } from 'store/link-account-panel/link-account-panel-actions';
64 import { loadSiteManagerPanel } from 'store/auth/auth-action-session';
65 import { workflowPanelColumns } from 'views/workflow-panel/workflow-panel-view';
66 import { progressIndicatorActions } from 'store/progress-indicator/progress-indicator-actions';
67 import { getProgressIndicator } from 'store/progress-indicator/progress-indicator-reducer';
68 import { extractUuidKind, ResourceKind } from 'models/resource';
69 import { FilterBuilder } from 'services/api/filter-builder';
70 import { GroupContentsResource } from 'services/groups-service/groups-service';
71 import { MatchCases, ofType, unionize, UnionOf } from 'common/unionize';
72 import { loadRunProcessPanel } from 'store/run-process-panel/run-process-panel-actions';
73 import { collectionPanelActions, loadCollectionPanel } from "store/collection-panel/collection-panel-action";
74 import { CollectionResource } from "models/collection";
76 loadSearchResultsPanel,
77 searchResultsPanelActions
78 } from 'store/search-results-panel/search-results-panel-actions';
79 import { searchResultsPanelColumns } from 'views/search-results-panel/search-results-panel-view';
80 import { loadVirtualMachinesPanel } from 'store/virtual-machines/virtual-machines-actions';
81 import { loadRepositoriesPanel } from 'store/repositories/repositories-actions';
82 import { loadKeepServicesPanel } from 'store/keep-services/keep-services-actions';
83 import { loadUsersPanel, userBindedActions } from 'store/users/users-actions';
84 import * as userProfilePanelActions from 'store/user-profile/user-profile-actions';
85 import { linkPanelActions, loadLinkPanel } from 'store/link-panel/link-panel-actions';
86 import { linkPanelColumns } from 'views/link-panel/link-panel-root';
87 import { userPanelColumns } from 'views/user-panel/user-panel';
88 import { loadApiClientAuthorizationsPanel, apiClientAuthorizationsActions } from 'store/api-client-authorizations/api-client-authorizations-actions';
89 import { apiClientAuthorizationPanelColumns } from 'views/api-client-authorization-panel/api-client-authorization-panel-root';
90 import * as groupPanelActions from 'store/groups-panel/groups-panel-actions';
91 import { groupsPanelColumns } from 'views/groups-panel/groups-panel';
92 import * as groupDetailsPanelActions from 'store/group-details-panel/group-details-panel-actions';
93 import { groupDetailsMembersPanelColumns, groupDetailsPermissionsPanelColumns } from 'views/group-details-panel/group-details-panel';
94 import { DataTableFetchMode } from "components/data-table/data-table";
95 import { loadPublicFavoritePanel, publicFavoritePanelActions } from 'store/public-favorites-panel/public-favorites-action';
96 import { publicFavoritePanelColumns } from 'views/public-favorites-panel/public-favorites-panel';
97 import { loadCollectionsContentAddressPanel, collectionsContentAddressActions } from 'store/collections-content-address-panel/collections-content-address-panel-actions';
98 import { collectionContentAddressPanelColumns } from 'views/collection-content-address-panel/collection-content-address-panel';
99 import { subprocessPanelActions } from 'store/subprocess-panel/subprocess-panel-actions';
100 import { subprocessPanelColumns } from 'views/subprocess-panel/subprocess-panel-root';
101 import { loadAllProcessesPanel, allProcessesPanelActions } from '../all-processes-panel/all-processes-panel-action';
102 import { allProcessesPanelColumns } from 'views/all-processes-panel/all-processes-panel';
103 import { collectionPanelFilesAction } from '../collection-panel/collection-panel-files/collection-panel-files-actions';
104 import { createTree } from 'models/tree';
105 import { AdminMenuIcon } from 'components/icon/icon';
106 import { userProfileGroupsColumns } from 'views/user-profile-panel/user-profile-panel-root';
108 export const WORKBENCH_LOADING_SCREEN = 'workbenchLoadingScreen';
110 export const isWorkbenchLoading = (state: RootState) => {
111 const progress = getProgressIndicator(WORKBENCH_LOADING_SCREEN)(state.progressIndicator);
112 return progress ? progress.working : false;
115 export const handleFirstTimeLoad = (action: any) =>
116 async (dispatch: Dispatch<any>, getState: () => RootState) => {
118 await dispatch(action);
120 if (isWorkbenchLoading(getState())) {
121 dispatch(progressIndicatorActions.STOP_WORKING(WORKBENCH_LOADING_SCREEN));
126 export const loadWorkbench = () =>
127 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
128 dispatch(progressIndicatorActions.START_WORKING(WORKBENCH_LOADING_SCREEN));
129 const { auth, router } = getState();
130 const { user } = auth;
132 dispatch(projectPanelActions.SET_COLUMNS({ columns: projectPanelColumns }));
133 dispatch(favoritePanelActions.SET_COLUMNS({ columns: favoritePanelColumns }));
134 dispatch(allProcessesPanelActions.SET_COLUMNS({ columns: allProcessesPanelColumns }));
135 dispatch(publicFavoritePanelActions.SET_COLUMNS({ columns: publicFavoritePanelColumns }));
136 dispatch(trashPanelActions.SET_COLUMNS({ columns: trashPanelColumns }));
137 dispatch(sharedWithMePanelActions.SET_COLUMNS({ columns: projectPanelColumns }));
138 dispatch(workflowPanelActions.SET_COLUMNS({ columns: workflowPanelColumns }));
139 dispatch(searchResultsPanelActions.SET_FETCH_MODE({ fetchMode: DataTableFetchMode.INFINITE }));
140 dispatch(searchResultsPanelActions.SET_COLUMNS({ columns: searchResultsPanelColumns }));
141 dispatch(userBindedActions.SET_COLUMNS({ columns: userPanelColumns }));
142 dispatch(groupPanelActions.GroupsPanelActions.SET_COLUMNS({ columns: groupsPanelColumns }));
143 dispatch(groupDetailsPanelActions.GroupMembersPanelActions.SET_COLUMNS({ columns: groupDetailsMembersPanelColumns }));
144 dispatch(groupDetailsPanelActions.GroupPermissionsPanelActions.SET_COLUMNS({ columns: groupDetailsPermissionsPanelColumns }));
145 dispatch(userProfilePanelActions.UserProfileGroupsActions.SET_COLUMNS({ columns: userProfileGroupsColumns }));
146 dispatch(linkPanelActions.SET_COLUMNS({ columns: linkPanelColumns }));
147 dispatch(apiClientAuthorizationsActions.SET_COLUMNS({ columns: apiClientAuthorizationPanelColumns }));
148 dispatch(collectionsContentAddressActions.SET_COLUMNS({ columns: collectionContentAddressPanelColumns }));
149 dispatch(subprocessPanelActions.SET_COLUMNS({ columns: subprocessPanelColumns }));
151 if (services.linkAccountService.getAccountToLink()) {
152 dispatch(linkAccountPanelActions.HAS_SESSION_DATA());
155 dispatch<any>(initSidePanelTree());
156 if (router.location) {
157 const match = matchRootRoute(router.location.pathname);
159 dispatch<any>(navigateToRootProject);
163 dispatch(userIsNotAuthenticated);
167 export const loadFavorites = () =>
169 (dispatch: Dispatch) => {
170 dispatch<any>(activateSidePanelTreeItem(SidePanelTreeCategory.FAVORITES));
171 dispatch<any>(loadFavoritePanel());
172 dispatch<any>(setSidePanelBreadcrumbs(SidePanelTreeCategory.FAVORITES));
175 export const loadCollectionContentAddress = handleFirstTimeLoad(
176 async (dispatch: Dispatch<any>) => {
177 await dispatch(loadCollectionsContentAddressPanel());
180 export const loadTrash = () =>
182 (dispatch: Dispatch) => {
183 dispatch<any>(activateSidePanelTreeItem(SidePanelTreeCategory.TRASH));
184 dispatch<any>(loadTrashPanel());
185 dispatch<any>(setSidePanelBreadcrumbs(SidePanelTreeCategory.TRASH));
188 export const loadAllProcesses = () =>
190 (dispatch: Dispatch) => {
191 dispatch<any>(activateSidePanelTreeItem(SidePanelTreeCategory.ALL_PROCESSES));
192 dispatch<any>(loadAllProcessesPanel());
193 dispatch<any>(setSidePanelBreadcrumbs(SidePanelTreeCategory.ALL_PROCESSES));
197 export const loadProject = (uuid: string) =>
199 async (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
200 const userUuid = getUserUuid(getState());
201 dispatch(setIsProjectPanelTrashed(false));
205 if (extractUuidKind(uuid) === ResourceKind.USER && userUuid !== uuid) {
206 // Load another users home projects
207 dispatch(finishLoadingProject(uuid));
208 } else if (userUuid !== uuid) {
209 await dispatch(finishLoadingProject(uuid));
210 const match = await loadGroupContentsResource({ uuid, userUuid, services });
213 await dispatch(activateSidePanelTreeItem(uuid));
214 dispatch<any>(setSidePanelBreadcrumbs(uuid));
216 SHARED: async () => {
217 await dispatch(activateSidePanelTreeItem(uuid));
218 dispatch<any>(setSharedWithMeBreadcrumbs(uuid));
220 TRASHED: async () => {
221 await dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.TRASH));
222 dispatch<any>(setTrashBreadcrumbs(uuid));
223 dispatch(setIsProjectPanelTrashed(true));
227 await dispatch(finishLoadingProject(userUuid));
228 await dispatch(activateSidePanelTreeItem(userUuid));
229 dispatch<any>(setSidePanelBreadcrumbs(userUuid));
233 export const createProject = (data: projectCreateActions.ProjectCreateFormDialogData) =>
234 async (dispatch: Dispatch) => {
235 const newProject = await dispatch<any>(projectCreateActions.createProject(data));
237 dispatch(snackbarActions.OPEN_SNACKBAR({
238 message: "Project has been successfully created.",
240 kind: SnackbarKind.SUCCESS
242 await dispatch<any>(loadSidePanelTreeProjects(newProject.ownerUuid));
243 dispatch<any>(navigateTo(newProject.uuid));
247 export const moveProject = (data: MoveToFormDialogData) =>
248 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
250 const oldProject = getResource(data.uuid)(getState().resources);
251 const oldOwnerUuid = oldProject ? oldProject.ownerUuid : '';
252 const movedProject = await dispatch<any>(projectMoveActions.moveProject(data));
254 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Project has been moved', hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
256 await dispatch<any>(loadSidePanelTreeProjects(oldProject.ownerUuid));
258 dispatch<any>(reloadProjectMatchingUuid([oldOwnerUuid, movedProject.ownerUuid, movedProject.uuid]));
261 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
265 export const updateProject = (data: projectUpdateActions.ProjectUpdateFormDialogData) =>
266 async (dispatch: Dispatch) => {
267 const updatedProject = await dispatch<any>(projectUpdateActions.updateProject(data));
268 if (updatedProject) {
269 dispatch(snackbarActions.OPEN_SNACKBAR({
270 message: "Project has been successfully updated.",
272 kind: SnackbarKind.SUCCESS
274 await dispatch<any>(loadSidePanelTreeProjects(updatedProject.ownerUuid));
275 dispatch<any>(reloadProjectMatchingUuid([updatedProject.ownerUuid, updatedProject.uuid]));
279 export const updateGroup = (data: projectUpdateActions.ProjectUpdateFormDialogData) =>
280 async (dispatch: Dispatch) => {
281 const updatedGroup = await dispatch<any>(groupPanelActions.updateGroup(data));
283 dispatch(snackbarActions.OPEN_SNACKBAR({
284 message: "Group has been successfully updated.",
286 kind: SnackbarKind.SUCCESS
288 await dispatch<any>(loadSidePanelTreeProjects(updatedGroup.ownerUuid));
289 dispatch<any>(reloadProjectMatchingUuid([updatedGroup.ownerUuid, updatedGroup.uuid]));
293 export const loadCollection = (uuid: string) =>
295 async (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
296 const userUuid = getUserUuid(getState());
298 // Clear collection files panel
299 dispatch(collectionPanelFilesAction.SET_COLLECTION_FILES({ files: createTree() }));
300 const match = await loadGroupContentsResource({ uuid, userUuid, services });
302 OWNED: async collection => {
303 dispatch(collectionPanelActions.SET_COLLECTION(collection as CollectionResource));
304 dispatch(updateResources([collection]));
305 dispatch(activateSidePanelTreeItem(collection.ownerUuid));
306 dispatch(setSidePanelBreadcrumbs(collection.ownerUuid));
307 dispatch(loadCollectionPanel(collection.uuid));
309 SHARED: collection => {
310 dispatch(collectionPanelActions.SET_COLLECTION(collection as CollectionResource));
311 dispatch(updateResources([collection]));
312 dispatch<any>(setSharedWithMeBreadcrumbs(collection.ownerUuid));
313 dispatch(activateSidePanelTreeItem(collection.ownerUuid));
314 dispatch(loadCollectionPanel(collection.uuid));
316 TRASHED: collection => {
317 dispatch(collectionPanelActions.SET_COLLECTION(collection as CollectionResource));
318 dispatch(updateResources([collection]));
319 dispatch(setTrashBreadcrumbs(''));
320 dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.TRASH));
321 dispatch(loadCollectionPanel(collection.uuid));
327 export const createCollection = (data: collectionCreateActions.CollectionCreateFormDialogData) =>
328 async (dispatch: Dispatch) => {
329 const collection = await dispatch<any>(collectionCreateActions.createCollection(data));
331 dispatch(snackbarActions.OPEN_SNACKBAR({
332 message: "Collection has been successfully created.",
334 kind: SnackbarKind.SUCCESS
336 dispatch<any>(updateResources([collection]));
337 dispatch<any>(navigateTo(collection.uuid));
341 export const copyCollection = (data: CopyFormDialogData) =>
342 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
344 const copyToProject = getResource(data.ownerUuid)(getState().resources);
345 const collection = await dispatch<any>(collectionCopyActions.copyCollection(data));
346 if (copyToProject && collection) {
347 dispatch<any>(reloadProjectMatchingUuid([copyToProject.uuid]));
348 dispatch(snackbarActions.OPEN_SNACKBAR({
349 message: 'Collection has been copied.',
351 kind: SnackbarKind.SUCCESS,
352 link: collection.ownerUuid
356 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
360 export const moveCollection = (data: MoveToFormDialogData) =>
361 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
363 const collection = await dispatch<any>(collectionMoveActions.moveCollection(data));
364 dispatch<any>(updateResources([collection]));
365 dispatch<any>(reloadProjectMatchingUuid([collection.ownerUuid]));
366 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Collection has been moved.', hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
368 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
372 export const loadProcess = (uuid: string) =>
374 async (dispatch: Dispatch, getState: () => RootState) => {
375 dispatch<any>(loadProcessPanel(uuid));
376 const process = await dispatch<any>(processesActions.loadProcess(uuid));
377 await dispatch<any>(activateSidePanelTreeItem(process.containerRequest.ownerUuid));
378 dispatch<any>(setProcessBreadcrumbs(uuid));
379 dispatch<any>(loadDetailsPanel(uuid));
382 export const updateProcess = (data: processUpdateActions.ProcessUpdateFormDialogData) =>
383 async (dispatch: Dispatch) => {
385 const process = await dispatch<any>(processUpdateActions.updateProcess(data));
387 dispatch(snackbarActions.OPEN_SNACKBAR({
388 message: "Process has been successfully updated.",
390 kind: SnackbarKind.SUCCESS
392 dispatch<any>(updateResources([process]));
393 dispatch<any>(reloadProjectMatchingUuid([process.ownerUuid]));
396 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
400 export const moveProcess = (data: MoveToFormDialogData) =>
401 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
403 const process = await dispatch<any>(processMoveActions.moveProcess(data));
404 dispatch<any>(updateResources([process]));
405 dispatch<any>(reloadProjectMatchingUuid([process.ownerUuid]));
406 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Process has been moved.', hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
408 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
412 export const copyProcess = (data: CopyFormDialogData) =>
413 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
415 const process = await dispatch<any>(processCopyActions.copyProcess(data));
416 dispatch<any>(updateResources([process]));
417 dispatch<any>(reloadProjectMatchingUuid([process.ownerUuid]));
418 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Process has been copied.', hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
420 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
424 export const resourceIsNotLoaded = (uuid: string) =>
425 snackbarActions.OPEN_SNACKBAR({
426 message: `Resource identified by ${uuid} is not loaded.`,
427 kind: SnackbarKind.ERROR
430 export const userIsNotAuthenticated = snackbarActions.OPEN_SNACKBAR({
431 message: 'User is not authenticated',
432 kind: SnackbarKind.ERROR
435 export const couldNotLoadUser = snackbarActions.OPEN_SNACKBAR({
436 message: 'Could not load user',
437 kind: SnackbarKind.ERROR
440 export const reloadProjectMatchingUuid = (matchingUuids: string[]) =>
441 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
442 const currentProjectPanelUuid = getProjectPanelCurrentUuid(getState());
443 if (currentProjectPanelUuid && matchingUuids.some(uuid => uuid === currentProjectPanelUuid)) {
444 dispatch<any>(loadProject(currentProjectPanelUuid));
448 export const loadSharedWithMe = handleFirstTimeLoad(async (dispatch: Dispatch) => {
449 dispatch<any>(loadSharedWithMePanel());
450 await dispatch<any>(activateSidePanelTreeItem(SidePanelTreeCategory.SHARED_WITH_ME));
451 await dispatch<any>(setSidePanelBreadcrumbs(SidePanelTreeCategory.SHARED_WITH_ME));
454 export const loadRunProcess = handleFirstTimeLoad(
455 async (dispatch: Dispatch) => {
456 await dispatch<any>(loadRunProcessPanel());
460 export const loadWorkflow = handleFirstTimeLoad(async (dispatch: Dispatch<any>) => {
461 dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.WORKFLOWS));
462 await dispatch(loadWorkflowPanel());
463 dispatch(setSidePanelBreadcrumbs(SidePanelTreeCategory.WORKFLOWS));
466 export const loadPublicFavorites = () =>
468 (dispatch: Dispatch) => {
469 dispatch<any>(activateSidePanelTreeItem(SidePanelTreeCategory.PUBLIC_FAVORITES));
470 dispatch<any>(loadPublicFavoritePanel());
471 dispatch<any>(setSidePanelBreadcrumbs(SidePanelTreeCategory.PUBLIC_FAVORITES));
474 export const loadSearchResults = handleFirstTimeLoad(
475 async (dispatch: Dispatch<any>) => {
476 await dispatch(loadSearchResultsPanel());
479 export const loadLinks = handleFirstTimeLoad(
480 async (dispatch: Dispatch<any>) => {
481 await dispatch(loadLinkPanel());
484 export const loadVirtualMachines = handleFirstTimeLoad(
485 async (dispatch: Dispatch<any>) => {
486 await dispatch(loadVirtualMachinesPanel());
487 dispatch(setBreadcrumbs([{ label: 'Virtual Machines' }]));
490 export const loadVirtualMachinesAdmin = handleFirstTimeLoad(
491 async (dispatch: Dispatch<any>) => {
492 await dispatch(loadVirtualMachinesPanel());
493 dispatch(setBreadcrumbs([{ label: 'Virtual Machines Admin', icon: AdminMenuIcon }]));
496 export const loadRepositories = handleFirstTimeLoad(
497 async (dispatch: Dispatch<any>) => {
498 await dispatch(loadRepositoriesPanel());
499 dispatch(setBreadcrumbs([{ label: 'Repositories' }]));
502 export const loadSshKeys = handleFirstTimeLoad(
503 async (dispatch: Dispatch<any>) => {
504 await dispatch(loadSshKeysPanel());
507 export const loadSiteManager = handleFirstTimeLoad(
508 async (dispatch: Dispatch<any>) => {
509 await dispatch(loadSiteManagerPanel());
512 export const loadUserProfile = (userUuid?: string) =>
514 (dispatch: Dispatch<any>) => {
516 dispatch(setUserProfileBreadcrumbs(userUuid));
517 dispatch(userProfilePanelActions.loadUserProfilePanel(userUuid));
519 dispatch(setMyAccountBreadcrumbs());
520 dispatch(userProfilePanelActions.loadUserProfilePanel());
525 export const loadLinkAccount = handleFirstTimeLoad(
526 (dispatch: Dispatch<any>) => {
527 dispatch(loadLinkAccountPanel());
530 export const loadKeepServices = handleFirstTimeLoad(
531 async (dispatch: Dispatch<any>) => {
532 await dispatch(loadKeepServicesPanel());
535 export const loadUsers = handleFirstTimeLoad(
536 async (dispatch: Dispatch<any>) => {
537 await dispatch(loadUsersPanel());
538 dispatch(setUsersBreadcrumbs());
541 export const loadApiClientAuthorizations = handleFirstTimeLoad(
542 async (dispatch: Dispatch<any>) => {
543 await dispatch(loadApiClientAuthorizationsPanel());
546 export const loadGroupsPanel = handleFirstTimeLoad(
547 (dispatch: Dispatch<any>) => {
548 dispatch(setGroupsBreadcrumbs());
549 dispatch(groupPanelActions.loadGroupsPanel());
553 export const loadGroupDetailsPanel = (groupUuid: string) =>
555 (dispatch: Dispatch<any>) => {
556 dispatch(setGroupDetailsBreadcrumbs(groupUuid));
557 dispatch(groupDetailsPanelActions.loadGroupDetailsPanel(groupUuid));
560 const finishLoadingProject = (project: GroupContentsResource | string) =>
561 async (dispatch: Dispatch<any>) => {
562 const uuid = typeof project === 'string' ? project : project.uuid;
563 dispatch(openProjectPanel(uuid));
564 dispatch(loadDetailsPanel(uuid));
565 if (typeof project !== 'string') {
566 dispatch(updateResources([project]));
570 const loadGroupContentsResource = async (params: {
573 services: ServiceRepository
575 const filters = new FilterBuilder()
576 .addEqual('uuid', params.uuid)
578 const { items } = await params.services.groupsService.contents(params.userUuid, {
583 const resource = items.shift();
584 let handler: GroupContentsHandler;
586 handler = (resource.kind === ResourceKind.COLLECTION || resource.kind === ResourceKind.PROJECT) && resource.isTrashed
587 ? groupContentsHandlers.TRASHED(resource)
588 : groupContentsHandlers.OWNED(resource);
590 const kind = extractUuidKind(params.uuid);
591 let resource: GroupContentsResource;
592 if (kind === ResourceKind.COLLECTION) {
593 resource = await params.services.collectionService.get(params.uuid);
594 } else if (kind === ResourceKind.PROJECT) {
595 resource = await params.services.projectService.get(params.uuid);
597 resource = await params.services.containerRequestService.get(params.uuid);
599 handler = groupContentsHandlers.SHARED(resource);
601 return (cases: MatchCases<typeof groupContentsHandlersRecord, GroupContentsHandler, void>) =>
602 groupContentsHandlers.match(handler, cases);
606 const groupContentsHandlersRecord = {
607 TRASHED: ofType<GroupContentsResource>(),
608 SHARED: ofType<GroupContentsResource>(),
609 OWNED: ofType<GroupContentsResource>(),
612 const groupContentsHandlers = unionize(groupContentsHandlersRecord);
614 type GroupContentsHandler = UnionOf<typeof groupContentsHandlers>;