aboutsummaryrefslogtreecommitdiffstats
path: root/ecomp-sdk-app/src/main/webapp/static/fusion/raptor/js/raptor.js
blob: a13e77c80faee14acbc548b4037322549462a09d (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
function grayOut(vis, options) {
  // Pass true to gray out screen, false to ungray
  // options are optional.  This is a JSON object with the following (optional) properties
  // opacity:0-100         // Lower number = less grayout higher = more of a blackout 
  // zindex: #             // HTML elements with a higher zindex appear on top of the gray out
  // bgcolor: (#xxxxxx)    // Standard RGB Hex color code
  // grayOut(true, {'zindex':'50', 'bgcolor':'#0000FF', 'opacity':'70'});
  // Because options is JSON opacity/zindex/bgcolor are all optional and can appear
  // in any order.  Pass only the properties you need to set.
  var options = options || {}; 
  var zindex = options.zindex || 50;
  var opacity = options.opacity || 20;
  var opaque = (opacity / 100);
  var bgcolor = options.bgcolor || '#000000';
  var dark=document.getElementById('darkenScreenObject');
  //var tbody = document.getElementsByTagName("body")[0];
  var tbody = document.body;
  var myAjax = document.getElementById('AjaxLoading');
  
  if (!dark) {
    // The dark layer doesn't exist, it's never been created.  So we'll
    // create it here and apply some basic styles.
    // If you are getting errors in IE see: http://support.microsoft.com/default.aspx/kb/927917
    var tnode = document.createElement('div');           // Create the layer.
        tnode.style.position='absolute';                 // Position absolutely
        tnode.style.top='0px';                           // In the top
        tnode.style.left='0px';                          // Left corner of the page
        tnode.style.overflow='hidden';                   // Try to avoid making scroll bars            
        tnode.style.display='none';                      // Start out Hidden
        tnode.id='darkenScreenObject';                   // Name it so we can find it later
    tbody.appendChild(tnode);                            // Add it to the web page
    dark=document.getElementById('darkenScreenObject');  // Get the object.
  }
  if (vis) {
    // Calculate the page width and height 
    if( document.body && ( document.body.scrollWidth || document.body.scrollHeight ) ) {
        var pageWidth = document.body.scrollWidth+'px';
        var pageHeight = document.body.scrollHeight+'px';
    } else if( document.body.offsetWidth ) {
      var pageWidth = document.body.offsetWidth+'px';
      var pageHeight = document.body.offsetHeight+'px';
    } else {
       var pageWidth='100%';
       var pageHeight='100%';
    }   
    //set the shader to cover the entire page and make it visible.
    dark.style.opacity=opaque;                      
    dark.style.MozOpacity=opaque;                   
    dark.style.filter='alpha(opacity='+opacity+')'; 
    dark.style.zIndex=zindex;        
    dark.style.backgroundColor=bgcolor;  
    dark.style.width= pageWidth;
    dark.style.height= pageHeight;
    dark.style.display='block';
    //MyAjax
    
    /* Display the "Loading" box */
    var tnode = document.createElement('div'); // Create the layer.
    tnode.style.position='absolute'; // Position absolutely
    tnode.style.top='0px'; // In the top
    tnode.style.left='0px'; // Left corner of the page
    tnode.style.overflow='hidden'; // Try to avoid making scroll bars
    tnode.style.display='none'; // Start out Hidden
    tnode.id='AjaxLoading'; // Name it so we can find it later
    tbody.appendChild(tnode); // Add it to the web page
    myAjax=document.getElementById('AjaxLoading'); // Get the object.

    // Content
    // Reset the opacity options. Want this on top
    var loadingOptions = loadingOptions || {};
    var zindex = loadingOptions.zindex || 100;
    var opacity = loadingOptions.opacity || 100;
    var opaque = (opacity / 100);
    var bgcolor = loadingOptions.bgcolor || '#FFFFFF';

    myAjax.style.opacity=opaque;
    myAjax.style.MozOpacity=opaque;
    myAjax.style.filter='alpha(opacity='+opacity+')';
    myAjax.style.zIndex=zindex;

    myAjax.style.height= '40px';
    myAjax.style.padding = '3px';
    myAjax.style.fontSize = '14px';
    myAjax.style.width = '100px';
    myAjax.style.textAlign = 'center';
    myAjax.style.left = '45%';
    myAjax.style.top = '5%';
    myAjax.style.position = 'absolute';
    myAjax.style.border = '2px solid #666';
    myAjax.style.backgroundColor = bgcolor;

    myAjax.innerHTML='Loading <img src="static/fusion/raptor/images/progress.gif" id="wait" />';
    myAjax.style.display='block';
    
  } else {
     if(dark)   dark.style.display='none';
     if(myAjax) myAjax.style.display='none';
  }
}
function checkDate(dateStr, isOptional) {
	if(dateStr.charAt(0) == '[' && dateStr.charAt(dateStr.length-1) == ']')
		return true;
	if(dateStr=="")
		return isOptional;
	
	if((dateStr.length<6)||(dateStr.length>10))
		return false;
	
	if(dateStr.charAt(1)=='/') {
		dmonth  = parseInt(dateStr.substr(0,1));
		dateStr = dateStr.substr(2,dateStr.length-2);
	} else {
		//For some strange reason "08" is parsed as 0, so I remove leading 0-s
		if(dateStr.charAt(0)=='0')
			dmonth = parseInt(dateStr.substr(1,1));
		else
			dmonth = parseInt(dateStr.substr(0,2));
		dateStr = dateStr.substr(3,dateStr.length-3);
	}
	
	if(dateStr.charAt(1)=='/') {
		dday = parseInt(dateStr.substr(0,1));
		dateStr = dateStr.substr(2,dateStr.length-2);
	} else {
		//For some strange reason "08" is parsed as 0, so I remove leading 0-s
		if(dateStr.charAt(0)=='0')
			dday = parseInt(dateStr.substr(1,1));
		else
			dday = parseInt(dateStr.substr(0,2));
		dateStr = dateStr.substr(3,dateStr.length-3);
	}
	
	if(dateStr.length==2) {
		if (parseInt(dateStr)>50)
			dateStr="19"+dateStr;
		else
			dateStr="20"+dateStr;
	}
	dyear = parseInt(dateStr);
	//alert("day: "+dday+", month: "+dmonth+", year: "+dyear);
	if((dyear<1990)||(dyear>2090)||(dmonth<1)||(dmonth>12)||(dday<1)||
		(dday>((dmonth==2)?(((dyear % 4 == 0) && ((!(dyear % 100 == 0))||(dyear % 400 == 0)))?29:28):(((dmonth==1)||(dmonth==3)||(dmonth==5)||(dmonth==7)||(dmonth==8)||(dmonth==10)||(dmonth==12))?31:30))))
		return false;
		
	return true;
}   // checkDate

function validateNumber(numValue, mustBeInteger, mustBePositive) {
	var decimalPointFound = false;
	for(var i=0; i<numValue.length; i++) {
		var ch = numValue.charAt(i);
		
		if(ch=='0'||ch=='1'||ch=='2'||ch=='3'||ch=='4'||ch=='5'||ch=='6'||ch=='7'||ch=='8'||ch=='9') {
			// Valid character - do nothing
		} else if(ch=='-') {
			if(mustBePositive||i>0)
				return false;
		} else if(ch=='.') {
			if(mustBeInteger||decimalPointFound)
				return false;
			else
				decimalPointFound = true;
		} else
			// Invalid character
			return false;
	}	// for

	return true;
}	// validateNumber

function checkInteger(numValue) {
	return validateNumber(numValue, true, false);
}	// checkInteger

function checkNonNegativeInteger(numValue) {
	return validateNumber(numValue, true, true);
}	// checkNonNegativeInteger

function checkPositiveInteger(numValue) {
	if(! checkNonNegativeInteger(numValue))
		return false;
		
	if(parseInt(numValue)==0)
		return false;
	
	return true;	
}	// checkPositiveInteger

function checkFloat(numValue) {
	return validateNumber(numValue, false, false);
}	// checkFloat

function checkNonNegativeFloat(numValue) {
	return validateNumber(numValue, false, true);
}	// checkNonNegativeFloat

function checkPositiveFloat(numValue) {
	if(! checkNonNegativeFloat(numValue))
		return false;

	if(parseFloat(numValue)<0.001&&parseFloat(numValue)>-0.001)
		return false;
	
	return true;	
}	// checkPositiveFloat

function getDocHeight(doc) {
var docHt = 0, sh, oh;
if (doc.height) docHt = doc.height;
else if (doc.body) {
if (doc.body.scrollHeight) docHt = sh = doc.body.scrollHeight;
if (doc.body.offsetHeight) docHt = oh = doc.body.offsetHeight;
if (sh && oh) docHt = Math.max(sh, oh);
}
return docHt;
}

function getDocWidth(doc) 
{ 
	var docWd = 0, sh, oh; 
	if (doc.width) 
		docWd = doc.width; 
	else if (doc.body) 
	{ 
		if (doc.body.scrollWidth) 
			docWd = sh = doc.body.scrollWidth; 
		if (doc.body.offsetWidth) 
			docWd = oh = doc.body.offsetWidth; 
		if (sh && oh) 
			docWd = Math.max(sh, oh); 
	} 
	return docWd; 
} 
 

function setIframeHeight(iframeName) 
{ 
	var oldY = document.body.scrollTop;
	var iframeWin = window.frames[iframeName]; 
	var iframeEl = document.getElementById? document.getElementById(iframeName): document.all? document.all[iframeName]: null; 
	if ( iframeEl && iframeWin ) { 
		iframeEl.style.height = "auto"; 
		// helps resize (for some) if new doc shorter than previous 
		var docHt = getDocHeight(iframeWin.document); 
		var docWd = getDocWidth(iframeWin.document); 
		// need to add to height to be sure it will all show 
		if (docHt) 
			iframeEl.style.height = docHt + 1 + "px"; 
		if (docWd) 
			iframeEl.style.width = docWd + 1 + "px"; 
	} 
	if (oldY != null && oldY != 'undefined')
		document.body.scrollTop = oldY;
}

function resizeFrames(){
	var isFolderAllowed = arguments[0];
	if (isFolderAllowed == null || isFolderAllowed == 'true'){
		if (document.getElementById('scrollableTable') && document.body.offsetHeight > 195)
			document.getElementById('scrollableTable').style.height=document.body.offsetHeight - 185;
		if (document.getElementById('contentDiv') && document.body.offsetHeight > 145)
			document.getElementById('contentDiv').style.height=document.body.offsetHeight - 135;
		if (document.getElementById('content_Iframe') && document.body.offsetHeight > 145)
			document.getElementById('content_Iframe').height=document.body.offsetHeight - 135;			
		
	}else{
		setIframeHeight('content_Iframe');
	}
}

function resizeWindow()	{
	var isFolderAllowed = arguments[0];
	if (isFolderAllowed != null)
		resizeFrames(isFolderAllowed);
	else
		resizeFrames(false);	
}

/**
* Usage : var myObje = $('theIdOfTheElementYouWantToGet');
* Simple gives you the element. Avoids using document.getElementById();
*/
	var $;
	if (!$ && document.getElementById) {
		$ = function() {
			var elements = new Array();
			for (var i = 0; i < arguments.length; i++) {
				var element = arguments[i];
				if (typeof element == 'string') {
					element = document.getElementById(element);
				}
				if (arguments.length == 1) {
					return element;
				}
				elements.push(element);
			}
			return elements;
		}
	} else if (!$ && document.all) {
		$ = function() {
			var elements = new Array();
			for (var i = 0; i < arguments.length; i++) {
				var element = arguments[i];
				if (typeof element == 'string') {
					element = document.all[element];
				}
				if (arguments.length == 1) {
					return element;
				}
				elements.push(element);
			}
			return elements;
		}
	}