1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { openKeepServiceAttributesDialog, openKeepServiceRemoveDialog } from 'store/keep-services/keep-services-actions';
6 import { openAdvancedTabDialog } from 'store/advanced-tab/advanced-tab';
7 import { ContextMenuActionSet, ContextMenuActionNames } from 'views-components/context-menu/context-menu-action-set';
8 import { AdvancedIcon, RemoveIcon, AttributesIcon } from 'components/icon/icon';
10 export const keepServiceActionSet: ContextMenuActionSet = [
13 name: ContextMenuActionNames.ATTRIBUTES,
15 execute: (dispatch, resources) => {
16 dispatch<any>(openKeepServiceAttributesDialog(resources[0].uuid));
20 name: ContextMenuActionNames.API_DETAILS,
22 execute: (dispatch, resources) => {
23 dispatch<any>(openAdvancedTabDialog(resources[0].uuid));
27 name: ContextMenuActionNames.REMOVE,
29 execute: (dispatch, resources) => {
30 dispatch<any>(openKeepServiceRemoveDialog(resources[0].uuid));