Fix output params
[sdc/sdc-workflow-designer.git] / workflow-designer-ui / src / main / frontend / src / features / workflow / overview / Overview.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 OverviewView from 'features/workflow/overview/OverviewView';
18 import {
19     getSortedVersions,
20     getSelectedVersionId,
21     getWorkflowData,
22     getAllIsVersionsCertifies
23 } from 'features/workflow/overview/overviewSelectors';
24 import {
25     getVersionsAction,
26     updateWorkflowAction
27 } from 'features/workflow/overview/overviewConstansts';
28 import { NEW_VERSION_MODAL } from 'shared/modal/modalWrapperComponents';
29 import { showCustomModalAction } from 'shared/modal/modalWrapperActions';
30 import { inputChangeAction } from 'features/workflow/create/createWorkflowConstants';
31
32 function mapStateToProps(state) {
33     return {
34         versions: getSortedVersions(state),
35         selectedVersion: getSelectedVersionId(state),
36         workflow: getWorkflowData(state),
37         isVersionsCertifies: getAllIsVersionsCertifies(state)
38     };
39 }
40
41 function mapDispatchToProps(dispatch) {
42     return {
43         getOverview: workflowId => dispatch(getVersionsAction(workflowId)),
44         showNewVersionModal: () =>
45             dispatch(
46                 showCustomModalAction({
47                     customComponentName: NEW_VERSION_MODAL,
48                     title: 'New Version'
49                 })
50             ),
51         workflowInputChange: payload => dispatch(inputChangeAction(payload)),
52         updateWorkflow: payload => dispatch(updateWorkflowAction(payload))
53     };
54 }
55
56 export default connect(
57     mapStateToProps,
58     mapDispatchToProps
59 )(OverviewView);