rename and change path for collection partial copy
[arvados-workbench2.git] / src / views-components / dialog-forms / copy-collection-partial-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 { reduxForm } from 'redux-form';
7 import { withDialog } from '~/store/dialog/with-dialog';
8 import { COLLECTION_PARTIAL_COPY_FORM_NAME, copyCollectionPartial, CollectionPartialCopyFormData } from '~/store/collection-panel/collection-panel-files/collection-panel-files-actions';
9 import { DialogCollectionPartialCopy } from '~/views-components/dialog-copy/dialog-collection-partial-copy';
10
11 export const CopyCollectionPartialDialog = compose(
12     withDialog(COLLECTION_PARTIAL_COPY_FORM_NAME),
13     reduxForm<CollectionPartialCopyFormData>({
14         form: COLLECTION_PARTIAL_COPY_FORM_NAME,
15         onSubmit: (data, dispatch) => {
16             dispatch(copyCollectionPartial(data));
17         }
18     })
19 )(DialogCollectionPartialCopy);