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 { 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 } 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";
16 export const collectionResourceActionSet: ContextMenuActionSet = [[
19 name: "Edit collection",
20 execute: (dispatch, resource) => {
21 dispatch<any>(openCollectionUpdateDialog(resource));
27 execute: (dispatch, resource) => {
34 execute: (dispatch, resource) => dispatch<any>(openMoveCollectionDialog(resource))
37 component: ToggleFavoriteAction,
38 execute: (dispatch, resource) => {
39 dispatch<any>(toggleFavorite(resource)).then(() => {
40 dispatch<any>(favoritePanelActions.REQUEST_ITEMS());
45 component: ToggleTrashAction,
46 execute: (dispatch, resource) => {
47 dispatch<any>(toggleCollectionTrashed(resource.uuid, resource.isTrashed!!));
52 name: "Copy to project",
53 execute: (dispatch, resource) => {
54 dispatch<any>(openCollectionCopyDialog(resource));
60 execute: (dispatch, resource) => {
67 execute: (dispatch, resource) => {