Merge branch '21128-toolbar-context-menu'
[arvados-workbench2.git] / src / views-components / context-menu / action-sets / ssh-key-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 'views-components/context-menu/context-menu-action-set';
6 import { AdvancedIcon, RemoveIcon, AttributesIcon } from 'components/icon/icon';
7 import { openSshKeyRemoveDialog, openSshKeyAttributesDialog } from 'store/auth/auth-action-ssh';
8 import { openAdvancedTabDialog } from 'store/advanced-tab/advanced-tab';
9
10 export const sshKeyActionSet: ContextMenuActionSet = [
11     [
12         {
13             name: 'Attributes',
14             icon: AttributesIcon,
15             execute: (dispatch, resources) => {
16                 dispatch<any>(openSshKeyAttributesDialog(resources[0].uuid));
17             },
18         },
19         {
20             name: 'API Details',
21             icon: AdvancedIcon,
22             execute: (dispatch, resources) => {
23                 dispatch<any>(openAdvancedTabDialog(resources[0].uuid));
24             },
25         },
26         {
27             name: 'Remove',
28             icon: RemoveIcon,
29             execute: (dispatch, resources) => {
30                 dispatch<any>(openSshKeyRemoveDialog(resources[0].uuid));
31             },
32         },
33     ],
34 ];