Merge branch 'master' into 14452-my-account
[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';
8 import { openAdvancedTabDialog } from '~/store/advanced-tab/advanced-tab';
9
10 export const sshKeyActionSet: ContextMenuActionSet = [[{
11     name: "Attributes",
12     icon: AttributesIcon,
13     execute: (dispatch, { uuid }) => {
14         dispatch<any>(openSshKeyAttributesDialog(uuid));
15     }
16 }, {
17     name: "Advanced",
18     icon: AdvancedIcon,
19     execute: (dispatch, { uuid }) => {
20         dispatch<any>(openAdvancedTabDialog(uuid));
21     }
22 }, {
23     name: "Remove",
24     icon: RemoveIcon,
25     execute: (dispatch, { uuid }) => {
26         dispatch<any>(openSshKeyRemoveDialog(uuid));
27     }
28 }]];