1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { ContextMenuActionSet } from 'views-components/context-menu/context-menu-action-set';
6 import { RenameIcon, AdvancedIcon, RemoveIcon, AttributesIcon } from 'components/icon/icon';
7 import { openAdvancedTabDialog } from 'store/advanced-tab/advanced-tab';
8 import { openGroupAttributes, openRemoveGroupDialog, openGroupUpdateDialog } from 'store/groups-panel/groups-panel-actions';
10 export const groupActionSet: ContextMenuActionSet = [
15 execute: (dispatch, resources) => {
16 dispatch<any>(openGroupUpdateDialog(resources[0]))
22 execute: (dispatch, resources) => {
23 dispatch<any>(openGroupAttributes(resources[0].uuid))
29 execute: (dispatch, resources) => {
30 dispatch<any>(openAdvancedTabDialog(resources[0].uuid));
36 execute: (dispatch, resources) => {
37 dispatch<any>(openRemoveGroupDialog(resources[0].uuid));