Merge branch '17019-token-visible-within-test'
[arvados-workbench2.git] / src / views-components / context-menu / action-sets / collection-resource-action-set.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { ContextMenuActionSet } from "../context-menu-action-set";
6 import { ToggleFavoriteAction } from "../actions/favorite-action";
7 import { ToggleTrashAction } from "~/views-components/context-menu/actions/trash-action";
8 import { toggleFavorite } from "~/store/favorites/favorites-actions";
9 import { RenameIcon, ShareIcon, MoveToIcon, CopyIcon, DetailsIcon, AdvancedIcon } from '~/components/icon/icon';
10 import { openCollectionUpdateDialog } from "~/store/collections/collection-update-actions";
11 import { favoritePanelActions } from "~/store/favorite-panel/favorite-panel-action";
12 import { openMoveCollectionDialog } from '~/store/collections/collection-move-actions';
13 import { openCollectionCopyDialog } from '~/store/collections/collection-copy-actions';
14 import { toggleCollectionTrashed } from "~/store/trash/trash-actions";
15 import { openSharingDialog } from "~/store/sharing-dialog/sharing-dialog-actions";
16 import { openAdvancedTabDialog } from '~/store/advanced-tab/advanced-tab';
17 import { toggleDetailsPanel } from '~/store/details-panel/details-panel-action';
18
19 export const collectionResourceActionSet: ContextMenuActionSet = [[
20     {
21         icon: RenameIcon,
22         name: "Edit collection",
23         execute: (dispatch, resource) => {
24             dispatch<any>(openCollectionUpdateDialog(resource));
25         }
26     },
27     {
28         icon: ShareIcon,
29         name: "Share",
30         execute: (dispatch, { uuid }) => {
31             dispatch<any>(openSharingDialog(uuid));
32         }
33     },
34     {
35         component: ToggleFavoriteAction,
36         execute: (dispatch, resource) => {
37             dispatch<any>(toggleFavorite(resource)).then(() => {
38                 dispatch<any>(favoritePanelActions.REQUEST_ITEMS());
39             });
40         }
41     },
42     {
43         icon: MoveToIcon,
44         name: "Move to",
45         execute: (dispatch, resource) => {
46             dispatch<any>(openMoveCollectionDialog(resource));
47         }
48     },
49     {
50         icon: CopyIcon,
51         name: "Copy to project",
52         execute: (dispatch, resource) => {
53             dispatch<any>(openCollectionCopyDialog(resource));
54         }
55     },
56     {
57         icon: DetailsIcon,
58         name: "View details",
59         execute: dispatch => {
60             dispatch<any>(toggleDetailsPanel());
61         }
62     },
63     {
64         icon: AdvancedIcon,
65         name: "Advanced",
66         execute: (dispatch, resource) => {
67             dispatch<any>(openAdvancedTabDialog(resource.uuid));
68         }
69     },
70     {
71         component: ToggleTrashAction,
72         execute: (dispatch, resource) => {
73             dispatch<any>(toggleCollectionTrashed(resource.uuid, resource.isTrashed!!));
74         }
75     },
76     // {
77     //     icon: RemoveIcon,
78     //     name: "Remove",
79     //     execute: (dispatch, resource) => {
80     //         // add code
81     //     }
82     // }
83 ]];