18874: Add 'services/workbench2/' from commit 'f6f88d9ca9cdeeeebfadcfe999789bfb9f69e5c6'
[arvados.git] / services / workbench2 / src / views-components / context-menu / action-sets / trash-action-set.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { ContextMenuActionSet } from "../context-menu-action-set";
6 import { ToggleTrashAction } from "views-components/context-menu/actions/trash-action";
7 import { toggleTrashed } from "store/trash/trash-actions";
8
9 export const trashActionSet: ContextMenuActionSet = [[
10     {
11         component: ToggleTrashAction,
12         execute: (dispatch, resource) => {
13             dispatch<any>(toggleTrashed(resource.kind, resource.uuid, resource.ownerUuid, resource.isTrashed!!));
14         }
15     },
16 ]];