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 { AdvancedIcon, RemoveIcon, ShareIcon, AttributesIcon } from 'components/icon/icon';
7 import { openAdvancedTabDialog } from 'store/advanced-tab/advanced-tab';
8 import { openRepositoryAttributes, openRemoveRepositoryDialog } from 'store/repositories/repositories-actions';
9 import { openSharingDialog } from 'store/sharing-dialog/sharing-dialog-actions';
11 export const repositoryActionSet: ContextMenuActionSet = [
16 execute: (dispatch, resources) => {
17 resources.forEach((resource) => dispatch<any>(openRepositoryAttributes(resource.uuid)));
23 execute: (dispatch, resources) => {
24 resources.forEach((resource) => dispatch<any>(openSharingDialog(resource.uuid)));
30 execute: (dispatch, resources) => {
31 resources.forEach((resource) => dispatch<any>(openAdvancedTabDialog(resource.uuid)));
37 execute: (dispatch, resources) => {
38 resources.forEach((resource) => dispatch<any>(openRemoveRepositoryDialog(resource.uuid)));