Upgrade Eslint & Prettier
[sdc/sdc-workflow-designer.git] / workflow-designer-ui / src / main / frontend / src / features / workflow / create / CreateWorkflow.js
1 /*
2 * Copyright © 2018 European Support Limited
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10  * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 import { connect } from 'react-redux';
17 import { withRouter } from 'react-router-dom';
18
19 import { i18nSelector } from 'wfapp/appSelectors';
20 import { hideModalAction } from 'shared/modal/modalWrapperActions';
21 import CreateWorkflowView from 'features/workflow/create/CreateWorkflowView';
22 import { getWorkflowParams } from 'features/workflow/create/createWorkflowSelector';
23 import {
24     getWorkflowDescription,
25     getWorkflowName
26 } from 'features/workflow/workflowSelectors';
27 import {
28     inputChangeAction,
29     submitWorkflowAction,
30     putNameError
31 } from 'features/workflow/create/createWorkflowConstants';
32
33 function mapStateToProps(state) {
34     return {
35         translation: i18nSelector(state),
36         workflowDescription: getWorkflowDescription(state),
37         workflowName: getWorkflowName(state),
38         workflowParams: getWorkflowParams(state),
39         errorMessage: state.workflow.data.error
40     };
41 }
42
43 function mapDispatchToProps(dispatch) {
44     return {
45         submitWorkflow: payload => {
46             dispatch(submitWorkflowAction(payload));
47             dispatch(hideModalAction());
48         },
49         closeCreateWorkflowModal: () => dispatch(hideModalAction()),
50         putNameError: () => dispatch(putNameError()),
51         workflowInputChange: payload => dispatch(inputChangeAction(payload))
52     };
53 }
54
55 export default withRouter(
56     connect(
57         mapStateToProps,
58         mapDispatchToProps
59     )(CreateWorkflowView)
60 );