Add collaboration feature
[sdc.git] / openecomp-ui / src / sdc-app / onboarding / licenseModel / featureGroups / FeatureGroupListEditor.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 FeatureGroupsActionHelper  from './FeatureGroupsActionHelper.js';
18 import FeatureGroupListEditorView, {generateConfirmationMsg} from './FeatureGroupListEditorView.jsx';
19 import i18n from 'nfvo-utils/i18n/i18n.js';
20 import {actionTypes as globalMoadlActions}  from 'nfvo-components/modal/GlobalModalConstants.js';
21
22 export const mapStateToProps = ({licenseModel: {featureGroup, licenseModelEditor}}) => {
23
24         const {featureGroupEditor: {data}, featureGroupsList} = featureGroup;
25         const {vendorName, version} = licenseModelEditor.data;
26
27         return {
28                 vendorName,
29                 version,
30                 featureGroupsModal: {
31                         show: Boolean(data),
32                         editMode: Boolean(data && data.id)
33                 },
34                 featureGroupsList
35         };
36
37 };
38
39
40 const mapActionsToProps = (dispatch, {licenseModelId}) => {
41         return {
42                 onDeleteFeatureGroupClick: (featureGroup, version) => dispatch({
43                         type: globalMoadlActions.GLOBAL_MODAL_WARNING,
44                         data:{
45                                 msg: generateConfirmationMsg(featureGroup),
46                                 confirmationButtonText: i18n('Delete'),
47                                 title: i18n('Delete'),
48                                 onConfirmed: ()=>FeatureGroupsActionHelper.deleteFeatureGroup(dispatch, {featureGroupId: featureGroup.id, licenseModelId, version})
49                         }
50                 }),
51                 onAddFeatureGroupClick: (actualVersion) => FeatureGroupsActionHelper.openFeatureGroupsEditor(dispatch, {licenseModelId, version: actualVersion}),
52                 onEditFeatureGroupClick: (featureGroup, actualVersion) => FeatureGroupsActionHelper.openFeatureGroupsEditor(dispatch, {
53                         featureGroup,
54                         licenseModelId,
55                         version: actualVersion
56                 })
57         };
58 };
59
60 export default connect(mapStateToProps, mapActionsToProps)(FeatureGroupListEditorView);