-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathangular-block-ui.js
733 lines (540 loc) · 19.3 KB
/
angular-block-ui.js
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
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
/*!
angular-block-ui v0.2.1
(c) 2015 (null) McNull https://github.com/McNull/angular-block-ui
License: MIT
*/
(function(angular) {
var blkUI = angular.module('blockUI', []);
blkUI.config(["$provide", "$httpProvider", function ($provide, $httpProvider) {
$provide.decorator('$exceptionHandler', ['$delegate', '$injector',
function ($delegate, $injector) {
var blockUI, blockUIConfig;
return function (exception, cause) {
blockUIConfig = blockUIConfig || $injector.get('blockUIConfig');
if (blockUIConfig.resetOnException) {
try {
blockUI = blockUI || $injector.get('blockUI');
blockUI.instances.reset();
} catch (ex) {
console.log('$exceptionHandler', exception);
}
}
$delegate(exception, cause);
};
}
]);
$httpProvider.interceptors.push('blockUIHttpInterceptor');
}]);
blkUI.run(["$document", "blockUIConfig", "$templateCache", function ($document, blockUIConfig, $templateCache) {
if (blockUIConfig.autoInjectBodyBlock) {
$document.find('body').attr('block-ui', 'main');
}
if (blockUIConfig.template) {
// Swap the builtin template with the custom template.
// Create a magic cache key and place the template in the cache.
blockUIConfig.templateUrl = '$$block-ui-template$$';
$templateCache.put(blockUIConfig.templateUrl, blockUIConfig.template);
}
}]);
function moduleLoaded(name) {
try {
angular.module(name);
} catch(ex) {
return false;
}
return true;
}
blkUI.config(["$provide", function ($provide) {
$provide.decorator('$location', decorateLocation);
}]);
var decorateLocation = [
'$delegate', 'blockUI', 'blockUIConfig',
function ($delegate, blockUI, blockUIConfig) {
if (blockUIConfig.blockBrowserNavigation) {
blockUI.$_blockLocationChange = true;
var overrides = ['url', 'path', 'search', 'hash', 'state'];
function hook(f) {
var s = $delegate[f];
$delegate[f] = function () {
// console.log(f, Date.now(), arguments);
var result = s.apply($delegate, arguments);
// The call was a setter if the $location service is returned.
if (result === $delegate) {
// Mark the mainblock ui to allow the location change.
blockUI.$_blockLocationChange = false;
}
return result;
};
}
angular.forEach(overrides, hook);
}
return $delegate;
}];
// Called from block-ui-directive for the 'main' instance.
function blockNavigation($scope, mainBlockUI, blockUIConfig) {
if (blockUIConfig.blockBrowserNavigation) {
function registerLocationChange() {
$scope.$on('$locationChangeStart', function (event) {
// console.log('$locationChangeStart', mainBlockUI.$_blockLocationChange + ' ' + mainBlockUI.state().blockCount);
if (mainBlockUI.$_blockLocationChange && mainBlockUI.state().blockCount > 0) {
event.preventDefault();
}
});
$scope.$on('$locationChangeSuccess', function () {
mainBlockUI.$_blockLocationChange = blockUIConfig.blockBrowserNavigation;
// console.log('$locationChangeSuccess', mainBlockUI.$_blockLocationChange + ' ' + mainBlockUI.state().blockCount);
});
}
if (moduleLoaded('ngRoute')) {
// After the initial content has been loaded we'll spy on any location
// changes and discard them when needed.
var fn = $scope.$on('$viewContentLoaded', function () {
// Unhook the view loaded and hook a function that will prevent
// location changes while the block is active.
fn();
registerLocationChange();
});
} else {
registerLocationChange();
}
}
}
blkUI.directive('blockUiContainer', ["blockUIConfig", "blockUiContainerLinkFn", function (blockUIConfig, blockUiContainerLinkFn) {
return {
scope: true,
restrict: 'A',
templateUrl: blockUIConfig.templateUrl,
compile: function($element) {
return blockUiContainerLinkFn;
}
};
}]).factory('blockUiContainerLinkFn', ["blockUI", "blockUIUtils", function (blockUI, blockUIUtils) {
return function ($scope, $element, $attrs) {
var srvInstance = $element.inheritedData('block-ui');
if (!srvInstance) {
throw new Error('No parent block-ui service instance located.');
}
// Expose the state on the scope
$scope.state = srvInstance.state();
// $scope.$watch('state.blocking', function(value) {
// $element.toggleClass('block-ui-visible', !!value);
// });
//
// $scope.$watch('state.blockCount > 0', function(value) {
// $element.toggleClass('block-ui-active', !!value);
// });
};
}]);
blkUI.directive('blockUi', ["blockUiCompileFn", function (blockUiCompileFn) {
return {
scope: true,
restrict: 'A',
compile: blockUiCompileFn
};
}]).factory('blockUiCompileFn', ["blockUiPreLinkFn", function (blockUiPreLinkFn) {
return function ($element, $attrs) {
// Class should be added here to prevent an animation delay error.
$element.append('<div block-ui-container class="block-ui-container"></div>');
return {
pre: blockUiPreLinkFn
};
};
}]).factory('blockUiPreLinkFn', ["blockUI", "blockUIUtils", "blockUIConfig", function (blockUI, blockUIUtils, blockUIConfig) {
return function ($scope, $element, $attrs) {
// If the element does not have the class "block-ui" set, we set the
// default css classes from the config.
if (!$element.hasClass('block-ui')) {
$element.addClass(blockUIConfig.cssClass);
}
// Expose the blockUiMessageClass attribute value on the scope
$attrs.$observe('blockUiMessageClass', function (value) {
$scope.$_blockUiMessageClass = value;
});
// Create the blockUI instance
// Prefix underscore to prevent integers:
// https://github.com/McNull/angular-block-ui/pull/8
var instanceId = $attrs.blockUi || '_' + $scope.$id;
var srvInstance = blockUI.instances.get(instanceId);
// If this is the main (topmost) block element we'll also need to block any
// location changes while the block is active.
if (instanceId === 'main') {
blockNavigation($scope, srvInstance, blockUIConfig);
} else {
// Locate the parent blockUI instance
var parentInstance = $element.inheritedData('block-ui');
if (parentInstance) {
// TODO: assert if parent is already set to something else
srvInstance._parent = parentInstance;
}
}
// Ensure the instance is released when the scope is destroyed
$scope.$on('$destroy', function () {
srvInstance.release();
});
// Increase the reference count
srvInstance.addRef();
// Expose the state on the scope
$scope.$_blockUiState = srvInstance.state();
$scope.$watch('$_blockUiState.blocking', function (value) {
// Set the aria-busy attribute if needed
$element.attr('aria-busy', !!value);
$element.toggleClass('block-ui-visible', !!value);
});
$scope.$watch('$_blockUiState.blockCount > 0', function (value) {
$element.toggleClass('block-ui-active', !!value);
});
// If a pattern is provided assign it to the state
var pattern = $attrs.blockUiPattern;
if (pattern) {
var regExp = blockUIUtils.buildRegExp(pattern);
srvInstance.pattern(regExp);
}
// Store a reference to the service instance on the element
$element.data('block-ui', srvInstance);
};
}]);
//.factory('blockUiPostLinkFn', function(blockUIUtils) {
//
// return function($scope, $element, $attrs) {
//
// var $message;
//
// $attrs.$observe('blockUiMessageClass', function(value) {
//
// $message = $message || blockUIUtils.findElement($element, function($e) {
// return $e.hasClass('block-ui-message');
// });
//
// $message.addClass(value);
//
// });
// };
//
//});
blkUI.constant('blockUIConfig', {
templateUrl: 'angular-block-ui/angular-block-ui.ng.html',
delay: 250,
message: "Loading ...",
autoBlock: true,
resetOnException: true,
requestFilter: angular.noop,
autoInjectBodyBlock: true,
cssClass: 'block-ui block-ui-anim-fade',
blockBrowserNavigation: false
});
blkUI.factory('blockUIHttpInterceptor', ["$q", "$injector", "blockUIConfig", "$templateCache", function($q, $injector, blockUIConfig, $templateCache) {
var blockUI;
function injectBlockUI() {
blockUI = blockUI || $injector.get('blockUI');
}
function stopBlockUI(config) {
if (blockUIConfig.autoBlock && (config && !config.$_noBlock && config.$_blocks)) {
injectBlockUI();
config.$_blocks.stop();
}
}
function error(rejection) {
try {
stopBlockUI(rejection.config);
} catch(ex) {
console.log('httpRequestError', ex);
}
return $q.reject(rejection);
}
return {
request: function(config) {
// Only block when autoBlock is enabled ...
// ... and the request doesn't match a cached template.
if (blockUIConfig.autoBlock &&
!(config.method == 'GET' && $templateCache.get(config.url))) {
// Don't block excluded requests
var result = blockUIConfig.requestFilter(config);
if (result === false) {
// Tag the config so we don't unblock this request
config.$_noBlock = true;
} else {
injectBlockUI();
config.$_blocks = blockUI.instances.locate(config);
config.$_blocks.start(result);
}
}
return config;
},
requestError: error,
response: function(response) {
// If the connection to the website goes down the response interceptor gets and error with "cannot read property config of null".
// https://github.com/McNull/angular-block-ui/issues/53
if(response) {
stopBlockUI(response.config);
}
return response;
},
responseError: error
};
}]);
blkUI.factory('blockUI', ["blockUIConfig", "$timeout", "blockUIUtils", "$document", function(blockUIConfig, $timeout, blockUIUtils, $document) {
var $body = $document.find('body');
// These properties are not allowed to be specified in the start method.
var reservedStateProperties = ['id', 'blockCount', 'blocking'];
function BlockUI(id) {
var self = this;
var state = {
id: id,
blockCount: 0,
message: blockUIConfig.message,
blocking: false
}, startPromise, doneCallbacks = [];
this._id = id;
this._refs = 0;
this.start = function(messageOrOptions) {
messageOrOptions = messageOrOptions || {};
if(angular.isString(messageOrOptions)) {
messageOrOptions = {
message: messageOrOptions
};
} else {
angular.forEach(reservedStateProperties, function(x) {
if(messageOrOptions[x]) {
throw new Error('The property ' + x + ' is reserved for the block state.');
}
});
}
angular.extend(state, messageOrOptions);
if(state.blockCount > 0) {
state.message = messageOrOptions.message || state.message || blockUIConfig.message;
} else {
state.message = messageOrOptions.message || blockUIConfig.message;
}
// if(state.blockCount > 0) {
// messageOrOptions = messageOrOptions || state.message || blockUIConfig.message;
// } else {
// messageOrOptions = messageOrOptions || blockUIConfig.message;
// }
// state.message = messageOrOptions;
state.blockCount++;
// Check if the focused element is part of the block scope
var $ae = angular.element($document[0].activeElement);
if($ae.length && blockUIUtils.isElementInBlockScope($ae, self)) {
// Let the active element lose focus and store a reference
// to restore focus when we're done (reset)
self._restoreFocus = $ae[0];
// https://github.com/McNull/angular-block-ui/issues/13
// http://stackoverflow.com/questions/22698058/apply-already-in-progress-error-when-using-typeahead-plugin-found-to-be-relate
// Queue the blur after any ng-blur expression.
$timeout(function() {
// Ensure we still need to blur
// Don't restore if active element is body, since this causes IE to switch windows (see http://tjvantoll.com/2013/08/30/bugs-with-document-activeelement-in-internet-explorer/)
if (self._restoreFocus && self._restoreFocus !== $body[0]) {
self._restoreFocus.blur();
}
});
}
if (!startPromise && blockUIConfig.delay !== 0) {
startPromise = $timeout(block, blockUIConfig.delay);
} else if (blockUIConfig.delay === 0) {
block();
}
function block () {
startPromise = null;
state.blocking = true;
}
};
this._cancelStartTimeout = function() {
if (startPromise) {
$timeout.cancel(startPromise);
startPromise = null;
}
};
this.stop = function() {
state.blockCount = Math.max(0, --state.blockCount);
if (state.blockCount === 0) {
self.reset(true);
}
};
this.isBlocking = function () {
return state.blocking;
};
this.message = function(value) {
state.message = value;
};
this.pattern = function(regexp) {
if (regexp !== undefined) {
self._pattern = regexp;
}
return self._pattern;
};
this.reset = function(executeCallbacks) {
self._cancelStartTimeout();
state.blockCount = 0;
state.blocking = false;
// Restore the focus to the element that was active
// before the block start, but not if the user has
// focused something else while the block was active.
if(self._restoreFocus &&
(!$document[0].activeElement || $document[0].activeElement === $body[0])) {
//IE8 will throw if element for setting focus is invisible
try {
self._restoreFocus.focus();
} catch(e1) {
(function () {
var elementToFocus = self._restoreFocus;
$timeout(function() {
if(elementToFocus) {
try {
elementToFocus.focus();
} catch(e2) { }
}
},100);
})();
}
self._restoreFocus = null;
}
try {
if (executeCallbacks) {
angular.forEach(doneCallbacks, function(cb) {
cb();
});
}
} finally {
doneCallbacks.length = 0;
}
};
this.done = function(fn) {
doneCallbacks.push(fn);
};
this.state = function() {
return state;
};
this.addRef = function() {
self._refs += 1;
};
this.release = function() {
if(--self._refs <= 0) {
mainBlock.instances._destroy(self);
}
};
}
var instances = [];
instances.get = function(id) {
if(!isNaN(id)) {
throw new Error('BlockUI id cannot be a number');
}
var instance = instances[id];
if(!instance) {
// TODO: ensure no array instance trashing [xxx] -- current workaround: '_' + $scope.$id
instance = instances[id] = new BlockUI(id);
instances.push(instance);
}
return instance;
};
instances._destroy = function(idOrInstance) {
if (angular.isString(idOrInstance)) {
idOrInstance = instances[idOrInstance];
}
if (idOrInstance) {
idOrInstance.reset();
var i = blockUIUtils.indexOf(instances, idOrInstance);
instances.splice(i, 1);
delete instances[idOrInstance.state().id];
}
};
instances.locate = function(request) {
var result = [];
// Add function wrappers that will be executed on every item
// in the array.
blockUIUtils.forEachFnHook(result, 'start');
blockUIUtils.forEachFnHook(result, 'stop');
var i = instances.length;
while(i--) {
var instance = instances[i];
var pattern = instance._pattern;
if(pattern && pattern.test(request.url)) {
result.push(instance);
}
}
if(result.length === 0) {
result.push(mainBlock);
}
return result;
};
// Propagate the reset to all instances
blockUIUtils.forEachFnHook(instances, 'reset');
var mainBlock = instances.get('main');
mainBlock.addRef();
mainBlock.instances = instances;
return mainBlock;
}]);
blkUI.factory('blockUIUtils', function() {
var $ = angular.element;
var utils = {
buildRegExp: function(pattern) {
var match = pattern.match(/^\/(.*)\/([gim]*)$/), regExp;
if(match) {
regExp = new RegExp(match[1], match[2]);
} else {
throw Error('Incorrect regular expression format: ' + pattern);
}
return regExp;
},
forEachFn: function(arr, fnName, args) {
var i = arr.length;
while(i--) {
var t = arr[i];
t[fnName].apply(t, args);
}
},
forEachFnHook: function(arr, fnName) {
arr[fnName] = function() {
utils.forEachFn(this, fnName, arguments);
}
},
isElementInBlockScope: function($element, blockScope) {
var c = $element.inheritedData('block-ui');
while(c) {
if(c === blockScope) {
return true;
}
c = c._parent;
}
return false;
},
findElement: function ($element, predicateFn, traverse) {
var ret = null;
if (predicateFn($element)) {
ret = $element;
} else {
var $elements;
if (traverse) {
$elements = $element.parent();
} else {
$elements = $element.children();
}
var i = $elements.length;
while (!ret && i--) {
ret = utils.findElement($($elements[i]), predicateFn, traverse);
}
}
return ret;
},
indexOf: function(arr, obj, start) {
// if(Array.prototype.indexOf) {
// return arr.indexOf(obj, start);
// }
for (var i = (start || 0), j = arr.length; i < j; i++) {
if (arr[i] === obj) {
return i;
}
}
return -1;
}
};
return utils;
});
// Automatically generated.
// This file is already embedded in your main javascript output, there's no need to include this file
// manually in the index.html. This file is only here for your debugging pleasures.
angular.module('blockUI').run(['$templateCache', function($templateCache){
$templateCache.put('angular-block-ui/angular-block-ui.ng.html', '<div class=\"block-ui-overlay\"></div><div class=\"block-ui-message-container\" aria-live=\"assertive\" aria-atomic=\"true\"><div class=\"block-ui-message\" ng-class=\"$_blockUiMessageClass\">{{ state.message }}</div></div>');
}]);
})(angular);
//# sourceMappingURL=angular-block-ui.js.map