From 0fecfb8e98f59f05997fb49613877badbd4bf2f6 Mon Sep 17 00:00:00 2001 From: Kathy Walrath Date: Wed, 22 Apr 2015 11:16:38 -0700 Subject: [PATCH 1/3] Changes to chapter 1 of the Dart guide --- public/docs/dart/latest/guide/setup.jade | 195 +++++++++++++++-------- 1 file changed, 129 insertions(+), 66 deletions(-) diff --git a/public/docs/dart/latest/guide/setup.jade b/public/docs/dart/latest/guide/setup.jade index 70d3aa4a81..448645a201 100644 --- a/public/docs/dart/latest/guide/setup.jade +++ b/public/docs/dart/latest/guide/setup.jade @@ -1,69 +1,59 @@ .l-main-section - h2#section-install Install Angular - p There are four steps to create any Angular app: - ol - li Create an entry point HTML file where users will start - li Load the Angular library at the top of the file - li Make a root component for your application - li Bootstrap Angular p. - Dart makes dependencies available to the application through the pubspec.yaml file. - To use Angular2 in your app, include angular as a dependency. Here’s the minimal - pubspec.yaml file for this sample: + As long as you already + have the Dart SDK, + getting started with Angular 2 is simple: - pre.prettyprint.lang-dart + ol + li Depend on the angular2 pub package. + li Create a Dart file that defines (directly or indirectly) a + root component and bootstraps Angular. + li Create an HTML file that uses the root component and points to the Dart file + + p. + You can use whichever editor or IDE you like, + or just use the command-line tools that the Dart SDK provides. + See Dart Tools + for more information. + + + h2#section-install Depend on angular2 + + p. + To use Angular2 in your app, include angular2 as a dependency in + your app's pubspec.yaml file. For example: + + pre.prettyprint.lang-yaml code. + # pubspec.yaml name: getting_started description: Dart version of Angular 2 example, Getting Started version: 0.0.1 dependencies: angular2: 2.0.0-alpha.20 browser: any - p. - The Dart Editor automatically downloads the packages your app depends on, along with any packages that they, in - turn, depend on. If this download fails or you like using the command line, you can explicitly install packages. - From Dart Editor, you can use Tools > Pub Get. From the command line (in the root directory of - your app, assuming the Dart SDK is in your path), you can run pub get. - -.l-main-section - h2#section-create-an-entry-point Create an entry point - p. - In the web/ directory for your app, create an index.html file and add the Angular library - tags and a main.dart file where you'll build your first component. - - p. - In the <body>, add an element called <my-app> that will be the root of your - application. - - pre.prettyprint.lang-html - code. - //index.html - <!DOCTYPE html> - <html> - <head> - <link rel="stylesheet" href="style.css"> - </head> - <body> - <my-app></my-app> - <script type="application/dart" src="main.dart"></script> - <script src="packages/browser/dart.js"></script> - </body> - </html> + Run pub get to download the packages your app depends on. + (Dart-savvy editors and IDEs + typically run pub get for you.) .l-main-section - h2#section-set-up-the-starting-component Set up the starting component + h2#section-set-up-the-starting-component Write the Dart code p. - In main.dart, create a class called AppComponent, configure it to bind to the - <my-app> element in index.html, and call Angular's bootstrap() to kick - it all off like this: + Next to your pubspec.yaml file, + create a web subdirectory containing a Dart file + (main.dart). + Edit main.dart, adding a component class (AppComponent), + configuring it to bind to the <my-app> element, + and creating a top-level main() function that calls + Angular's bootstrap() function. pre.prettyprint.lang-dart code. - //main.dart + // web/main.dart import 'package:angular2/angular2.dart'; import 'package:angular2/src/reflection/reflection.dart' show reflector; import 'package:angular2/src/reflection/reflection_capabilities.dart' show ReflectionCapabilities; @@ -83,13 +73,59 @@ } .l-main-section - h2#section-run-it Run it! + h2#section-create-an-entry-point Create an HTML file + p. + In the web/ directoryapp, create an HTML file (index.html). + Edit index.html to add a <my-app> element + and call main.dart. + + pre.prettyprint.lang-html + code. + <!-- web/index.html --> + <!DOCTYPE html> + <html> + <head> + <link rel="stylesheet" href="style.css"> + </head> + <body> + <my-app></my-app> + <script type="application/dart" src="main.dart"></script> + <script src="packages/browser/dart.js"></script> + </body> + </html> + +.l-main-section + h2#section-run-it Run the app! p. - Now run the app. In Dart Editor’s Files view, select index.html, right-click, and choose Run - in Dartium. + Now run the app. How you do this depends on your tools. + + ul + li. + If you're using Dart Editor, + right-click web/index.html, + and choose Open in Dartium. + This starts a web server + and opens your app in Dartium, + an experimental version of the Chromium browser that contains the Dart VM. + + li. + If you're using WebStorm or IntelliJ IDEA, + right-click web/index.html, + and choose Run 'index.html'. + + li. + If you're using the command line and don't have Dartium, + serve the app using pub serve, + and then run it by visiting http://localhost:8080 in a browser. + Generating the JavaScript takes a few seconds when you first visit the page, + and the generated JavaScript is currently large. + The generated JavaScript will be smaller once + Angular's transformer becomes available. + + p. + You should see something like this: - You should see: div(align='center') img(src='setup-example1.png') @@ -98,21 +134,48 @@ p This basic Angular app contains the structure for any app you'll build. - p. - You can think of Angular apps as a tree of components. This root component we've been talking about acts as the top - level container for the rest of your application. You've named this one AppComponent, but there's - nothing special about the name and you can use whatever makes sense to you. + .l-sub-section + h3 It's all a tree + + p. + You can think of an Angular app as a tree of components. + The root component acts as the top-level container for the rest of your application. + You've named this one AppComponent, but there's + nothing special about the name; you can use whatever makes sense to you. + + p. + The root component's job is to give a location in the HTML file where + your application can + render through its element—in this case, <my-app>. + There's nothing special about the HTML filename or the element name; + you can pick whatever you like. + + p. + The root component loads the initial template for the application, + which loads other components to perform + whatever functions your application needs—menu bars, views, forms, and so on. + We'll walk through examples of all of + these in the following pages. + + .l-sub-section + h3 @Component and @View annotations + + p. + A component annotation describes details about the component. + An annotation can be identified by its at-sign (@). + p. + The @Component annotation defines the HTML tag for + the component by specifying the component's CSS selector. + p. + The @View annotation defines the HTML that + represents the component. + The component you wrote uses an inline template, + but you can also have an external template. + To use an external template, + specify a templateUrl property and + give it the path to the HTML file. + p. - The root component's job is to give a location in the index.html file where your application will - render through it's element, in this case <my-app>. There is also nothing special about this - element name and you can pick it as you like. - - p. - The root component loads the initial template for the application that will load other components to perform - whatever functions your application needs - menu bars, views, forms, etc. We'll walk through examples of all of - these in the following pages. - - p Exciting! Not excited yet? Let's move on to Displaying Data. - - + Exciting! Not excited yet? + Let's move on to Displaying Data. From 2c2f9db31ce13eab6a924d2eae90568b305646ff Mon Sep 17 00:00:00 2001 From: Kathy Walrath Date: Wed, 22 Apr 2015 16:00:37 -0700 Subject: [PATCH 2/3] Update guide chapter 2: displaying data --- .../dart/latest/guide/displaying-data.jade | 482 ++++++++++++------ 1 file changed, 313 insertions(+), 169 deletions(-) diff --git a/public/docs/dart/latest/guide/displaying-data.jade b/public/docs/dart/latest/guide/displaying-data.jade index 4ecd499272..76021c1111 100644 --- a/public/docs/dart/latest/guide/displaying-data.jade +++ b/public/docs/dart/latest/guide/displaying-data.jade @@ -1,75 +1,117 @@ .l-main-section p. - Displaying data is job number one for any good application. In Angular, you bind data to elements in HTML - templates and Angular automatically updates the UI as data changes. + Displaying data is job number one for any good application. + In Angular, you bind data to elements in HTML + templates, and Angular automatically updates the UI as data changes. p. - Let's walk through how we'd display a property, a list of properties, and then conditionally show content + Let's walk through how to display a property and a list of properties, + and then to conditionally show content based on state. p. - We'll end up with a UI that looks like this: + The final UI looks like this: figure.image-display img(src='displaying-data-example1.png') .l-main-section - h2#section-create-an-entry-point Create an entry point + h2#section-create-an-entry-point Create entry points and pubspec - p Open your favorite editor and create a show-properties.html file with the content: - pre.prettyprint.lang-html + p. + Open your favorite editor and create a directory with + a web/main.dart file, + a web/index.html file, and + a pubspec.yaml file: + + .code-box + pre.prettyprint.lang-dart(data-name="dart") code. - //show-properties.html - <display></display> - 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. + // web/main.dart + library displaying_data; + + import 'package:angular2/angular2.dart'; + import 'package:angular2/src/reflection/reflection.dart' show reflector; + import 'package:angular2/src/reflection/reflection_capabilities.dart' show ReflectionCapabilities; + + part 'show_properties.dart'; + + main() { + reflector.reflectionCapabilities = new ReflectionCapabilities(); + bootstrap(DisplayComponent); + } + pre.prettyprint.lang-html(data-name="html") + code. + <!-- web/index.html --> + <!DOCTYPE html> + <html> + <head> + <link rel="stylesheet" href="style.css"> + </head> + <body> + + <display></display> + + <script type="application/dart" src="main.dart"></script> + <script src="packages/browser/dart.js"></script> + </body> + </html> + pre.prettyprint.lang-yaml(data-name="yaml") + code. + # pubspec.yaml + name: displaying_data + description: Dart version of Angular 2 example, Displaying Data + version: 0.0.1 + dependencies: + angular2: 2.0.0-alpha.20 + browser: any + + p. + All of this code should look familiar from the previous page, + except for the library and part statements + in main.dart. + Those statements let you implement part of the app in a different Dart file. + All three of these files remain similar in the rest of the examples, + so we'll just focus on what's different. .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.dart, and add the following: - - pre.prettyprint.linenums.lang-javascript - code. - // Dart - part of displaying_data; - - @Component( - selector: 'display' - ) - - @View( - template: ''' - <p>My name: {{ myName }}</p> - ''' - ) - class DisplayComponent { - String myName = 'Alice'; - } + p. + The simple method for binding text into templates is through interpolation, + where you put the name of a property + inside {{ }}. p. - You've just defined a component that encompases a view and controller for the app. The view - defines a template: + To see this working, create a Dart file under web + named show_properties.dart, + and add the following: + + pre.prettyprint.lang-dart + code. + // web/show_properties.dart + part of displaying_data; + + @Component( + selector: 'display' + ) + @View( + template: ''' + <p>My name: {{ myName }}</p> + ''' + ) + class DisplayComponent { + String myName = 'Alice'; + } + + p. + You've just defined a component that encompasses a view and controller for the app. The view + defines a template: + pre.prettyprint.lang-html - code. - <p>My name: {{ myName }}</p> + code. + <p>My name: {{ myName }}</p> 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. + Angular will automatically pull the value of myName and + insert it into the browser, + automatically updating it whenever it changes. .callout.is-helpful header Note @@ -77,18 +119,34 @@ 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. - p So you can see Angular dynamically update content, add a line after - - pre.prettyprint.lang-html - code. - <p>My name: {{ myName }}</p> - p to this: - pre.prettyprint.lang-html - code. - <p>Current time: {{ time }}</p> p. - Then give the DisplayComponent a starting value for time and a call to update time - via setInterval. + One thing to notice is that although you've written + your DisplayComponent class, you haven't + used new to instantiate it. + Because your class is associated with <display> elements in + the DOM, Angular automatically calls 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 DisplayComponent, which has + just one property, myName. + + p. + Add a second line to the template, + so you can see Angular dynamically update content: + + pre.prettyprint.lang-html + code. + <p>Current time: {{ time }}</p> + + p. + Then give the DisplayComponent a starting value for time and + a call to update time + via setInterval: pre.prettyprint.lang-dart code. @@ -107,43 +165,50 @@ } } - p Reload the page in your browser and you'll now see the seconds updating automatically. + p Reload the app, and you'll now see the seconds updating automatically. .l-main-section - h2#Create-an-array Create an array property and use For on the view - p Moving up from a single property, create an array to display as a list. + h2#Create-an-array Display an iterable using *for + p Moving up from a single value, create a property that's a list of values. pre.prettyprint.lang-dart code. class DisplayComponent { String myName = 'Alice'; List<String> friendNames = ['Aarav', 'Martín', 'Shannon', 'Ariana', 'Kai']; - ... } p. - You can then use this array in your template with the for directive to create copies of DOM elements - with one for each item in the array. + You can then use this list in your template with the for directive to create copies of DOM elements + with one for each item in the list. + pre.prettyprint.lang-dart code. - //Dart - template: ''' - <p>My name: {{ myName }}</p> - <p>Friends:</p> - <ul> - <li *for="#name of friendNames"> + @View( + template: ''' + <p>My name: {{ myName }}</p> + <p>Friends:</p> + <ul> + <li *for="#name of friendNames"> {{ name }} - </li> - </ul> - ''', - + </li> + </ul> + ''' + ) p. - To make this work, you'll also need to add the angular.For directive used by - the template to show_properties.dart so that Angular knows to include it: + To make this work, you'll also need to add the Angular For directive used by + the template to show_properties.dart, so that Angular knows to include it. + Add For using the optional directives parameter, + which contains a list of directives: pre.prettyprint.lang-dart code. - directives: const[For] + @View( + template: ''' + // ...HTML... + ''', + directives: const[For] + ) p Reload and you've got your list of friends! p. @@ -162,47 +227,101 @@ p The way to read this is: ul li. - *for : create a DOM element for each item in an + *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 friendNames : the iterable to use is called 'friendNames' in the current controller + such as a list. + li #name: Refer to individual values of the iterable as name. + li of friendNames: The iterable to use is called friendNames 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 + h2#Create-a-class Create a model and inject it p. - Before we get too much further, we should mention that putting our model (array) directly in our controller isn't + Before we get too much further, we should mention that putting the model (list) directly into the 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. We'll put this in a new - friends_service.dart under web/, and add part friends_service.dart - to main.dart. Here's what the class looks like: + Make a FriendsService class to implement a model containing a list of friends. We'll put this in a new + friends_service.dart under web/. Here's what the class looks like: pre.prettyprint.lang-dart code. + // web/friends_service.dart part of displaying_data; class FriendsService { List<String> friendNames = ['Aarav', 'Martín', 'Shannon', 'Ariana', 'Kai']; } + .callout.is-helpful + header Note + p. + Remember to tie friends_service.dart into the library's main file: + add part friends_service.dart to main.dart. p. - Replace the current list of friends in DisplayComponent by passing in the FriendsService and setting the list of - names in DisplayComponent to the names provided by the service you passed in. + Now you can replace the current list of friends in DisplayComponent. + First add a FriendsService parameter to the constructor. + Then set friendNames to the names provided by the service. pre.prettyprint.lang-dart code. - DisplayComponent(FriendsService friendsService) { - friendNames = friendsService.names; + // In web/show_properties.dart + class DisplayComponent { + String myName = 'Alice'; + List friendNames; + + DisplayComponent(FriendsService friendsService) { + friendNames = friendsService.names; + } } - p And then make FriendsService available to dependency injection + + p. + Next, make FriendsService available to dependency injection + by adding an injectables parameter to DisplayComponent's + @Component annotation: pre.prettyprint.lang-dart code. + @Component( + selector: 'display', + injectables: const[FriendsService] + ) + +.l-main-section + h2#Conditionally-displaying-data-with-If Conditionally display data using *if + p. + Lastly, before we move on, let's handle showing parts of our UI conditionally with *if. The + If 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 *if="names.length > 3">You have many friends!</p> + + p. + Also add If to the list of directives, + so Angular knows to include it: + + pre.prettyprint.lang-dart + code. + directives: const[For, If] + p. + The list current has 5 items, so if you run the app you'll see the message + congratulating you on your many friends. + Remove two items from the list, reload your browser, + and see that the message no longer displays. + + + p Here's the final code. + + .code-box + pre.prettyprint.lang-dart(data-name="show_properties.dart") + code. + // web/show_properties.dart part of displaying_data; @Component( @@ -210,95 +329,120 @@ injectables: const[FriendsService] ) @View( - template: ''' - <p>My name: {{ myName }}</p> - <p>Friends:</p> - <ul> - <li *for="#name of friendNames"> - {{ name }} - </li> - </ul> + template: ''' + <p>My name: {{ myName }}</p> + <p>Friends:</p> + <ul> + <li *for="#name of friendNames"> + {{ name }} + </li> + </ul> ''', directives: const[For] ) - class DisplayComponent { String myName = 'Alice'; - List<String> friendNames; + List<String> friendNames; DisplayComponent(FriendsService friendsService) { friendNames = friendsService.names; } } - -.l-main-section - h2#Conditionally-displaying-data-with-If Conditionally displaying data with If - p. - Lastly, before we move on, let's handle showing parts of our UI conditionally with If. The - If 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 *if="names.length > 3">You have many friends!</p> - - p You'll also need to add the If directive so Angular knows to include it. - - pre.prettyprint.lang-dart + pre.prettyprint.lang-dart(data-name="friends_service.dart") code. - directives: const[For, If] - p. - As there are currently 5 items it the list, you'll see the message congratulating you on your many friends. - Remove two items from the list, reload your browser, and see that the message no longer displays. + // web/friends_service.dart + part of displaying_data; - p Here's our final show_properties.dart + class FriendsService { + List<String> names = ['Aarav', 'Martín', 'Shannon', 'Ariana', 'Kai']; + } + pre.prettyprint.lang-dart(data-name="main.dart") + code. + // web/main.dart + library displaying_data; - pre.prettyprint.lang-dart - code. - part of displaying_data; + import 'dart:async'; - @Component( - selector: 'display', - injectables: const[FriendsService] - ) - @View( - template: ''' - <p>My name: {{ myName }}</p> - <p>Friends:</p> - <ul> - <li *for="#name of friendNames"> - {{ name }} - </li> - </ul> - <p *if="friendNames.length > 3">You have many friends!</p> - ''', - directives: const[For, If] - ) - class DisplayComponent { - String myName = 'Alice'; - List<String> friendNames; - DisplayComponent(FriendsService friendsService) { - friendNames = friendsService.names; - } - } + import 'package:angular2/angular2.dart'; + import 'package:angular2/src/reflection/reflection.dart' show reflector; + import 'package:angular2/src/reflection/reflection_capabilities.dart' show ReflectionCapabilities; - p And the accompanying main.dart: + part 'show_properties.dart'; + part 'friends_service.dart'; - pre.prettyprint.lang-dart - code. - library displaying_data; + main() { + reflector.reflectionCapabilities = new ReflectionCapabilities(); + bootstrap(DisplayComponent); + } + pre.prettyprint.lang-html(data-name="html") + code. + <!-- web/index.html --> + <!DOCTYPE html> + <html> + <head> + <link rel="stylesheet" href="style.css"> + </head> + <body> - import 'dart:async'; + <display></display> - import 'package:angular2/angular2.dart'; - import 'package:angular2/src/reflection/reflection.dart' show reflector; - import 'package:angular2/src/reflection/reflection_capabilities.dart' show ReflectionCapabilities; + <script type="application/dart" src="main.dart"></script> + <script src="packages/browser/dart.js"></script> + </body> + </html> + pre.prettyprint.lang-yaml(data-name="yaml") + code. + # pubspec.yaml + name: displaying_data + description: Dart version of Angular 2 example, Displaying Data + version: 0.0.1 + dependencies: + angular2: 2.0.0-alpha.20 + browser: any +.l-main-section + h2#section-explanations Explanations - part 'show_properties.dart'; - part 'friends_service.dart'; + .l-sub-section + h3 Using multiple Dart files in an Angular app - main() { - reflector.reflectionCapabilities = new ReflectionCapabilities(); - bootstrap(DisplayComponent); - } \ No newline at end of file + p. + Dart offers a few ways to implement an app in multiple files. + In this guide, all the code for each example is in a single library; + each Dart file under web is part of that library. + + p. + To let the code in main.dart + use the code in show_properties.dart, + declare a library in main.dart. + Then make show_properties.dart part of that library. + + .code-box + pre.prettyprint.lang-dart(data-name="main library file") + code. + // web/main.dart + library displaying_data; + // imports... + part 'show_properties.dart'; + // Code goes here... + pre.prettyprint.lang-dart(data-name="additional library file") + code. + // web/show_properties.dart + part of displaying_data; + // Code goes here... + + p. + Another way to split Dart code is to + define multiple libraries in a single package. + The additional libraries go under a lib directory + parallel to web. + + + p. + Yet another approach, often used when some of the code is highly reusable, + is to split the code into libraries in two or more packages. + + p. + For more information on implementing Dart libraries, see + Libraries and visibility + in the + Dart language tour. From b3f48570704942ddb5db7bb2bc662587dab42dd0 Mon Sep 17 00:00:00 2001 From: Kathy Walrath Date: Wed, 22 Apr 2015 17:27:22 -0700 Subject: [PATCH 3/3] Update screenshot in chapter 2 --- .../latest/guide/displaying-data-example1.png | Bin 12259 -> 25485 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/public/docs/dart/latest/guide/displaying-data-example1.png b/public/docs/dart/latest/guide/displaying-data-example1.png index d0f02a6464e49f711ae5d36c7993ba1bf7e945a5..c5e2c15114029d291d339dc7892ccb5f784acbca 100644 GIT binary patch literal 25485 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 literal 12259 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 aV5n@5P5EUR!~gwjMovmevRd3Y=>G#V%N