From c048f0d8e8385e96e9fff0b4ff733cecfa726d93 Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Mon, 8 Nov 2010 20:34:18 -0800 Subject: Added formatter documentation. --- src/Angular.js | 132 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/formatters.js | 118 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 250 insertions(+) (limited to 'src') diff --git a/src/Angular.js b/src/Angular.js index 73f2841a..9934b401 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -92,6 +92,65 @@ var _undefined = undefined, angularTextMarkup = extensionMap(angular, 'markup'), angularAttrMarkup = extensionMap(angular, 'attrMarkup'), angularDirective = extensionMap(angular, 'directive'), + + /** + * @ngdoc overview + * @name angular.widget + * @namespace Namespace for all widgets. + * @description + * # Overview + * Widgets allow you to create DOM elements that the browser doesn't + * already understand. You create the widget in your namespace and + * assign it behavior. You can only bind one widget per DOM element + * (unlike directives, in which you can use any number per DOM + * element). Widgets are expected to manipulate the DOM tree by + * adding new elements whereas directives are expected to only modify + * element properties. + * + * Widgets come in two flavors: element and attribute. + * + * # Element Widget + * Let's say we would like to create a new element type in the + * namespace `my` that can watch an expression and alert() the user + * with each new value. + * + *
+     * <my:watch exp="name"/>
+     * 
+ * + * You can implement `my:watch` like this: + *
+     * angular.widget('my:watch', function(compileElement) {
+     *   var compiler = this;
+     *   var exp = compileElement.attr('exp');
+     *   return function(linkElement) {
+     *     var currentScope = this;
+     *     currentScope.$watch(exp, function(value){
+     *       alert(value);
+     *     }};
+     *   };
+     * });
+     * 
+ * + * # Attribute Widget + * Let's implement the same widget, but this time as an attribute + * that can be added to any existing DOM element. + *
+     * <div my-watch="name">text</div>
+     * 
+ * You can implement `my:watch` attribute like this: + *
+     * angular.widget('@my:watch', function(expression, compileElement) {
+     *   var compiler = this;
+     *   return function(linkElement) {
+     *     var currentScope = this;
+     *     currentScope.$watch(expression, function(value){
+     *       alert(value);
+     *     });
+     *   };
+     * });
+     * 
+ */ angularWidget = extensionMap(angular, 'widget', lowercase), /** @@ -224,6 +283,79 @@ var _undefined = undefined, */ angularFilter = extensionMap(angular, 'filter'), + /** + * @ngdoc overview + * @name angular.formatter + * @namespace Namespace for all formats. + * @description + * # Overview + * The formatters are responsible for translating user readable text in an input widget to a + * data model stored in an application. + * + * # Writting your own Fromatter + * Writing your own formatter is easy. Just register a pair of JavaScript functions with + * `angular.formatter`. One function for parsing user input text to the stored form, + * and one for formatting the stored data to user-visible text. + * + * Here is an example of a "reverse" formatter: The data is stored in uppercase and in + * reverse, while it is displayed in lower case and non-reversed. User edits are + * automatically parsed into the internal form and data changes are automatically + * formatted to the viewed form. + * + *
+     * function reverse(text) {
+     *   var reversed = [];
+     *   for (var i = 0; i < text.length; i++) {
+     *     reversed.unshift(text.charAt(i));
+     *   }
+     *   return reversed.join('');
+     * }
+     * 
+     * angular.formatter('reverse', {
+     *   parse: function(value){
+     *     return reverse(value||'').toUpperCase();
+     *   },
+     *   format: function(value){
+     *     return reverse(value||'').toLowerCase();
+     *   }
+     * });
+     * 
+ * + * @example + * + * Formatted:
+ * Stored:
+ *
{{data}}
+ * + * @scenario + * it('should store reverse', function(){ + * expect(element('.example :input:first').val()).toEqual(''); + * expect(element('.example :input:last').val()).toEqual('>/RALUGNA<'); + * + * this.addFutureAction('change to XYZ', function($window, $document, done){ + * $document.elements('.example :input:last').val('XYZ').trigger('change'); + * done(); + * }); + * expect(element('.example :input:first').val()).toEqual('zyx'); + * }); + */ angularFormatter = extensionMap(angular, 'formatter'), angularService = extensionMap(angular, 'service'), angularCallbacks = extensionMap(angular, 'callbacks'), diff --git a/src/formatters.js b/src/formatters.js index ba57a3ed..5c602cc8 100644 --- a/src/formatters.js +++ b/src/formatters.js @@ -6,8 +6,76 @@ function toString(obj) { var NUMBER = /^\s*[-+]?\d*(\.\d*)?\s*$/; angularFormatter.noop = formatter(identity, identity); + +/** + * @ngdoc formatter + * @name angular.formatter.json + * + * @description + * Formats the user input as JSON text. + * + * @returns {string} A JSON string representation of the model. + * + * @example + *
+ * + *
data={{data}}
+ *
+ * + * @scenario + * it('should format json', function(){ + * expect(binding('data')).toEqual('data={\n \"name\":\"misko\",\n \"project\":\"angular\"}'); + * input('data').enter('{}'); + * expect(binding('data')).toEqual('data={\n }'); + * }); + */ angularFormatter.json = formatter(toJson, fromJson); + +/** + * @ngdoc formatter + * @name angular.formatter.boolean + * + * @description + * Use boolean formatter if you wish to store the data as boolean. + * + * @returns Convert to `true` unless user enters (blank), `f`, `false`, `0`, `no`, `[]`. + * + * @example + * Enter truthy text: + * + * + *
value={{value}}
+ * + * @scenario + * it('should format boolean', function(){ + * expect(binding('value')).toEqual('value=false'); + * input('value').enter('truthy'); + * expect(binding('value')).toEqual('value=true'); + * }); + */ angularFormatter['boolean'] = formatter(toString, toBoolean); + +/** + * @ngdoc formatter + * @name angular.formatter.number + * + * @description + * Use number formatter if you wish to convert the user entered string to a number. + * + * @returns parse string to number. + * + * @example + * Enter valid number: + * + *
value={{value}}
+ * + * @scenario + * it('should format numbers', function(){ + * expect(binding('value')).toEqual('value=1234'); + * input('value').enter('5678'); + * expect(binding('value')).toEqual('value=5678'); + * }); + */ angularFormatter.number = formatter(toString, function(obj){ if (obj == _null || NUMBER.exec(obj)) { return obj===_null || obj === '' ? _null : 1*obj; @@ -16,6 +84,31 @@ angularFormatter.number = formatter(toString, function(obj){ } }); +/** + * @ngdoc formatter + * @name angular.formatter.list + * + * @description + * Use number formatter if you wish to convert the user entered string to a number. + * + * @returns parse string to number. + * + * @example + * Enter a list of items: + * + * + *
value={{value}}
+ * + * @scenario + * it('should format lists', function(){ + * expect(binding('value')).toEqual('value=["chair","table"]'); + * this.addFutureAction('change to XYZ', function($window, $document, done){ + * $document.elements('.example :input:last').val(',,a,b,').trigger('change'); + * done(); + * }); + * expect(binding('value')).toEqual('value=["a","b"]'); + * }); + */ angularFormatter.list = formatter( function(obj) { return obj ? obj.join(", ") : obj; }, function(value) { @@ -28,6 +121,31 @@ angularFormatter.list = formatter( } ); +/** + * @ngdoc formatter + * @name angular.formatter.trim + * + * @description + * Use trim formatter if you wish to trim extra spaces in user text. + * + * @returns {String} Trim excess leading and trailing space. + * + * @example + * Enter text with leading/trailing spaces: + * + * + *
value={{value|json}}
+ * + * @scenario + * it('should format trim', function(){ + * expect(binding('value')).toEqual('value="book"'); + * this.addFutureAction('change to XYZ', function($window, $document, done){ + * $document.elements('.example :input:last').val(' text ').trigger('change'); + * done(); + * }); + * expect(binding('value')).toEqual('value="text"'); + * }); + */ angularFormatter.trim = formatter( function(obj) { return obj ? trim("" + obj) : ""; } ); -- cgit v1.2.3