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 { RenameIcon, RemoveIcon } from "~/components/icon/icon";
7 import { DownloadCollectionFileAction } from "../actions/download-collection-file-action";
8 import { openFileRemoveDialog, openRenameFileDialog } from '~/store/collection-panel/collection-panel-files/collection-panel-files-actions';
9 import { CollectionFileViewerAction } from '~/views-components/context-menu/actions/collection-file-viewer-action';
12 export const readOnlyCollectionFilesItemActionSet: ContextMenuActionSet = [[
14 component: DownloadCollectionFileAction,
15 execute: () => { return; }
18 component: CollectionFileViewerAction,
19 execute: () => { return; },
23 export const collectionFilesItemActionSet: ContextMenuActionSet = readOnlyCollectionFilesItemActionSet.concat([[
27 execute: (dispatch, resource) => {
28 dispatch<any>(openRenameFileDialog({ name: resource.name, id: resource.uuid }));
34 execute: (dispatch, resource) => {
35 dispatch<any>(openFileRemoveDialog(resource.uuid));