Merge branch 'master'
[arvados-workbench2.git] / src / views-components / context-menu / action-sets / project-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 "../context-menu-action-set";
6 import { projectActions } from "../../../store/project/project-action";
7 import { ShareIcon, NewProjectIcon  } from "../../../components/icon/icon";
8
9 export const projectActionSet: ContextMenuActionSet = [[{
10     icon: NewProjectIcon,
11     name: "New project",
12     execute: (dispatch, resource) => {
13         dispatch(projectActions.OPEN_PROJECT_CREATOR({ ownerUuid: resource.uuid }));
14     }
15 }, {
16     icon: ShareIcon,
17     name: "Share",
18     execute: () => { return; }
19 }]];