crmUtil - Alphabetize services
authorTim Otten <totten@civicrm.org>
Sat, 3 Jan 2015 17:41:04 +0000 (09:41 -0800)
committerTim Otten <totten@civicrm.org>
Sat, 3 Jan 2015 17:51:22 +0000 (09:51 -0800)
js/angular-crm-util.js

index 1d73ef7bbe2b167304ee9f21c825de51fb8901da..b67659cf4612dcf3bbbe218073c56ee7d37b7438 100644 (file)
@@ -2,12 +2,35 @@
 (function (angular, $, _) {
   angular.module('crmUtil', []);
 
-  // Adapter for CRM.status which supports Angular promises (instead of jQuery promises)
-  // example: crmStatus('Saving', crmApi(...)).then(function(result){...})
-  angular.module('crmUtil').factory('crmStatus', function($q){
-    return function(options, aPromise){
-      return CRM.toAPromise($q, CRM.status(options, CRM.toJqPromise(aPromise)));
+  // example: scope.$watch('foo', crmLog.wrap(function(newValue, oldValue){ ... }));
+  angular.module('crmUtil').factory('crmLog', function(){
+    var level = 0;
+    var write = console.log;
+    function indent() {
+      var s = '>';
+      for (var i = 0; i < level; i++) s = s + '  ';
+      return s;
+    }
+    var crmLog = {
+      log: function(msg, vars) {
+        write(indent() + msg, vars);
+      },
+      wrap: function(label, f) {
+        return function(){
+          level++;
+          crmLog.log(label + ": start", arguments);
+          var r;
+          try {
+            r = f.apply(this, arguments);
+          } finally {
+            crmLog.log(label + ": end");
+            level--;
+          }
+          return r;
+        }
+      }
     };
+    return crmLog;
   });
 
   angular.module('crmUtil').factory('crmNow', function($q){
     };
   });
 
+  // Adapter for CRM.status which supports Angular promises (instead of jQuery promises)
+  // example: crmStatus('Saving', crmApi(...)).then(function(result){...})
+  angular.module('crmUtil').factory('crmStatus', function($q){
+    return function(options, aPromise){
+      return CRM.toAPromise($q, CRM.status(options, CRM.toJqPromise(aPromise)));
+    };
+  });
+
   // crmWatcher allows one to setup event listeners and temporarily suspend
   // them en masse.
   //
     }
   });
 
-  // example: scope.$watch('foo', crmLog.wrap(function(newValue, oldValue){ ... }));
-  angular.module('crmUtil').factory('crmLog', function(){
-    var level = 0;
-    var write = console.log;
-    function indent() {
-      var s = '>';
-      for (var i = 0; i < level; i++) s = s + '  ';
-      return s;
-    }
-    var crmLog = {
-      log: function(msg, vars) {
-        write(indent() + msg, vars);
-      },
-      wrap: function(label, f) {
-        return function(){
-          level++;
-          crmLog.log(label + ": start", arguments);
-          var r;
-          try {
-            r = f.apply(this, arguments);
-          } finally {
-            crmLog.log(label + ": end");
-            level--;
-          }
-          return r;
-        }
-      }
-    };
-    return crmLog;
-  });
-
 })(angular, CRM.$, CRM._);