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 { 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 { AdminMenuIcon } from 'components/icon/icon';
104 import { userProfileGroupsColumns } from 'views/user-profile-panel/user-profile-panel-root';
106 export const WORKBENCH_LOADING_SCREEN = 'workbenchLoadingScreen';
108 export const isWorkbenchLoading = (state: RootState) => {
109 const progress = getProgressIndicator(WORKBENCH_LOADING_SCREEN)(state.progressIndicator);
110 return progress ? progress.working : false;
113 export const handleFirstTimeLoad = (action: any) =>
114 async (dispatch: Dispatch<any>, getState: () => RootState) => {
116 await dispatch(action);
118 if (isWorkbenchLoading(getState())) {
119 dispatch(progressIndicatorActions.STOP_WORKING(WORKBENCH_LOADING_SCREEN));
124 export const loadWorkbench = () =>
125 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
126 dispatch(progressIndicatorActions.START_WORKING(WORKBENCH_LOADING_SCREEN));
127 const { auth, router } = getState();
128 const { user } = auth;
130 dispatch(projectPanelActions.SET_COLUMNS({ columns: projectPanelColumns }));
131 dispatch(favoritePanelActions.SET_COLUMNS({ columns: favoritePanelColumns }));
132 dispatch(allProcessesPanelActions.SET_COLUMNS({ columns: allProcessesPanelColumns }));
133 dispatch(publicFavoritePanelActions.SET_COLUMNS({ columns: publicFavoritePanelColumns }));
134 dispatch(trashPanelActions.SET_COLUMNS({ columns: trashPanelColumns }));
135 dispatch(sharedWithMePanelActions.SET_COLUMNS({ columns: projectPanelColumns }));
136 dispatch(workflowPanelActions.SET_COLUMNS({ columns: workflowPanelColumns }));
137 dispatch(searchResultsPanelActions.SET_FETCH_MODE({ fetchMode: DataTableFetchMode.INFINITE }));
138 dispatch(searchResultsPanelActions.SET_COLUMNS({ columns: searchResultsPanelColumns }));
139 dispatch(userBindedActions.SET_COLUMNS({ columns: userPanelColumns }));
140 dispatch(groupPanelActions.GroupsPanelActions.SET_COLUMNS({ columns: groupsPanelColumns }));
141 dispatch(groupDetailsPanelActions.GroupMembersPanelActions.SET_COLUMNS({ columns: groupDetailsMembersPanelColumns }));
142 dispatch(groupDetailsPanelActions.GroupPermissionsPanelActions.SET_COLUMNS({ columns: groupDetailsPermissionsPanelColumns }));
143 dispatch(userProfilePanelActions.UserProfileGroupsActions.SET_COLUMNS({ columns: userProfileGroupsColumns }));
144 dispatch(linkPanelActions.SET_COLUMNS({ columns: linkPanelColumns }));
145 dispatch(apiClientAuthorizationsActions.SET_COLUMNS({ columns: apiClientAuthorizationPanelColumns }));
146 dispatch(collectionsContentAddressActions.SET_COLUMNS({ columns: collectionContentAddressPanelColumns }));
147 dispatch(subprocessPanelActions.SET_COLUMNS({ columns: subprocessPanelColumns }));
149 if (services.linkAccountService.getAccountToLink()) {
150 dispatch(linkAccountPanelActions.HAS_SESSION_DATA());
153 dispatch<any>(initSidePanelTree());
154 if (router.location) {
155 const match = matchRootRoute(router.location.pathname);
157 dispatch<any>(navigateToRootProject);
161 dispatch(userIsNotAuthenticated);
165 export const loadFavorites = () =>
167 (dispatch: Dispatch) => {
168 dispatch<any>(activateSidePanelTreeItem(SidePanelTreeCategory.FAVORITES));
169 dispatch<any>(loadFavoritePanel());
170 dispatch<any>(setSidePanelBreadcrumbs(SidePanelTreeCategory.FAVORITES));
173 export const loadCollectionContentAddress = handleFirstTimeLoad(
174 async (dispatch: Dispatch<any>) => {
175 await dispatch(loadCollectionsContentAddressPanel());
178 export const loadTrash = () =>
180 (dispatch: Dispatch) => {
181 dispatch<any>(activateSidePanelTreeItem(SidePanelTreeCategory.TRASH));
182 dispatch<any>(loadTrashPanel());
183 dispatch<any>(setSidePanelBreadcrumbs(SidePanelTreeCategory.TRASH));
186 export const loadAllProcesses = () =>
188 (dispatch: Dispatch) => {
189 dispatch<any>(activateSidePanelTreeItem(SidePanelTreeCategory.ALL_PROCESSES));
190 dispatch<any>(loadAllProcessesPanel());
191 dispatch<any>(setSidePanelBreadcrumbs(SidePanelTreeCategory.ALL_PROCESSES));
195 export const loadProject = (uuid: string) =>
197 async (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
198 const userUuid = getUserUuid(getState());
199 dispatch(setIsProjectPanelTrashed(false));
203 if (extractUuidKind(uuid) === ResourceKind.USER && userUuid !== uuid) {
204 // Load another users home projects
205 dispatch(finishLoadingProject(uuid));
206 } else if (userUuid !== uuid) {
207 await dispatch(finishLoadingProject(uuid));
208 const match = await loadGroupContentsResource({ uuid, userUuid, services });
211 await dispatch(activateSidePanelTreeItem(uuid));
212 dispatch<any>(setSidePanelBreadcrumbs(uuid));
214 SHARED: async () => {
215 await dispatch(activateSidePanelTreeItem(uuid));
216 dispatch<any>(setSharedWithMeBreadcrumbs(uuid));
218 TRASHED: async () => {
219 await dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.TRASH));
220 dispatch<any>(setTrashBreadcrumbs(uuid));
221 dispatch(setIsProjectPanelTrashed(true));
225 await dispatch(finishLoadingProject(userUuid));
226 await dispatch(activateSidePanelTreeItem(userUuid));
227 dispatch<any>(setSidePanelBreadcrumbs(userUuid));
231 export const createProject = (data: projectCreateActions.ProjectCreateFormDialogData) =>
232 async (dispatch: Dispatch) => {
233 const newProject = await dispatch<any>(projectCreateActions.createProject(data));
235 dispatch(snackbarActions.OPEN_SNACKBAR({
236 message: "Project has been successfully created.",
238 kind: SnackbarKind.SUCCESS
240 await dispatch<any>(loadSidePanelTreeProjects(newProject.ownerUuid));
241 dispatch<any>(navigateTo(newProject.uuid));
245 export const moveProject = (data: MoveToFormDialogData) =>
246 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
248 const oldProject = getResource(data.uuid)(getState().resources);
249 const oldOwnerUuid = oldProject ? oldProject.ownerUuid : '';
250 const movedProject = await dispatch<any>(projectMoveActions.moveProject(data));
252 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Project has been moved', hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
254 await dispatch<any>(loadSidePanelTreeProjects(oldProject.ownerUuid));
256 dispatch<any>(reloadProjectMatchingUuid([oldOwnerUuid, movedProject.ownerUuid, movedProject.uuid]));
259 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
263 export const updateProject = (data: projectUpdateActions.ProjectUpdateFormDialogData) =>
264 async (dispatch: Dispatch) => {
265 const updatedProject = await dispatch<any>(projectUpdateActions.updateProject(data));
266 if (updatedProject) {
267 dispatch(snackbarActions.OPEN_SNACKBAR({
268 message: "Project has been successfully updated.",
270 kind: SnackbarKind.SUCCESS
272 await dispatch<any>(loadSidePanelTreeProjects(updatedProject.ownerUuid));
273 dispatch<any>(reloadProjectMatchingUuid([updatedProject.ownerUuid, updatedProject.uuid]));
277 export const updateGroup = (data: projectUpdateActions.ProjectUpdateFormDialogData) =>
278 async (dispatch: Dispatch) => {
279 const updatedGroup = await dispatch<any>(groupPanelActions.updateGroup(data));
281 dispatch(snackbarActions.OPEN_SNACKBAR({
282 message: "Group has been successfully updated.",
284 kind: SnackbarKind.SUCCESS
286 await dispatch<any>(loadSidePanelTreeProjects(updatedGroup.ownerUuid));
287 dispatch<any>(reloadProjectMatchingUuid([updatedGroup.ownerUuid, updatedGroup.uuid]));
291 export const loadCollection = (uuid: string) =>
293 async (dispatch: Dispatch<any>, getState: () => RootState, services: ServiceRepository) => {
294 const userUuid = getUserUuid(getState());
296 const match = await loadGroupContentsResource({ uuid, userUuid, services });
298 OWNED: collection => {
299 dispatch(collectionPanelActions.SET_COLLECTION(collection as CollectionResource));
300 dispatch(updateResources([collection]));
301 dispatch(activateSidePanelTreeItem(collection.ownerUuid));
302 dispatch(setSidePanelBreadcrumbs(collection.ownerUuid));
303 dispatch(loadCollectionPanel(collection.uuid));
305 SHARED: collection => {
306 dispatch(collectionPanelActions.SET_COLLECTION(collection as CollectionResource));
307 dispatch(updateResources([collection]));
308 dispatch<any>(setSharedWithMeBreadcrumbs(collection.ownerUuid));
309 dispatch(activateSidePanelTreeItem(collection.ownerUuid));
310 dispatch(loadCollectionPanel(collection.uuid));
312 TRASHED: collection => {
313 dispatch(collectionPanelActions.SET_COLLECTION(collection as CollectionResource));
314 dispatch(updateResources([collection]));
315 dispatch(setTrashBreadcrumbs(''));
316 dispatch(activateSidePanelTreeItem(SidePanelTreeCategory.TRASH));
317 dispatch(loadCollectionPanel(collection.uuid));
323 export const createCollection = (data: collectionCreateActions.CollectionCreateFormDialogData) =>
324 async (dispatch: Dispatch) => {
325 const collection = await dispatch<any>(collectionCreateActions.createCollection(data));
327 dispatch(snackbarActions.OPEN_SNACKBAR({
328 message: "Collection has been successfully created.",
330 kind: SnackbarKind.SUCCESS
332 dispatch<any>(updateResources([collection]));
333 dispatch<any>(navigateTo(collection.uuid));
337 export const copyCollection = (data: CopyFormDialogData) =>
338 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
340 const copyToProject = getResource(data.ownerUuid)(getState().resources);
341 const collection = await dispatch<any>(collectionCopyActions.copyCollection(data));
342 if (copyToProject && collection) {
343 dispatch<any>(reloadProjectMatchingUuid([copyToProject.uuid]));
344 dispatch(snackbarActions.OPEN_SNACKBAR({
345 message: 'Collection has been copied.',
347 kind: SnackbarKind.SUCCESS,
348 link: collection.ownerUuid
352 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
356 export const moveCollection = (data: MoveToFormDialogData) =>
357 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
359 const collection = await dispatch<any>(collectionMoveActions.moveCollection(data));
360 dispatch<any>(updateResources([collection]));
361 dispatch<any>(reloadProjectMatchingUuid([collection.ownerUuid]));
362 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Collection has been moved.', hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
364 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
368 export const loadProcess = (uuid: string) =>
370 async (dispatch: Dispatch, getState: () => RootState) => {
371 dispatch<any>(loadProcessPanel(uuid));
372 const process = await dispatch<any>(processesActions.loadProcess(uuid));
373 await dispatch<any>(activateSidePanelTreeItem(process.containerRequest.ownerUuid));
374 dispatch<any>(setProcessBreadcrumbs(uuid));
375 dispatch<any>(loadDetailsPanel(uuid));
378 export const updateProcess = (data: processUpdateActions.ProcessUpdateFormDialogData) =>
379 async (dispatch: Dispatch) => {
381 const process = await dispatch<any>(processUpdateActions.updateProcess(data));
383 dispatch(snackbarActions.OPEN_SNACKBAR({
384 message: "Process has been successfully updated.",
386 kind: SnackbarKind.SUCCESS
388 dispatch<any>(updateResources([process]));
389 dispatch<any>(reloadProjectMatchingUuid([process.ownerUuid]));
392 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
396 export const moveProcess = (data: MoveToFormDialogData) =>
397 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
399 const process = await dispatch<any>(processMoveActions.moveProcess(data));
400 dispatch<any>(updateResources([process]));
401 dispatch<any>(reloadProjectMatchingUuid([process.ownerUuid]));
402 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Process has been moved.', hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
404 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
408 export const copyProcess = (data: CopyFormDialogData) =>
409 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
411 const process = await dispatch<any>(processCopyActions.copyProcess(data));
412 dispatch<any>(updateResources([process]));
413 dispatch<any>(reloadProjectMatchingUuid([process.ownerUuid]));
414 dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Process has been copied.', hideDuration: 2000, kind: SnackbarKind.SUCCESS }));
416 dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.message, hideDuration: 2000, kind: SnackbarKind.ERROR }));
420 export const resourceIsNotLoaded = (uuid: string) =>
421 snackbarActions.OPEN_SNACKBAR({
422 message: `Resource identified by ${uuid} is not loaded.`,
423 kind: SnackbarKind.ERROR
426 export const userIsNotAuthenticated = snackbarActions.OPEN_SNACKBAR({
427 message: 'User is not authenticated',
428 kind: SnackbarKind.ERROR
431 export const couldNotLoadUser = snackbarActions.OPEN_SNACKBAR({
432 message: 'Could not load user',
433 kind: SnackbarKind.ERROR
436 export const reloadProjectMatchingUuid = (matchingUuids: string[]) =>
437 async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
438 const currentProjectPanelUuid = getProjectPanelCurrentUuid(getState());
439 if (currentProjectPanelUuid && matchingUuids.some(uuid => uuid === currentProjectPanelUuid)) {
440 dispatch<any>(loadProject(currentProjectPanelUuid));
444 export const loadSharedWithMe = handleFirstTimeLoad(async (dispatch: Dispatch) => {
445 dispatch<any>(loadSharedWithMePanel());
446 await dispatch<any>(activateSidePanelTreeItem(SidePanelTreeCategory.SHARED_WITH_ME));
447 await dispatch<any>(setSidePanelBreadcrumbs(SidePanelTreeCategory.SHARED_WITH_ME));
450 export const loadRunProcess = handleFirstTimeLoad(
451 async (dispatch: Dispatch) => {
452 await dispatch<any>(loadRunProcessPanel());
456 export const loadPublicFavorites = () =>
458 (dispatch: Dispatch) => {
459 dispatch<any>(activateSidePanelTreeItem(SidePanelTreeCategory.PUBLIC_FAVORITES));
460 dispatch<any>(loadPublicFavoritePanel());
461 dispatch<any>(setSidePanelBreadcrumbs(SidePanelTreeCategory.PUBLIC_FAVORITES));
464 export const loadSearchResults = handleFirstTimeLoad(
465 async (dispatch: Dispatch<any>) => {
466 await dispatch(loadSearchResultsPanel());
469 export const loadLinks = handleFirstTimeLoad(
470 async (dispatch: Dispatch<any>) => {
471 await dispatch(loadLinkPanel());
474 export const loadVirtualMachines = handleFirstTimeLoad(
475 async (dispatch: Dispatch<any>) => {
476 await dispatch(loadVirtualMachinesPanel());
477 dispatch(setBreadcrumbs([{ label: 'Virtual Machines' }]));
480 export const loadVirtualMachinesAdmin = handleFirstTimeLoad(
481 async (dispatch: Dispatch<any>) => {
482 await dispatch(loadVirtualMachinesPanel());
483 dispatch(setBreadcrumbs([{ label: 'Virtual Machines Admin', icon: AdminMenuIcon }]));
486 export const loadRepositories = handleFirstTimeLoad(
487 async (dispatch: Dispatch<any>) => {
488 await dispatch(loadRepositoriesPanel());
489 dispatch(setBreadcrumbs([{ label: 'Repositories' }]));
492 export const loadSshKeys = handleFirstTimeLoad(
493 async (dispatch: Dispatch<any>) => {
494 await dispatch(loadSshKeysPanel());
497 export const loadSiteManager = handleFirstTimeLoad(
498 async (dispatch: Dispatch<any>) => {
499 await dispatch(loadSiteManagerPanel());
502 export const loadUserProfile = (userUuid?: string) =>
504 (dispatch: Dispatch<any>) => {
506 dispatch(setUserProfileBreadcrumbs(userUuid));
507 dispatch(userProfilePanelActions.loadUserProfilePanel(userUuid));
509 dispatch(setMyAccountBreadcrumbs());
510 dispatch(userProfilePanelActions.loadUserProfilePanel());
515 export const loadLinkAccount = handleFirstTimeLoad(
516 (dispatch: Dispatch<any>) => {
517 dispatch(loadLinkAccountPanel());
520 export const loadKeepServices = handleFirstTimeLoad(
521 async (dispatch: Dispatch<any>) => {
522 await dispatch(loadKeepServicesPanel());
525 export const loadUsers = handleFirstTimeLoad(
526 async (dispatch: Dispatch<any>) => {
527 await dispatch(loadUsersPanel());
528 dispatch(setUsersBreadcrumbs());
531 export const loadApiClientAuthorizations = handleFirstTimeLoad(
532 async (dispatch: Dispatch<any>) => {
533 await dispatch(loadApiClientAuthorizationsPanel());
536 export const loadGroupsPanel = handleFirstTimeLoad(
537 (dispatch: Dispatch<any>) => {
538 dispatch(setGroupsBreadcrumbs());
539 dispatch(groupPanelActions.loadGroupsPanel());
543 export const loadGroupDetailsPanel = (groupUuid: string) =>
545 (dispatch: Dispatch<any>) => {
546 dispatch(setGroupDetailsBreadcrumbs(groupUuid));
547 dispatch(groupDetailsPanelActions.loadGroupDetailsPanel(groupUuid));
550 const finishLoadingProject = (project: GroupContentsResource | string) =>
551 async (dispatch: Dispatch<any>) => {
552 const uuid = typeof project === 'string' ? project : project.uuid;
553 dispatch(openProjectPanel(uuid));
554 dispatch(loadDetailsPanel(uuid));
555 if (typeof project !== 'string') {
556 dispatch(updateResources([project]));
560 const loadGroupContentsResource = async (params: {
563 services: ServiceRepository
565 const filters = new FilterBuilder()
566 .addEqual('uuid', params.uuid)
568 const { items } = await params.services.groupsService.contents(params.userUuid, {
573 const resource = items.shift();
574 let handler: GroupContentsHandler;
576 handler = (resource.kind === ResourceKind.COLLECTION || resource.kind === ResourceKind.PROJECT) && resource.isTrashed
577 ? groupContentsHandlers.TRASHED(resource)
578 : groupContentsHandlers.OWNED(resource);
580 const kind = extractUuidKind(params.uuid);
581 let resource: GroupContentsResource;
582 if (kind === ResourceKind.COLLECTION) {
583 resource = await params.services.collectionService.get(params.uuid);
584 } else if (kind === ResourceKind.PROJECT) {
585 resource = await params.services.projectService.get(params.uuid);
587 resource = await params.services.containerRequestService.get(params.uuid);
589 handler = groupContentsHandlers.SHARED(resource);
591 return (cases: MatchCases<typeof groupContentsHandlersRecord, GroupContentsHandler, void>) =>
592 groupContentsHandlers.match(handler, cases);
596 const groupContentsHandlersRecord = {
597 TRASHED: ofType<GroupContentsResource>(),
598 SHARED: ofType<GroupContentsResource>(),
599 OWNED: ofType<GroupContentsResource>(),
602 const groupContentsHandlers = unionize(groupContentsHandlersRecord);
604 type GroupContentsHandler = UnionOf<typeof groupContentsHandlers>;