From 17ec689397db2bdd762b0fae0fcaa8b1fe54b436 Mon Sep 17 00:00:00 2001 From: Ward Bell Date: Mon, 19 Oct 2015 09:38:35 -0700 Subject: [PATCH] (docs) devguide-displaying-data: created new page and styled text, as a workaround in one sentence I placed spaces between double curlies {{ }} to render without breaking jade --- .../docs/ts/latest/guide/displaying-data.jade | 599 ++++++++---------- .../images/devguide/displaying-data/final.png | Bin 0 -> 31598 bytes 2 files changed, 263 insertions(+), 336 deletions(-) create mode 100644 public/resources/images/devguide/displaying-data/final.png diff --git a/public/docs/ts/latest/guide/displaying-data.jade b/public/docs/ts/latest/guide/displaying-data.jade index a234a0c091..6da036c2f7 100644 --- a/public/docs/ts/latest/guide/displaying-data.jade +++ b/public/docs/ts/latest/guide/displaying-data.jade @@ -1,347 +1,274 @@ +include ../../../../_includes/_util-fns + .l-main-section - - h2#section-displaying-controller-properties Displaying controller properties - - - p. - Let's walk through how we'd display a property, a list of properties, and then conditionally show content - based on state. We'll end up with a UI that looks like this: - + :markdown + ## Displaying component properties + + Angular components use properties to identify the data associated with the component. For example, a hero component may have properties such as a hero name. Let's walk through how we'd display a property, a list of properties, and then conditionally show content based on state. We'll end up with a UI that looks like this: + figure.image-display - img(src='/resources/images/examples/displaying-data-example1.png' alt="Example of Todo App") + img(src="/resources/images/devguide/displaying-data/final.png" alt="Final UI") + + :markdown + Showing properties with interpolation + The simple technique for displaying the data from a component property is to bind the property name through interpolation. With interpolation, you put the property name in the view template enclosed in double curly braces: { { myHero } } . + + To see this working, follow the steps in the Getting Started section. Then modify the app.ts file as follows: -.callout.is-helpful - header Typescript vs ES5 - p. - Although we work through the examples in TypeScript, you can also use - regular ES5. Click the ES5 link in any code box to see the ES5 JavaScript - version. Note that in ES5, you'd want to name your files .js rather than - .ts. + code-example(format="linenums" language="html" escape="html"). + import {Component, View, bootstrap} from 'angular2/angular2'; -.l-main-section - h2#section-create-an-entry-point Create an entry point + @Compo + nent({ + selector: 'my-app' + }) + @View({ + template: '

{{title}}

My favorite hero is: {{myHero}}

' + }) + class AppComponent { + title: string = 'Tour of Heroes'; + myHero: string = 'Windstorm'; + } + bootstrap(AppComponent); - p Open your favorite editor and create a show-properties.html file with the content: + :markdown + This code defines a component and associated view for the app. The component now has two properties: title and myHero. The view defines a template that displays those two properties using interpolation: + + code-example(format="linenums" language="html" escape="html"). +

{{title}}

My favorite hero is: {{myHero}}

+ + :markdown + Angular automatically pulls the value of the title and myHero properties from the component and inserts those values into the browser. Angular automatically updates the display whenever the property value changes. + + One thing to notice here is that we haven't called **new** to create an instance of the AppComponent class. When defining the component in app.ts, we identified a selector named ‘my-app’. As shown in the Getting Started section, we used an HTML element named 'my-app' in the index.html file. By associating the AppComponent with the element named 'my-app' in the DOM, Angular knows to automatically call new on AppComponent and bind its properties to that part of the template. + + There are two techniques for defining a template for the view associated with a component. The template can be defined inline using the template property, as shown in the example above. Or the template can be defined in a separate HTML file and referenced using the templateUrl property. + + In either case, when building templates the data bindings have access to the same scope of properties as the component class. Here, the class AppComponent and has two properties: title and myHero. The template can bind to either or both of those properties. + + ## Showing an array property with NgFor + + Moving up from a single property, let’s create an array to display as a list. And let’s move the initialization of the properties to the class constructor. + + code-example(format="linenums"). + class AppComponent { + title: string; + myHero: string; + heroes: Array; + + constructor() { + this.title = 'Tour of Heroes'; + this.myHero = 'Windstorm'; + this.heroes = ['Magenta', 'Tornado', 'Windstorm']; + } + } + + :markdown + We can use the NgFor directive in the template to display each item in this array as shown below. Add the NgFor directive to one of the DOM elements. Angular then creates a copy of that DOM element for each item in the array. + + code-example(format="linenums" language="html"). + template: ` + <h1>{{title}}</h1> + <h2>My favorite hero is: {{myHero}}</h2> + <p>Heroes:</p> + <ul> + <li *ng-for="#hero of heroes"> + {{ hero }} + </li> + </ul> + ` - code-example(language="html" escape="html"). - + :markdown + Notice that we are now using the backtick instead of the single quote to enclose the template. This allows us to define multiple lines of HTML for the template. + + We added the NgFor to the li element, so Angular will define an li element for each item in the list. However, by default Angular does not automatically include the NgFor directive. We have to do that manually by making two changes to the app.ts file. + + First, we need to add NgFor to the import statement as follows: + ``` + import {Component, View, bootstrap, NgFor} from 'angular2/angular2'; + ``` + Second, we need to define NgFor as a directive accessible to the view as follows: - p - | The <display> component here acts as the site where you'll insert your application. - | We'll assume a structure like this for the rest of the examples here and just focus on the parts that - | are different. + code-example(format="linenums" language="html"). + @View({ + template: ` + <h1>{{title}}</h1> + <h2>My favorite hero is: {{myHero}}</h2> + <p>Heroes:</p> + <ul> + <li *ng-for="#hero of heroes"> + {{ hero }} + </li> + </ul> + `, + directives: [NgFor] + }) + + :markdown + The heroes then appear in the view as an unordered list. Angular will automatically update the display any time that the list changes. Add a new item and it appears in the list. Delete an item and Angular deletes the item from the list. Reorder items and Angular makes the corresponding reorder of the DOM list. + + Let's look again at the few lines of HTML that perform this operation: + + code-example(format="linenums" language="html"). + <li *ng-for="#hero of heroes"> + {{ hero }} + </li> -.l-main-section - h2#section-showing-properties-with-interpolation Showing properties with interpolation - p.text-body - | The simple method for binding text into templates is through interpolation where you put the name of a property - | inside {{ }}. - - p To see this working, create another file, show-properties.ts, and add the following: - - code-tabs - code-pane(language="javascript" name="TypeScript" format="linenums"). - // TypeScript - import {Component, View, bootstrap} from 'angular2/angular2'; - - @Component({ - selector: 'display' - }) - @View({ - template: ` - <p>My name: {{ myName }}</p> - ` - }) - class DisplayComponent { - myName: string; - - constructor() { - this.myName = "Alice"; - } - } - code-pane(language="javascript" name="ES5" format="linenums"). - // ES5 - function DisplayComponent() { - this.myName = "Alice"; - } - DisplayComponent.annotations = [ - new angular.ComponentAnnotation({ - selector: "display" - }), - new angular.ViewAnnotation({ - template: - '<p>My name: {{ myName }}</p>' - }) + :markdown + Breaking this down: + - *ng-for : creates a DOM element for each item in an [iterable](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) like an array + - #hero : defines a local variable that refers to individual values of the iterable as 'hero' + - of heros : the iterable to use is called 'heroes' in the current component + + Using this NgFor syntax, we can display data from any iterable object. + + ## Creating a class for the data + + Before we get too much further, note that putting our data model directly in our component doesn’t follow best practices. We should separate the concerns by having another class serve the role of model and use it in the component. + + We’ll add this class to the app.ts file to minimize the number of files required for this demo. But you would want to define a separate hero.ts file for this. + ``` + class Hero { + id: number; + name: string; + } + ``` + Here we define a Hero class with two properties: id and name. + + We can then change the AppComponent to use this new class as a data type: + ``` + class AppComponent { + title: string; + myHero: Hero; + heroes: Hero[]; + + constructor() { + this.title = 'Tour of Heroes'; + this.myHero = { + id: 1, + name: 'Windstorm' + }; + this.heroes = [ + { "id": 1, "name": "Windstorm" }, + { "id": 15, "name": "Magneta" }, + { "id": 20, "name": "Tornado" } ]; + } + } + ``` + We also need to change the template to access the appropriate class property: + + code-example(format="linenums" language="html"). + @View({ + template: ` + <h1>{{title}}</h1> + <h2>My favorite hero is: {{myHero.name}}</h2> + <p>Heroes:</p> + <ul> + <li *ng-for="#hero of heroes"> + {{ hero.name }} + </li> + </ul> + `, + directives: [NgFor] + }) + + :markdown + The application should work as before, but it now uses the Hero class to define the hero properties. + + ## Conditionally displaying data with NgIf + + There may be times that the app needs to conditionally display data. For example, only display a message if a specific condition is true. We can conditionally display data using NgIf. The NgIf directive adds or removes elements from the DOM based on an expression. + + See it in action by adding a paragraph at the end of the template as shown below: + ``` +

There are many heroes!

+ ``` + If the list of heroes has more than 3 items, the paragraph is added to the DOM and the message appears. If there are 3 or fewer items, the paragraph won’t be added to the DOM and no message appears. - - p. - You've just defined a component that encompasses a view and controller for the app. The view - defines a template: - - code-example(language="html" escape="html"). -

My name: {{ myName }}

- - p. - Angular will automatically pull the value of myName and insert it into the browser and - update it whenever it changes without work on your part. - - p. - One thing to notice here is that though you've written your DisplayComponent class, you haven't - called new to create one anywhere. By associating your class with elements named 'display' in - the DOM, Angular knows to automatically call new on DisplayComponent and bind its properties to - that part of the template. - - p. - When you're building templates, data bindings like these have access to the same scope of - properties as your controller class does. Here, your class is the DisplayComponent that has - just one property, myName. - - .callout.is-helpful - header Note - p. - While you've used template: to specify an inline view, for larger templates you'd - want to move them to a separate file and load them with templateUrl: instead. - -.l-main-section - h2#Create-an-array Create an array property and use NgFor on the view - p Moving up from a single property, create an array to display as a list. - - code-tabs - code-pane(language="javascript" name="TypeScript" format="linenums"). - //Typescript - class DisplayComponent { - myName: string; - names: Array<string>; - - constructor() { - this.myName = "Alice"; - this.names = ["Aarav", "Martín", "Shannon", "Ariana", "Kai"]; - } - } - - code-pane(language="javascript" name="Javascript (ES5)" format="linenums"). - //ES5 - function DisplayComponent() { - this.myName = "Alice"; - this.names = ["Aarav", "Martín", "Shannon", "Ariana", "Kai"]; - } - p. - You can then use this array in your template with the NgFor directive to create copies of DOM elements - with one for each item in the array. - - code-tabs - code-pane(language="javascript" name="TypeScript" format="linenums"). - //Typescript - template: ` - <p>My name: {{ myName }}</p> - <p>Friends:</p> - <ul> - <li *ng-for="#name of names"> - {{ name }} - </li> - </ul> - `, - code-pane(language="javascript" name="ES5" format="linenums"). - //ES5 - template: - '<p>My name: {{ myName }}</p>' + - '<p>Friends:</p>' + - '<ul>' + - '<li *ng-for="#name of names">' + - '{{ name }}' + - '</li>' + - '</ul>', - - p. - To make this work, you'll also need to add the NgFor directive used by the template so - that Angular knows to include it: - - code-tabs - code-pane(language="javascript" name="TypeScript" format="linenums"). - //Typescript - import {Component, View, bootstrap, NgFor} from 'angular2/angular2'; - @View({ - ... - directives: [NgFor] - }) - - - code-pane(language="javascript" name="ES5" format="linenums"). - //ES5 - DisplayComponent.annotations = [ - ... - new angular.ViewAnnotation({ - ... - directives: [angular.NgFor] - }) + As with the NgFor, we’ll need to add the NgIf directive so Angular knows to include it. Add it to the import: + ``` + import {Component, View, bootstrap, NgFor, NgIf} from 'angular2/angular2'; + ``` + And add it to the directives array: + ``` + directives: [NgFor, NgIf] + ``` + Since there are four items in the array, the message should appear. Delete one of the elements from the array, refresh the browser and the message should no longer appear. + + ## Using the CORE_DIRECTIVES Constant + + In addition to NgFor and NgIf, there are other core Angular directives that are often used in Angular apps such as NgClass and NgSwitch. Instead of importing each Angular core directive separately as we did with NgFor and NgIf, Angular provides a constant called CORE_DIRECTIVES. This constant defines a collection of the Angular core directives. We can then use this constant instead of enumerating each built-in directive as part of the import statement and @View annotation. + + Using the CORE_DIRECTIVES constant we can change our import statement to: + ``` + import {Component, View, bootstrap, CORE_DIRECTIVES} from 'angular2/angular2'; + ``` + And we can change our @View annotation to: + ``` + directives: [CORE_DIRECTIVES] + ``` + Use this constant instead of enumerating each Angular core directive any time you plan to use the built-in directives in your view. + + ## Summary + + - You now know how to: + - Use interpolation with the double curly braces to display a single component property, + - Use NgFor to display a list of items from an array, + - Use a TypeScript class to define the data for your component and display properties of that class, + - Use NgIf to conditionally display data based on an expression. + - And use the CORE_DIRECTIVES constant to simplify specification of the core Angular directives. + + Use these techniques any time you need to display data in the view. + + The resulting app.ts file is as follows: + + code-example(format="linenums" language="html"). + import {Component, View, bootstrap, CORE_DIRECTIVES} from 'angular2/angular2'; + + @Component({ + selector: 'my-app' + }) + @View({ + template: ` + <h1>{{title}}</h1> + <h2>My favorite hero is: {{myHero.name}}</h2> + <p>Heroes:</p> + <ul> + <li *ng-for="#hero of heroes"> + {{ hero.name }} + </li> + </ul> + <p *ng-if="heroes.length > 3">There are many heroes!</p> + `, + directives: [CORE_DIRECTIVES] + }) + + class AppComponent { + title: string; + myHero: Hero; + heroes: Hero[]; + + constructor() { + this.title = 'Tour of Heroes'; + this.myHero = { + id: 1, + name: 'Windstorm' + }; + this.heroes = [ + { "id": 1, "name": "Windstorm" }, + { "id": 13, "name": "Bombasto" }, + { "id": 15, "name": "Magneta" }, + { "id": 20, "name": "Tornado" } ]; - - p Reload and you've got your list of friends! - p. - Angular will mirror changes you make to this list over in the DOM. Add a new item and it appears in your - list. Delete one and Angular deletes the <li>. Reorder items and Angular makes the corresponding reorder of - the DOM list. - p Let's look at the few lines that do the work again: - code-example(language="html" format="linenums"). - //HTML - <li *ng-for="#name of names"> - {{ name }} - </li> - p The way to read this is: - ul - li. - *ng-for : create a DOM element for each item in an - iterable - like an array - li #name : refer to individual values of the iterable as 'name' - li of names : the iterable to use is called 'names' in the current controller - p Using this syntax, you can build UI lists from any iterable object. -.l-main-section - h2#Create-a-class Create a class for the array property and inject into component - - p. - Before we get too much further, we should mention that putting our model (array) directly in our controller isn't - proper form. We should separate the concerns by having another class serve the role of model and inject it into - the controller. - - p Make a FriendsService class to provide the model with the list of friends. - - code-tabs - code-pane(language="javascript" name="TypeScript" format="linenums"). - class FriendsService { - names: Array<string>; - constructor() { - this.names = ["Alice", "Aarav", "Martín", "Shannon", "Ariana", "Kai"]; - } - } - - code-pane(language="javascript" name="ES5" format="linenums"). - function FriendsService() { - this.names = ["Aarav", "Martín", "Shannon", "Ariana", "Kai"]; - } - - p. - Now replace the current list of friends in DisplayComponent by including the FriendsService in the injectables list, - then including the service in the constructor, and finally setting the list of - names in DisplayComponent to the names provided by the service you passed in. - - .callout.is-helpful - header ES5 Note - p. - The dependency injection syntax here is using the low-level API and is...well...not very nice. We're - working on sugaring the syntax to match the way it works in Angular 1. Expect this to change soon. - - code-tabs - code-pane(language="javascript" name="TypeScript" format="linenums"). - @Component({ - ... - appInjector: [FriendsService] - }) - class DisplayComponent { - myName: string; - names: Array<string>; - constructor(friendsService: FriendsService) { - this.myName = 'Alice'; - this.names = friendsService.names; - } - } - - - code-pane(language="javascript" name="ES5" format="linenums"). - //ES5 - function DisplayComponent(friends) { - this.myName = "Alice"; - this.names = friends.names; - } - DisplayComponent.annotations = [ - new angular.ComponentAnnotation({ - selector: "display", - appInjector: [FriendsService] - }), - new angular.ViewAnnotation({ - template: '{{ myName }} <ul> <li *for="#name of names">{{ name }}</li> </ul>', - directives: [angular.NgFor] - }) - ]; - DisplayComponent.parameters = [[FriendsService]]; - document.addEventListener("DOMContentLoaded", function() { - angular.bootstrap(DisplayComponent); - }); -.l-main-section - h2#Conditionally-displaying-data-with-NgIf Conditionally displaying data with NgIf - p. - Lastly, before we move on, let's handle showing parts of our UI conditionally with NgIf. The - NgIf directive adds or removes elements from the DOM based on the expression you provide. - p See it in action by adding a paragraph at the end of your template - pre.prettyprint.lang-html - code. - <p *ng-if="names.length > 3">You have many friends!</p> - p You'll also need to add the NgIf directive so Angular knows to include it. - - code-tabs - code-pane(language="javascript" name="TypeScript" format="linenums"). - //Typescript - import {Component, View, bootstrap, NgFor, NgIf} from 'angular2/angular2'; - ... - directives: [NgFor, NgIf] - code-pane(language="javascript" name="ES5" format="linenums"). - //ES5 - directives: [angular.NgFor, angular.NgIf] - p. - As there are currently 6 items in the list, you'll see the message congratulating you on your many friends. - Remove three items from the list, reload your browser, and see that the message no longer displays. - - code-tabs - code-pane(language="javascript" name="TypeScript" format="linenums"). - //TypeScript - import {Component, View, bootstrap, NgFor, NgIf} from 'angular2/angular2'; - ... - @View({ - template: ` - <p>My name: {{ myName }}</p> - <p>Friends:</p> - <ul> - <li *ng-for="#name of names"> - {{ name }} - </li> - </ul> - <p *ng-if="names.length > 3">You have many friends!</p> - `, - directives: [NgFor, NgIf] - }) - class DisplayComponent { - ... - } - - class FriendsService { - names: Array<string>; - constructor() { - this.names = ["Aarav", "Martín", "Shannon"]; - } - } - code-pane(language="javascript" name="ES5" format="linenums"). - //ES5 - function DisplayComponent(friends) { - this.myName = "Alice"; - this.names = friends.names; - } - DisplayComponent.annotations = [ - ... - new angular.ViewAnnotation({ - template: ' - '<p>My name: {{ myName }}</p>' + - '<p>Friends:</p>' + - '<ul>' + - '<li *ng-for="#name of names">' + - '{{ name }}' + - '</li>' + - '</ul>' + - '<p *ng-if="names.length > 3">You have many friends!</p>'', - directives: [angular.NgFor, angular.NgIf] - }) - ]; - - function FriendsService () { - this.names = ["Aarav", "Martín", "Shannon"]; - } + } + } + bootstrap(AppComponent); + + class Hero { + id: number; + name: string; + } + + :markdown + In addition to displaying data, most applications also need to obtain data from the user. Next up, check out how to respond to user input. \ No newline at end of file diff --git a/public/resources/images/devguide/displaying-data/final.png b/public/resources/images/devguide/displaying-data/final.png new file mode 100644 index 0000000000000000000000000000000000000000..6cd92b7bd74cd50f3ad796d24f710082d6253e6b GIT binary patch literal 31598 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 literal 0 HcmV?d00001