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, 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 import { toggleDetailsPanel } from '~/store/details-panel/details-panel-action';
20 export const collectionResourceActionSet: 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) => {
53 dispatch<any>(openMoveCollectionDialog(resource));
58 name: "Copy to project",
59 execute: (dispatch, resource) => {
60 dispatch<any>(openCollectionCopyDialog(resource));
66 execute: dispatch => {
67 dispatch<any>(toggleDetailsPanel());
73 execute: (dispatch, resource) => {
74 dispatch<any>(openAdvancedTabDialog(resource.uuid));
80 // execute: (dispatch, resource) => {