19231: Add smaller page sizes (10 and 20 items) to load faster
[arvados-workbench2.git] / src / views-components / dialog-forms / partial-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 { reduxForm } from 'redux-form';
7 import { withDialog, } from 'store/dialog/with-dialog';
8 import { CollectionPartialCopyFormData, copyCollectionPartial, COLLECTION_PARTIAL_COPY_FORM_NAME } from 'store/collections/collection-partial-copy-actions';
9 import { DialogCollectionPartialCopy } from "views-components/dialog-copy/dialog-collection-partial-copy";
10 import { pickerId } from "store/tree-picker/picker-id";
11
12
13 export const PartialCopyCollectionDialog = compose(
14     withDialog(COLLECTION_PARTIAL_COPY_FORM_NAME),
15     reduxForm<CollectionPartialCopyFormData>({
16         form: COLLECTION_PARTIAL_COPY_FORM_NAME,
17         onSubmit: (data, dispatch) => {
18             dispatch(copyCollectionPartial(data));
19         }
20     }),
21     pickerId(COLLECTION_PARTIAL_COPY_FORM_NAME),
22 )(DialogCollectionPartialCopy);