summaryrefslogtreecommitdiffstats
path: root/auth/auth-gui/theme/onap/comm.js
blob: 23309ef43b98e7321865dd86b80368086683cb67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function http(meth, sURL, sInput, func) {
	if (sInput != "") { 
		var http;
		if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
		  http=new XMLHttpRequest();
		} else {// code for IE6, IE5
		  http=new ActiveXObject('Microsoft.XMLHTTP');
		}
	
		http.onreadystatechange=function() {
		  if(http.readyState==4 && http.status == 200) {
			 func(http.responseText)
		  }
		  // Probably want Exception code too.
		}
		
		http.open(meth,sURL,false);
		http.setRequestHeader('Content-Type','text/plain;charset=UTF-8');
		http.send(sInput);
	}
}
alModalActionTypes} from 'nfvo-components/modal/GlobalModalConstants.js'; import ValidationHelper from 'sdc-app/common/helpers/ValidationHelper.js'; import Limits from 'sdc-app/onboarding/licenseModel/limits/Limits.jsx'; import LicenseKeyGroupsActionHelper from './LicenseKeyGroupsActionHelper.js'; const mapStateToProps = ({licenseModel: {licenseKeyGroup: {licenseKeyGroupsEditor: {data}}, limitEditor}, currentScreen}) => { let {props: {licenseModelId, version}} = currentScreen; return { parent: data, limitEditor, licenseModelId, version }; }; const mapActionsToProps = (dispatch) => { return { onDataChanged: (deltaData, formName, customValidations) => ValidationHelper.dataChanged(dispatch, {deltaData, formName, customValidations}), onSubmit: (limit, licenseKeyGroup, licenseModelId, version) => LicenseKeyGroupsActionHelper.submitLimit(dispatch, { limit, licenseKeyGroup, licenseModelId, version}), onDelete: ({limit, parent, licenseModelId, version, onCloseLimitEditor, selectedLimit}) => dispatch({ type: globalModalActionTypes.GLOBAL_MODAL_WARNING, data:{ msg: i18n(`Are you sure you want to delete ${limit.name}?`), confirmationButtonText: i18n('Delete'), title: i18n('Warning'), onConfirmed: ()=> LicenseKeyGroupsActionHelper.deleteLimit(dispatch, {limit, licenseKeyGroup: parent, licenseModelId, version}).then(() => selectedLimit === limit.id && onCloseLimitEditor() ) } }) }; }; export default connect(mapStateToProps, mapActionsToProps)(Limits);