Upgrade Eslint & Prettier
[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     selectVersionAction
28 } from 'features/workflow/overview/overviewConstansts';
29 import { NEW_VERSION_MODAL } from 'shared/modal/modalWrapperComponents';
30 import { showCustomModalAction } from 'shared/modal/modalWrapperActions';
31 import { inputChangeAction } from 'features/workflow/create/createWorkflowConstants';
32
33 function mapStateToProps(state) {
34     return {
35         versions: getSortedVersions(state),
36         selectedVersion: getSelectedVersionId(state),
37         workflow: getWorkflowData(state),
38         isVersionsCertifies: getAllIsVersionsCertifies(state)
39     };
40 }
41
42 function mapDispatchToProps(dispatch) {
43     return {
44         getOverview: workflowId => dispatch(getVersionsAction(workflowId)),
45         onSelectVersion: payload => dispatch(selectVersionAction(payload)),
46         showNewVersionModal: () =>
47             dispatch(
48                 showCustomModalAction({
49                     customComponentName: NEW_VERSION_MODAL,
50                     title: 'New Version'
51                 })
52             ),
53         workflowInputChange: payload => dispatch(inputChangeAction(payload)),
54         updateWorkflow: payload => dispatch(updateWorkflowAction(payload))
55     };
56 }
57
58 export default connect(
59     mapStateToProps,
60     mapDispatchToProps
61 )(OverviewView);