-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBase.js
More file actions
561 lines (529 loc) · 14.4 KB
/
Copy pathBase.js
File metadata and controls
561 lines (529 loc) · 14.4 KB
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
/**
* Template
* @constructor
*/
function Template() {
this.separators = {
"left": '{{',
"right": '}}'
};
this.htmlSnippets = {};
}
/**
* example: mm_inner_HTML = variant.template.set('myHTMLPart', mm_inner_HTML);
* @param snippetName
* @param text
* @returns {string}
*/
Template.prototype.setHTML = function (snippetName, text) {
this.htmlSnippets[snippetName] = text;
return '';
};
/**
* example inside variant class: this.template.get('myHTMLPart', {"variable": 'currentValue', ...});
* @param snippetName
* @param data
* @returns {*|string}
*/
Template.prototype.getHTML = function (snippetName, data) {
var name, regExp, text = this.htmlSnippets[snippetName] || '';
if (data && typeof data === 'object') {
for (name in data) {
if (data.hasOwnProperty(name)) {
regExp = new RegExp(this.separators.left + name + this.separators.right, 'g');
text = text.replace(regExp, data[name]);
}
}
}
return text;
};
/**
* part of async lib https://github.com/caolan/async
* @constructor
*/
function Async() {}
/**
* Run an array of functions in parallel
* @param tasks
* @param callback
*/
Async.prototype.parallel = function (tasks, callback) {
var i = 0, len = tasks.length,
executed = 0,
errors = [],
done = function (err) {
if (err) {
errors.push(err);
}
return ++executed === len ? callback(errors.length ? errors : null) : null;
};
for (i; i < len; i += 1) {
try {
tasks[i](done);
} catch (exc) {
done(exc);
}
}
};
/**
* Runs an array of functions in series
* @param tasks
* @param callback
*/
Async.prototype.waterfall = function (tasks, callback) {
var executed = 0,
done = function () {
var task = tasks[executed] || null;
executed += 1;
try {
return task ? task(done) : callback(null);
} catch (exc) {
callback(exc);
}
return null;
};
done();
};
/**
* part of underscore lib http://underscorejs.org/
* @constructor
*/
function Underscore() {
this.nativeMap = Array.prototype.map;
this.nativeForEach = Array.prototype.forEach;
this.nativeHasOwnProperty = Object.prototype.hasOwnProperty;
this.breaker = {};
}
/**
* Return the results of applying the iterator to each element.
* Delegates to **ECMAScript 5**'s native `map` if available.
* @param obj
* @param iterator
* @param context
* @returns {*}
*/
Underscore.prototype.map = function (obj, iterator, context) {
var results = [];
if (!obj) {
return results;
}
if (this.nativeMap && obj.map === this.nativeMap) {
return obj.map(iterator, context);
}
this.each(obj, function (value, index, list) {
results[results.length] = iterator.call(context, value, index, list);
});
return results;
};
/**
* The cornerstone, an `each` implementation, aka `forEach`.
* Handles objects with the built-in `forEach`, arrays, and raw objects.
* Delegates to **ECMAScript 5**'s native `forEach` if available.
* @param obj
* @param iterator
* @param context
*/
Underscore.prototype.each = function (obj, iterator, context) {
if (!obj) {return; }
if (this.nativeForEach && obj.forEach === this.nativeForEach) {
obj.forEach(iterator, context);
} else if (obj.length === +obj.length) {
for (var i = 0, l = obj.length; i < l; i++) {
if (iterator.call(context, obj[i], i, obj) === this.breaker) {return;}
}
} else {
for (var key in obj) {
if (this.has(obj, key)) {
if (iterator.call(context, obj[key], key, obj) === this.breaker) {return;}
}
}
}
};
/**
* Shortcut function for checking if an object has a given property directly on itself (in other words, not on a prototype).
* @param obj
* @param key
* @returns boolean
*/
Underscore.prototype.has = function(obj, key) {
return this.nativeHasOwnProperty ? this.nativeHasOwnProperty.call(obj, key) : true;
};
/**
* Document - helpers with document work
* @constructor
*/
function Document() {
this.recursion = {
"count": 0,
"limit": 2500,
"interval": 2
};
}
/**
* execute callback when all elements in selector appeared on the page
* @param selectors - array || string || on doc load handler
* @param callback
* TODO: replace mmcore.AddDocLoadHandler with native DomContentLoaded event
*/
Document.prototype.ready = function (selectors, callback) {
if (typeof selectors === 'function') {
mmcore.AddDocLoadHandler(selectors);
return;
}
var elementSelectors = typeof selectors === 'string' ? [selectors] : selectors,
elementsLen = elementSelectors.length,
arrivedElements = 0,
elements = {},
isArrived = true,
done = function (element) {
elements[elementSelectors[arrivedElements]] = element;
isArrived = element ? isArrived : false;
return ++arrivedElements === elementsLen ? callback(isArrived, elements) : null;
};
for (var i = 0; i < elementsLen; i += 1) {
this.waitForElementArrived(elementSelectors[i], done);
}
};
/**
* execute callback when element in selector appeared on the page
* @param selector - string
* @param callback
* TODO: implementation with out jQuery
*/
Document.prototype.waitForElementArrived = function (selector, callback) {
var recursion = {}, field;
for (field in this.recursion) {
if (this.recursion.hasOwnProperty(field)) {
recursion[field] = this.recursion[field];
}
}
return function recExec() {
try {
var $element = $(selector);
if (typeof $element === 'object' && $element.length > 0) {
callback($element);
} else if (recursion.count >= recursion.limit) {
callback(null);
} else {
recursion.count += 1;
setTimeout(recExec, recursion.interval);
}
} catch (exception) {
mmcore.EH(new Error(selector));
mmcore.EH(exception);
}
}();
};
/**
* execute callback when window['objectName'] initialize on the page
* @param objectName - string
* @param callback
* TODO: add sub objects support ex objectName = 'com.maxymiser.core.document' now only com can be defined
*/
Document.prototype.onDefined = function (objectName, callback) {
var recursion = {}, field;
for (field in this.recursion) {
if (this.recursion.hasOwnProperty(field)) {
recursion[field] = this.recursion[field];
}
}
return function recExec() {
var object = window[objectName];
if (typeof object !== 'undefined') {
callback(object);
} else if (recursion.count >= recursion.limit) {
callback(object);
} else {
recursion.count += 1;
setTimeout(recExec, recursion.interval);
}
}();
};
/**
* execute callback when one of elements in selector appeared on the page
* @param selectors - array || string
* @param callback
* TODO: implementation with out jQuery
*/
Document.prototype.oneOfElementsArrived = function (selectors, callback) {
var i = 0,
elementsLen = selectors.length,
arrivedElements = 0,
isDone = false,
done = function (element) {
arrivedElements += 1;
if (!isDone && (element || arrivedElements === elementsLen)) {
isDone = true;
callback(element);
}
};
for (; i < elementsLen; i += 1) {
this.waitForElementArrived(selectors[i], done);
}
};
/**
* hide once element appeared on the page
* @param selector
* TODO: implementation with out jQuery
*/
Document.prototype.hideElement = function (selector) {
this.waitForElementArrived(selector, function (element) {
return element ? element.hide() : null;
});
};
/**
* show once element appeared on the page
* @param selector
* TODO: implementation with out jQuery
*/
Document.prototype.showElement = function (selector) {
this.waitForElementArrived(selector, function (element) {
return element ? setTimeout(function () {
element.show();
}, 100) : null;
});
};
/**
* Events - event handler wrapper
* @constructor
* TODO: not tested yet
*/
function Events() {
this.element = document;
this.eventMethods = {};
this.eventArguments = {};
this.eventHandlers = {};
}
Events.prototype.add = function (type, handler, context) {
var self = this;
this.eventMethods[type] = this.eventMethods[type] || [];
this.eventMethods[type].push(handler);
this.eventHandlers[type] = function () {
var i, len = self.eventMethods[type].length;
for (i = 0; i < len; i += 1) {
self.eventMethods[type][i].apply(context || window, self.eventArguments[type] || []);
}
};
};
/**
* remove event listener
* @param type
* @param handler
*/
Events.prototype.unbind = function (type, handler) {
var element = this.element;
if (element.removeEventListener){
element.removeEventListener(type, handler || this.eventHandlers[type], false);
} else {
element.detachEvent('on' + type, handler || this.eventHandlers[type]);
}
this.eventMethods = {};
this.eventArguments = {};
this.eventHandlers = {};
};
/**
* subscribe on event type
* @param type
* @param handler
* @param context
*/
Events.prototype.on = function (type, handler, context) {
var element = this.element;
this.unbind(type, handler);
this.add(type, handler, context);
if (element.addEventListener) {
try {
element.addEventListener(type, this.eventHandlers[type], false);
} catch (e) {alert(e)}
} else {
element.attachEvent('on' + type, this.eventHandlers[type]);
}
};
/**
* trigger event
* @param type
* @param args []
*/
Events.prototype.fire = function (type, args) {
var event, element = this.element;
this.eventArguments[type] = args || [];
if (element.createEvent) {
event = element.createEvent('HTMLEvents');
event.initEvent(type, true, true);
element.dispatchEvent(event);
} else if (element.createEventObject) {
event = element.createEventObject();
//TODO: fix ie8 bug with element.fireEvent "Error: Invalid argument."
element.fireEvent('on' + type, event);
} else {
throw new Error('can not create event ' + type);
}
};
/**
* Core - mmcore functionality redefinition
* @constructor
* TODO: add popular mmcore methods AtachStyle
*/
function Core() {}
/**
* track action immediate
* @param action string || Object {
* name: string * required,
* value: number default 1
* attribute: string default '',
* pageId: string default mmevents
* }
* @param callback - CG request callback
*/
Core.prototype.trackActionImmediate = function (action, callback) {
var name = typeof action === 'object' ? action.name : action,
value = typeof action === 'object' ? (action.value || 1) : 1,
attr = typeof action === 'object' ? (action.attr || action.attribute || '') : '',
pageId = typeof action === 'object' ? (action.pageId || 'mmevents') : 'mmevents';
mmcore._async = true;
mmcore.SetAction(name, value, attr);
mmcore.SetPageID(pageId);
mmcore.CGRequest(callback);
};
/**
* track action deferred
* @param action string || {
* name: string * required,
* value: number default 1
* attribute: string default '',
* }
*/
Core.prototype.trackActionDeferred = function (action) {
var name = typeof action === 'object' ? action.name : action,
value = typeof action === 'object' ? (action.value || 1) : 1,
attr = typeof action === 'object' ? (action.attr || action.attribute || '') : '';
mmcore.$Action(name, value, attr);
};
/**
* Checker
* @param test Object {
* name: string company name,
* hide: string css selector,
* pageID: string
* mmChecker: function
* }
*/
Core.prototype.checker = function (test) {
var _name = test.name.replace(/\s/g, "_"),
n = 100,
showFn = function () {
var el = document.getElementById(_name);
el.parentNode.removeChild(el);
};
(function fnWait() {
if (test.mmChecker()) {
mmcore.SetPageID(test.pageID);
mmcore.HideMaxyboxes = function () {};
mmcore.CGRequest(function () {
mmcore.AddDocLoadHandler(showFn);
});
} else if (mmcore._docEnd || !n--) {
showFn();
} else {
mmcore._async = true;
setTimeout(fnWait, 50);
}
}());
document.write("<style id='" + _name + "' type='text/css'>" + test.hide + "{position:relative; left:-10000px}</style>")
};
/**
* Renderer
* @param test Object {
* is_def: function,
* mm_path: string,
* name: string company name,
* hide: string css selectors
* }
*/
Core.prototype.renderer = function (test) {
var localTC,
gi = mmcore.GenInfo[test.name],
rmb = [],
_name = test.name.replace(/\s/g, "_"),
n = 100;
try {
localTC = tc;
} catch (e) {
localTC = {};
}
for (var mb in localTC) {
if (!/undefined|Default/.test(gi[mb.toLowerCase()])) {
rmb.push(mb);
}
}
if (rmb.length) {
if (test.displayNone) {
document.write("<style id='" + _name + "' type='text/css'>" + test.hide + "{display: none !important;}</style>");
} else {
document.write("<style id='" + _name + "' type='text/css'>" + test.hide + "{position: relative !important; left:-10000px !important;}</style>");
}
var mmInt = setInterval(function() {
if (typeof test.is_def === 'function' && test.is_def() || mmcore._docEnd || !n--) {
var el = document.getElementById(_name);
mmcore.RenderMaxyboxes(rmb);
if (el) {
el.parentNode.removeChild(el);
}
clearInterval(mmInt);
}
}, 50);
}
};
/**
* TestBase - parent class for test classes, snippets container
* @constructor
*/
function TestBase() {
window.onerror = function (exception) {
mmcore.EH(exception);
return true;
};
}
TestBase.prototype.template = new Template();
TestBase.prototype.async = new Async();
TestBase.prototype._ = new Underscore();
TestBase.prototype.document = new Document();
TestBase.prototype.events = new Events();
TestBase.prototype.core = new Core();
/**
* Some popular methods realisation
* @constructor
*/
/**
* @param context
* @param fn
* @returns {Function}
*/
TestBase.prototype.bind = function (context, fn) {
return function () {
return fn.apply(context, arguments);
};
};
/**
* @param str
* @returns {XML}
*/
TestBase.prototype.trim = function (str) {
return typeof str === 'string' ? str.replace(/^\s+/, '').replace(/\s+$/, '') : '';
};
/**
*
* @param context
* @param methodName
* @param decorator
*/
TestBase.prototype.decorate = function (context, methodName, decorator) {
if (!context || typeof context[methodName] !== 'function' || typeof decorator !== 'function') {
return;
}
var origin = context[methodName];
context[methodName] = function () {
decorator.apply(context, arguments);
return origin.apply(context, arguments);
};
};