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";
15 import { detailsPanelActions } from '~/store/details-panel/details-panel-action';
17 export const collectionResourceActionSet: ContextMenuActionSet = [[
20 name: "Edit collection",
21 execute: (dispatch, resource) => {
22 dispatch<any>(openCollectionUpdateDialog(resource));
28 execute: (dispatch, resource) => {
35 execute: (dispatch, resource) => dispatch<any>(openMoveCollectionDialog(resource))
38 component: ToggleFavoriteAction,
39 execute: (dispatch, resource) => {
40 dispatch<any>(toggleFavorite(resource)).then(() => {
41 dispatch<any>(favoritePanelActions.REQUEST_ITEMS());
46 component: ToggleTrashAction,
47 execute: (dispatch, resource) => {
48 dispatch<any>(toggleCollectionTrashed(resource.uuid, resource.isTrashed!!));
53 name: "Copy to project",
54 execute: (dispatch, resource) => {
55 dispatch<any>(openCollectionCopyDialog(resource));
61 execute: dispatch => dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL())
66 execute: (dispatch, resource) => {