1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { reset } from "redux-form";
7 import { ContextMenuActionSet } from "../context-menu-action-set";
8 import { projectActions } from "~/store/project/project-action";
9 import { collectionCreateActions } from "~/store/collections/creator/collection-creator-action";
10 import { PROJECT_CREATE_DIALOG } from "../../dialog-create/dialog-project-create";
11 import { COLLECTION_CREATE_DIALOG } from "../../dialog-create/dialog-collection-create";
12 import { NewProjectIcon, CollectionIcon } from "~/components/icon/icon";
14 export const rootProjectActionSet: ContextMenuActionSet = [[
18 execute: (dispatch, resource) => {
19 dispatch(reset(PROJECT_CREATE_DIALOG));
20 dispatch(projectActions.OPEN_PROJECT_CREATOR({ ownerUuid: resource.uuid }));
25 name: "New Collection",
26 execute: (dispatch, resource) => {
27 dispatch(reset(COLLECTION_CREATE_DIALOG));
28 dispatch(collectionCreateActions.OPEN_COLLECTION_CREATOR({ ownerUuid: resource.uuid }));