2 * Copyright © 2018 European Support Limited
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 import { connect } from 'react-redux';
21 } from 'features/version/versionController/versionControllerSelectors';
22 import VersionControllerView from 'features/version/versionController/VersionControllerView';
23 import { getVersions } from 'features/workflow/overview/overviewSelectors';
27 } from 'features/workflow/workflowSelectors';
31 } from 'features/version/versionController/versionControllerConstants';
33 function mapStateToProps(state) {
35 workflowName: getWorkflowName(state),
36 workflowId: getWorkflowId(state),
37 versionsList: getVersionsList(state),
38 savedParams: getSavedObjParams(state),
39 currentWorkflowVersion: state.currentVersion.general.id,
40 versionState: state.currentVersion.general.state
44 function mapDispatchToProps(dispatch) {
46 callForAction: (action, payload) =>
47 dispatch({ type: action, payload: payload }),
48 getVersions: () => dispatch(getVersions),
49 saveParamsToServer: params => dispatch(saveParamsAction(params)),
50 certifyVersion: payload => dispatch(certifyVersionAction(payload))
54 export default connect(mapStateToProps, mapDispatchToProps)(