[SDC] Onboarding 1710 rebase.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / softwareProduct / components / network / NICCreation / NICCreation.js
1 /*!
2  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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
13  * or implied. See the License for the specific language governing
14  * permissions and limitations under the License.
15  */
16 import {connect} from 'react-redux';
17 import NICCreationActionHelper from './NICCreationActionHelper.js';
18 import NICCreationView from './NICCreationView.jsx';
19 import SoftwareProductComponentsNetworkActionHelper from '../SoftwareProductComponentsNetworkActionHelper.js';
20 import {networkTypes, NIC_CREATION_FORM_NAME} from '../SoftwareProductComponentsNetworkConstants.js';
21 import ValidationHelper from 'sdc-app/common/helpers/ValidationHelper.js';
22
23 export const mapStateToProps = ({softwareProduct}) => {
24         let {softwareProductEditor: {data:currentSoftwareProduct = {}}, softwareProductComponents} = softwareProduct;
25         let {network: {nicCreation = {}}} = softwareProductComponents;
26         let {data, genericFieldInfo, formReady} = nicCreation;
27         data = {...data, networkType: networkTypes.EXTERNAL};
28         let isFormValid = ValidationHelper.checkFormValid(genericFieldInfo);
29
30         return {
31                 currentSoftwareProduct,
32                 data,
33                 genericFieldInfo,
34                 isFormValid,
35                 formReady
36         };
37 };
38
39 const mapActionsToProps = (dispatch) => {
40         return {
41                 onDataChanged: deltaData => ValidationHelper.dataChanged(dispatch, {deltaData, formName: NIC_CREATION_FORM_NAME}),
42                 onCancel: () => NICCreationActionHelper.close(dispatch),
43                 onSubmit: ({nic, softwareProductId, componentId, version}) => {
44                         NICCreationActionHelper.close(dispatch);
45                         SoftwareProductComponentsNetworkActionHelper.createNIC(dispatch, {nic, softwareProductId, componentId, version});
46                 },
47                 onValidateForm: () => ValidationHelper.validateForm(dispatch, NIC_CREATION_FORM_NAME)
48         };
49 };
50
51 export default connect(mapStateToProps, mapActionsToProps)(NICCreationView);