Merge branch 'main' from workbench2.git
[arvados.git] / services / workbench2 / src / views-components / context-menu / action-sets / static / gitweb.css
diff --git a/src/views-components/context-menu/action-sets/trashed-collection-action-set.ts b/src/views-components/context-menu/action-sets/trashed-collection-action-set.ts
deleted file mode 100644 (file)
index 3e8f0cb..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (C) The Arvados Authors. All rights reserved.
-//
-// SPDX-License-Identifier: AGPL-3.0
-
-import { ContextMenuActionSet } from '../context-menu-action-set';
-import { DetailsIcon, ProvenanceGraphIcon, AdvancedIcon, RestoreFromTrashIcon } from 'components/icon/icon';
-import { toggleCollectionTrashed } from 'store/trash/trash-actions';
-import { openAdvancedTabDialog } from 'store/advanced-tab/advanced-tab';
-import { toggleDetailsPanel } from 'store/details-panel/details-panel-action';
-
-export const trashedCollectionActionSet: ContextMenuActionSet = [
-    [
-        {
-            icon: DetailsIcon,
-            name: 'View details',
-            execute: (dispatch) => {
-                dispatch<any>(toggleDetailsPanel());
-            },
-        },
-        {
-            icon: ProvenanceGraphIcon,
-            name: 'Provenance graph',
-            execute: (dispatch, resource) => {
-                // add code
-            },
-        },
-        {
-            icon: AdvancedIcon,
-            name: 'API Details',
-            execute: (dispatch, resources) => {
-                dispatch<any>(openAdvancedTabDialog(resources[0].uuid));
-            },
-        },
-        {
-            icon: RestoreFromTrashIcon,
-            name: 'Restore',
-            execute: (dispatch, resources) => {
-                resources.forEach((resource) => dispatch<any>(toggleCollectionTrashed(resource.uuid, true)));
-            },
-        },
-    ],
-];