[SDC] Onboarding 1710 rebase.
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / licenseModel / licenseAgreement / LicenseAgreementListEditor.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 i18n from 'nfvo-utils/i18n/i18n.js';
18 import LicenseAgreementActionHelper from './LicenseAgreementActionHelper.js';
19 import LicenseAgreementListEditorView from './LicenseAgreementListEditorView.jsx';
20 import VersionControllerUtils from 'nfvo-components/panel/versionController/VersionControllerUtils.js';
21 import {actionTypes as globalMoadlActions}  from 'nfvo-components/modal/GlobalModalConstants.js';
22
23 const mapStateToProps = ({licenseModel: {licenseAgreement, licenseModelEditor}}) => {
24         let {licenseAgreementList} = licenseAgreement;
25         let {data} = licenseAgreement.licenseAgreementEditor;
26         let {vendorName, version} = licenseModelEditor.data;
27
28         let isReadOnlyMode = VersionControllerUtils.isReadOnly(licenseModelEditor.data);
29
30         return {
31                 vendorName,
32                 version,
33                 licenseAgreementList,
34                 isReadOnlyMode,
35                 isDisplayModal: Boolean(data),
36                 isModalInEditMode: Boolean(data && data.id)
37         };
38 };
39
40 const mapActionsToProps = (dispatch, {licenseModelId}) => {
41         return {
42                 onAddLicenseAgreementClick: (version) => LicenseAgreementActionHelper.openLicenseAgreementEditor(dispatch, {licenseModelId, version}),
43                 onEditLicenseAgreementClick: (licenseAgreement, version) => LicenseAgreementActionHelper.openLicenseAgreementEditor(dispatch, {licenseModelId, licenseAgreement, version}),
44                 onDeleteLicenseAgreement: (licenseAgreement, version) => dispatch({
45                         type: globalMoadlActions.GLOBAL_MODAL_WARNING,
46                         data:{
47                                 msg: i18n(`Are you sure you want to delete "${licenseAgreement.name}"?`),
48                                 title: i18n('Warning'),
49                                 onConfirmed: ()=>LicenseAgreementActionHelper.deleteLicenseAgreement(dispatch, {licenseModelId, licenseAgreementId: licenseAgreement.id, version})
50                         }
51                 })
52         };
53 };
54
55 export default connect(mapStateToProps, mapActionsToProps)(LicenseAgreementListEditorView);