Merge branch 'master' into 14452-my-account
[arvados-workbench2.git] / src / views-components / context-menu / context-menu.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { connect } from "react-redux";
6 import { RootState } from "~/store/store";
7 import { contextMenuActions, ContextMenuResource } from "~/store/context-menu/context-menu-actions";
8 import { ContextMenu as ContextMenuComponent, ContextMenuProps, ContextMenuItem } from "~/components/context-menu/context-menu";
9 import { createAnchorAt } from "~/components/popover/helpers";
10 import { ContextMenuActionSet, ContextMenuAction } from "./context-menu-action-set";
11 import { Dispatch } from "redux";
12
13 type DataProps = Pick<ContextMenuProps, "anchorEl" | "items" | "open"> & { resource?: ContextMenuResource };
14 const mapStateToProps = (state: RootState): DataProps => {
15     const { open, position, resource } = state.contextMenu;
16     return {
17         anchorEl: resource ? createAnchorAt(position) : undefined,
18         items: getMenuActionSet(resource),
19         open,
20         resource
21     };
22 };
23
24 type ActionProps = Pick<ContextMenuProps, "onClose"> & { onItemClick: (item: ContextMenuItem, resource?: ContextMenuResource) => void };
25 const mapDispatchToProps = (dispatch: Dispatch): ActionProps => ({
26     onClose: () => {
27         dispatch(contextMenuActions.CLOSE_CONTEXT_MENU());
28     },
29     onItemClick: (action: ContextMenuAction, resource?: ContextMenuResource) => {
30         dispatch(contextMenuActions.CLOSE_CONTEXT_MENU());
31         if (resource) {
32             action.execute(dispatch, resource);
33         }
34     }
35 });
36
37 const mergeProps = ({ resource, ...dataProps }: DataProps, actionProps: ActionProps): ContextMenuProps => ({
38     ...dataProps,
39     ...actionProps,
40     onItemClick: item => {
41         actionProps.onItemClick(item, resource);
42     }
43 });
44
45 export const ContextMenu = connect(mapStateToProps, mapDispatchToProps, mergeProps)(ContextMenuComponent);
46
47 const menuActionSets = new Map<string, ContextMenuActionSet>();
48
49 export const addMenuActionSet = (name: string, itemSet: ContextMenuActionSet) => {
50     menuActionSets.set(name, itemSet);
51 };
52
53 const getMenuActionSet = (resource?: ContextMenuResource): ContextMenuActionSet => {
54     return resource ? menuActionSets.get(resource.menuKind) || [] : [];
55 };
56
57 export enum ContextMenuKind {
58     ROOT_PROJECT = "RootProject",
59     PROJECT = "Project",
60     RESOURCE = "Resource",
61     FAVORITE = "Favorite",
62     TRASH = "Trash",
63     COLLECTION_FILES = "CollectionFiles",
64     COLLECTION_FILES_ITEM = "CollectionFilesItem",
65     COLLECTION_FILES_NOT_SELECTED = "CollectionFilesNotSelected",
66     COLLECTION = 'Collection',
67     COLLECTION_RESOURCE = 'CollectionResource',
68     TRASHED_COLLECTION = 'TrashedCollection',
69     PROCESS = "Process",
70     PROCESS_RESOURCE = 'ProcessResource',
71     PROCESS_LOGS = "ProcessLogs",
72     REPOSITORY = "Repository",
73     SSH_KEY = "SshKey",
74     VIRTUAL_MACHINE = "VirtualMachine",
75     KEEP_SERVICE = "KeepService",
76     NODE = "Node"
77 }