Merge branch 'master' into 14097-make-a-copy-process
[arvados-workbench2.git] / src / views-components / dialog-forms / copy-process-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 { PROCESS_COPY_FORM_NAME } from '~/store/processes/process-copy-actions';
9 import { DialogCopy } from "~/views-components/dialog-copy/dialog-copy";
10 import { copyProcess } from '~/store/workbench/workbench-actions';
11 import { CopyFormDialogData } from '~/store/copy-dialog/copy-dialog';
12
13 export const CopyProcessDialog = compose(
14     withDialog(PROCESS_COPY_FORM_NAME),
15     reduxForm<CopyFormDialogData>({
16         form: PROCESS_COPY_FORM_NAME,
17         onSubmit: (data, dispatch) => {
18             dispatch(copyProcess(data));
19         }
20     })
21 )(DialogCopy);