Add collaboration feature
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / licenseModel / entitlementPools / EntitlementPoolsListEditor.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 EntitlementPoolsActionHelper from './EntitlementPoolsActionHelper.js';
19 import EntitlementPoolsListEditorView, {generateConfirmationMsg} from './EntitlementPoolsListEditorView.jsx';
20 import {actionTypes as globalMoadlActions}  from 'nfvo-components/modal/GlobalModalConstants.js';
21
22 const mapStateToProps = ({licenseModel: {entitlementPool, licenseModelEditor}}) => {
23
24         const {entitlementPoolsList} = entitlementPool;
25         const {data} = entitlementPool.entitlementPoolEditor;
26         const {vendorName} = licenseModelEditor.data;
27
28         return {
29                 vendorName,
30                 entitlementPoolsList,
31                 isDisplayModal: Boolean(data),
32                 isModalInEditMode: Boolean(data && data.id),
33         };
34
35 };
36
37 const mapActionsToProps = (dispatch, {licenseModelId, version}) => {
38         return {
39                 onAddEntitlementPoolClick: () => EntitlementPoolsActionHelper.openEntitlementPoolsEditor(dispatch),
40                 onEditEntitlementPoolClick: entitlementPool => EntitlementPoolsActionHelper.openEntitlementPoolsEditor(dispatch, {entitlementPool, licenseModelId, version}),
41                 onDeleteEntitlementPool: entitlementPool => dispatch({
42                         type: globalMoadlActions.GLOBAL_MODAL_WARNING,
43                         data:{
44                                 msg: generateConfirmationMsg(entitlementPool),
45                                 confirmationButtonText: i18n('Delete'),
46                                 title: i18n('Delete'),
47                                 onConfirmed: () => EntitlementPoolsActionHelper.deleteEntitlementPool(dispatch, {
48                                         licenseModelId,
49                                         entitlementPoolId: entitlementPool.id,
50                                         version
51                                 })
52                         }
53                 })
54         };
55 };
56
57 export default connect(mapStateToProps, mapActionsToProps)(EntitlementPoolsListEditorView);