You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lubusy.js 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /**
  2. * Created by robin on 10/24/15.
  3. */
  4. angular.module('luticateUtils')
  5. .directive('luBusy', ['$compile', '$http', 'luticatePromises', '$templateCache', 'luticateDialogErrorHelper',
  6. function($compile, $http, luticatePromises, $templateCache, luticateDialogErrorHelper){
  7. return {
  8. restrict: 'A',
  9. scope: {
  10. luBusy: '&'
  11. },
  12. link: function($scope, element, attrs) {
  13. /*var position = element.css('position');
  14. if (position === 'static' || position === '' || typeof position === 'undefined'){
  15. element.css('position','relative');
  16. }*/
  17. $scope.isLoading = false;
  18. $scope.hasError = false;
  19. var options = {
  20. group: attrs.luBusy,
  21. templateLoader: "/luticate/lubusy-loader.html",
  22. templateError: "/luticate/lubusy-error.html"
  23. };
  24. $scope.update = function()
  25. {
  26. var o = $scope.luBusy();
  27. if (o != null) {
  28. if (typeof o == 'string') {
  29. options.group = o;
  30. }
  31. else {
  32. angular.extend(options, o);
  33. }
  34. }
  35. var loaders = luticatePromises.getLoadersGroup(options.group);
  36. $scope.isLoading = false;
  37. if (loaders != null) {
  38. $scope.isLoading = loaders.some(function (promise) {
  39. return promise.status == 0;
  40. });
  41. }
  42. var errors = luticatePromises.getErrorsGroup(options.group);
  43. $scope.hasError = false;
  44. if (errors != null) {
  45. $scope.hasError = errors.some(function (promise) {
  46. return promise.status == 2;
  47. });
  48. }
  49. };
  50. $scope.loaderSplashIsActive = function() {
  51. $scope.update();
  52. return $scope.isLoading && !$scope.hasError;
  53. };
  54. $scope.errorSplashIsActive = function() {
  55. $scope.update();
  56. return $scope.hasError;
  57. };
  58. $scope.showError = function()
  59. {
  60. var errors = luticatePromises.getErrorsGroup(options.group);
  61. var error = null;
  62. if (errors != null) {
  63. error = errors.find(function (promise) {
  64. return promise.status == 2;
  65. });
  66. }
  67. if (error != null) {
  68. luticateDialogErrorHelper.errorDialog(error.value);
  69. }
  70. };
  71. function addTemplate(template, ngShow) {
  72. $http.get(template, {cache: $templateCache}).success(function (indicatorTemplate) {
  73. var templateScope = $scope.$new();
  74. var backdrop = '<div class="lu-busy lu-busy-backdrop lu-busy-backdrop-animation ng-hide" ng-show="' + ngShow + '"></div>';
  75. var backdropElement = $compile(backdrop)(templateScope);
  76. element.append(backdropElement);
  77. var template = '<div class="lu-busy lu-busy-animation ng-hide" ng-show="' + ngShow + '">' + indicatorTemplate + '</div>';
  78. var templateElement = $compile(template)(templateScope);
  79. element.append(templateElement);
  80. }).error(function (data) {
  81. throw new Error('Template specified for luBusy (' + template + ') could not be loaded. ' + data);
  82. });
  83. }
  84. addTemplate(options.templateLoader, 'loaderSplashIsActive()');
  85. addTemplate(options.templateError, 'errorSplashIsActive()');
  86. }
  87. };
  88. }
  89. ]);
  90. angular.module('luticateUtils').run(['$templateCache', function($templateCache) {
  91. 'use strict';
  92. $templateCache.put('/luticate/lubusy-loader.html',
  93. "<div class=\"lu-busy-default-wrapper\" style=\"position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px;\">\n" +
  94. "\n" +
  95. " <div class=\"lu-busy-default-sign\">\n" +
  96. "\n" +
  97. " <div class=\"lu-busy-default-spinner\">\n" +
  98. " <div class=\"bar1\"></div>\n" +
  99. " <div class=\"bar2\"></div>\n" +
  100. " <div class=\"bar3\"></div>\n" +
  101. " <div class=\"bar4\"></div>\n" +
  102. " <div class=\"bar5\"></div>\n" +
  103. " <div class=\"bar6\"></div>\n" +
  104. " <div class=\"bar7\"></div>\n" +
  105. " <div class=\"bar8\"></div>\n" +
  106. " <div class=\"bar9\"></div>\n" +
  107. " <div class=\"bar10\"></div>\n" +
  108. " <div class=\"bar11\"></div>\n" +
  109. " <div class=\"bar12\"></div>\n" +
  110. " </div>\n" +
  111. "\n" +
  112. " <div class=\"lu-busy-default-text\">Please wait...</div>\n" +
  113. "\n" +
  114. " </div>\n" +
  115. "\n" +
  116. "</div>"
  117. );
  118. $templateCache.put('/luticate/lubusy-error.html',
  119. "<div class=\"lu-busy-default-wrapper\" style=\"position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px;\">\n" +
  120. "\n" +
  121. " <div class=\"lu-busy-default-sign\">\n" +
  122. "\n" +
  123. " <div class=\"lu-busy-default-error-text\"><a href=\"\" ng-click=\"showError()\">Error</a></div>\n" +
  124. "\n" +
  125. " </div>\n" +
  126. "\n" +
  127. "</div>"
  128. );
  129. }]);