cr changes
[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, CollectionCopyFormDialogData, copyCollection } from '~/store/collections/collection-copy-actions';
9 import { DialogCopy } from "~/views-components/dialog-copy/dialog-copy";
10
11 export const CopyCollectionDialog = compose(
12     withDialog(COLLECTION_COPY_FORM_NAME),
13     reduxForm<CollectionCopyFormDialogData>({
14         form: COLLECTION_COPY_FORM_NAME,
15         onSubmit: (data, dispatch) => {
16             dispatch(copyCollection(data));
17         }
18     })
19 )(DialogCopy);