add advance option to collection on table view
[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, RemoveIcon, 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 { detailsPanelActions } from '~/store/details-panel/details-panel-action';
16 import { openSharingDialog } from "~/store/sharing-dialog/sharing-dialog-actions";
17 import { openAdvancedTabDialog } from '~/store/advanced-tab/advanced-tab';
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         component: ToggleTrashAction,
44         execute: (dispatch, resource) => {
45             dispatch<any>(toggleCollectionTrashed(resource.uuid, resource.isTrashed!!));
46         }
47     },
48     {
49         icon: MoveToIcon,
50         name: "Move to",
51         execute: (dispatch, resource) => {
52             dispatch<any>(openMoveCollectionDialog(resource));
53         }
54     },
55     {
56         icon: CopyIcon,
57         name: "Copy to project",
58         execute: (dispatch, resource) => {
59             dispatch<any>(openCollectionCopyDialog(resource));
60         }
61     },
62     {
63         icon: DetailsIcon,
64         name: "View details",
65         execute: dispatch => {
66             dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL());
67         }
68     },
69     {
70         icon: AdvancedIcon,
71         name: "Advanced",
72         execute: (dispatch, resource) => {
73             dispatch<any>(openAdvancedTabDialog(resource.uuid));
74         }
75     }
76     // {
77     //     icon: RemoveIcon,
78     //     name: "Remove",
79     //     execute: (dispatch, resource) => {
80     //         // add code
81     //     }
82     // }
83 ]];