Merge branch '21128-toolbar-context-menu'
[arvados-workbench2.git] / src / views-components / dialog-forms / copy-collection-dialog.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { compose } from "redux";
6 import { withDialog } from "store/dialog/with-dialog";
7 import { reduxForm } from "redux-form";
8 import { COLLECTION_COPY_FORM_NAME, COLLECTION_MULTI_COPY_FORM_NAME } from "store/collections/collection-copy-actions";
9 import { DialogCopy, DialogMultiCopy } from "views-components/dialog-copy/dialog-copy";
10 import { copyCollection } from "store/workbench/workbench-actions";
11 import { CopyFormDialogData } from "store/copy-dialog/copy-dialog";
12 import { pickerId } from "store/tree-picker/picker-id";
13
14 export const CopyCollectionDialog = compose(
15     withDialog(COLLECTION_COPY_FORM_NAME),
16     reduxForm<CopyFormDialogData>({
17         form: COLLECTION_COPY_FORM_NAME,
18         touchOnChange: true,
19         onSubmit: (data, dispatch) => {
20             dispatch(copyCollection(data));
21         },
22     }),
23     pickerId(COLLECTION_COPY_FORM_NAME)
24 )(DialogCopy);
25
26 export const CopyMultiCollectionDialog = compose(
27     withDialog(COLLECTION_MULTI_COPY_FORM_NAME),
28     reduxForm<CopyFormDialogData>({
29         form: COLLECTION_MULTI_COPY_FORM_NAME,
30         touchOnChange: true,
31         onSubmit: (data, dispatch) => {
32             dispatch(copyCollection(data));
33         },
34     }),
35     pickerId(COLLECTION_MULTI_COPY_FORM_NAME)
36 )(DialogMultiCopy);