1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
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 { DialogProcessRerun } from 'views-components/dialog-copy/dialog-process-rerun';
10 import { copyProcess } from 'store/workbench/workbench-actions';
11 import { CopyFormDialogData } from 'store/copy-dialog/copy-dialog';
12 import { pickerId } from 'store/tree-picker/picker-id';
14 export const CopyProcessDialog = compose(
15 withDialog(PROCESS_COPY_FORM_NAME),
16 reduxForm<CopyFormDialogData>({
17 form: PROCESS_COPY_FORM_NAME,
18 onSubmit: (data, dispatch) => {
19 dispatch(copyProcess(data));
22 pickerId(PROCESS_COPY_FORM_NAME)
23 )(DialogProcessRerun);