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 { DetailsIcon, ProvenanceGraphIcon, AdvancedIcon, RestoreFromTrashIcon } from 'components/icon/icon';
7 import { toggleCollectionTrashed } from 'store/trash/trash-actions';
8 import { openAdvancedTabDialog } from 'store/advanced-tab/advanced-tab';
9 import { toggleDetailsPanel } from 'store/details-panel/details-panel-action';
11 export const trashedCollectionActionSet: ContextMenuActionSet = [
16 execute: (dispatch) => {
17 dispatch<any>(toggleDetailsPanel());
21 icon: ProvenanceGraphIcon,
22 name: 'Provenance graph',
23 execute: (dispatch, resource) => {
30 execute: (dispatch, resources) => {
31 dispatch<any>(openAdvancedTabDialog(resources[0].uuid));
35 icon: RestoreFromTrashIcon,
37 execute: (dispatch, resources) => {
38 resources.forEach((resource) => dispatch<any>(toggleCollectionTrashed(resource.uuid, true)));