1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { ContextMenuActionSet } from "../context-menu-action-set";
6 import { ToggleFavoriteAction } from "../actions/favorite-action";
7 import { toggleFavorite } from "~/store/favorites/favorites-actions";
8 import { RenameIcon, ShareIcon, MoveToIcon, CopyIcon, DetailsIcon, ProvenanceGraphIcon, AdvancedIcon, RemoveIcon } from "~/components/icon/icon";
9 import { openCollectionUpdateDialog } from "~/store/collections/collection-update-actions";
10 import { favoritePanelActions } from "~/store/favorite-panel/favorite-panel-action";
11 import { openMoveCollectionDialog } from '~/store/collections/collection-move-actions';
12 import { openCollectionCopyDialog } from "~/store/collections/collection-copy-actions";
13 import { ToggleTrashAction } from "~/views-components/context-menu/actions/trash-action";
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 import { toggleDetailsPanel } from '~/store/details-panel/details-panel-action';
20 export const collectionActionSet: ContextMenuActionSet = [[
23 name: "Edit collection",
24 execute: (dispatch, resource) => {
25 dispatch<any>(openCollectionUpdateDialog(resource));
31 execute: (dispatch, { uuid }) => {
32 dispatch<any>(openSharingDialog(uuid));
36 component: ToggleFavoriteAction,
37 execute: (dispatch, resource) => {
38 dispatch<any>(toggleFavorite(resource)).then(() => {
39 dispatch<any>(favoritePanelActions.REQUEST_ITEMS());
44 component: ToggleTrashAction,
45 execute: (dispatch, resource) => {
46 dispatch<any>(toggleCollectionTrashed(resource.uuid, resource.isTrashed!!));
52 execute: (dispatch, resource) => dispatch<any>(openMoveCollectionDialog(resource))
56 name: "Copy to project",
57 execute: (dispatch, resource) => {
58 dispatch<any>(openCollectionCopyDialog(resource));
65 execute: dispatch => {
66 dispatch<any>(toggleDetailsPanel());
70 // icon: ProvenanceGraphIcon,
71 // name: "Provenance graph",
72 // execute: (dispatch, resource) => {
79 execute: (dispatch, resource) => {
80 dispatch<any>(openAdvancedTabDialog(resource.uuid));
86 // execute: (dispatch, resource) => {