X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/9f388c2e557c01b0380ffba01bc81dfdd18e8be2..3c7e3cdc547ad5468421e1c049daa94b0d4b8bc0:/src/views/run-process-panel/run-process-panel-root.tsx diff --git a/src/views/run-process-panel/run-process-panel-root.tsx b/src/views/run-process-panel/run-process-panel-root.tsx index f399d964..3c42437a 100644 --- a/src/views/run-process-panel/run-process-panel-root.tsx +++ b/src/views/run-process-panel/run-process-panel-root.tsx @@ -2,27 +2,30 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { Stepper, Step, StepLabel, StepContent } from '@material-ui/core'; -import { RunProcessFirstStepDataProps, RunProcessFirstStepActionProps, RunProcessFirstStep } from '~/views/run-process-panel/run-process-first-step'; -import { RunProcessSecondStepDataProps, RunProcessSecondStepActionProps, RunProcessSecondStepForm } from '~/views/run-process-panel/run-process-second-step'; +import { RunProcessFirstStepDataProps, RunProcessFirstStepActionProps, RunProcessFirstStep } from 'views/run-process-panel/run-process-first-step'; +import { RunProcessSecondStepForm } from './run-process-second-step'; export type RunProcessPanelRootDataProps = { currentStep: number; -} & RunProcessFirstStepDataProps & RunProcessSecondStepDataProps; +} & RunProcessFirstStepDataProps; -export type RunProcessPanelRootActionProps = RunProcessFirstStepActionProps & RunProcessSecondStepActionProps; +export type RunProcessPanelRootActionProps = RunProcessFirstStepActionProps & { + runProcess: () => void; +}; type RunProcessPanelRootProps = RunProcessPanelRootDataProps & RunProcessPanelRootActionProps; -export const RunProcessPanelRoot = ({ currentStep, onSetStep, onRunProcess, onSetWorkflow, workflows, selectedWorkflow }: RunProcessPanelRootProps) => +export const RunProcessPanelRoot = ({ runProcess, currentStep, onSearch, onSetStep, onSetWorkflow, workflows, selectedWorkflow }: RunProcessPanelRootProps) => Choose a workflow - @@ -30,8 +33,9 @@ export const RunProcessPanelRoot = ({ currentStep, onSetStep, onRunProcess, onSe Select inputs - - {/* */} + onSetStep(0)} + runProcess={runProcess} /> ; \ No newline at end of file