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