blob: 142ec3c4c89c0c52434e6c105737cf0d7b580fc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
import React from 'react';
import {connect} from 'react-redux';
import ConfirmationModalView from 'nfvo-components/confirmations/ConfirmationModalView.jsx';
import FeatureGroupsActionHelper from './FeatureGroupsActionHelper.js';
import i18n from 'nfvo-utils/i18n/i18n.js';
function renderMsg(featureGroupToDelete) {
let name = featureGroupToDelete ? featureGroupToDelete.name : '';
let msg = i18n('Are you sure you want to delete "{name}"?', {name});
let subMsg = featureGroupToDelete
&& featureGroupToDelete.referencingLicenseAgreements
&& featureGroupToDelete.referencingLicenseAgreements.length > 0 ?
i18n('This feature group is associated with one ore more license agreements') :
'';
return (
<div>
<p>{msg}</p>
<p>{subMsg}</p>
</div>
);
};
const mapStateToProps = ({licenseModel: {featureGroup}}, {licenseModelId}) => {
let {featureGroupToDelete} = featureGroup;
const show = featureGroupToDelete !== false;
return {
show,
title: 'Warning!',
type: 'warning',
msg: renderMsg(featureGroupToDelete),
confirmationDetails: {featureGroupToDelete, licenseModelId}
};
};
const mapActionsToProps = (dispatch) => {
return {
onConfirmed: ({featureGroupToDelete, licenseModelId}) => {
FeatureGroupsActionHelper.deleteFeatureGroup(dispatch, {featureGroupId: featureGroupToDelete.id, licenseModelId});
FeatureGroupsActionHelper.hideDeleteConfirm(dispatch);
},
onDeclined: () => {
FeatureGroupsActionHelper.hideDeleteConfirm(dispatch);
}
};
};
export default connect(mapStateToProps, mapActionsToProps)(ConfirmationModalView);
|