#native_company# #native_desc#
#native_cta#

Looping


Our goal in this lecture is to display a list of jokes instead of just one.

Note

To add some visual jazz to our application we are going to be using the Twitter Bootstrap UI framework and specifically the card style for our JokeComponent.

Learning Outcomes

  • Using Arrays in TypeScript.

  • Using the NgFor directive to repeat an element.

JokeListComponent

We will create a new component called JokeListComponent with the following listing:

@Component({
  selector: 'joke-list',
  template: `
<div class="card card-block"
     *ngFor="let joke of jokes">
  <h4 class="card-title">{{joke.setup}}</h4>
  <p class="card-text">{{joke.punchline}}</p>
</div>
  `
})
class JokeListComponent {
  jokes: Object[];

  constructor() {
    this.jokes = [
      {
        setup: "What did the cheese say when it looked in the mirror?",
        punchline: "Hello-Me (Halloumi)"
      },
      {
        setup: "What kind of cheese do you use to disguise a small horse?",
        punchline: "Mask-a-pony (Mascarpone)"
      },
      {
        setup: "A kid threw a lump of cheddar at me",
        punchline: "I thought ‘That’s not very mature’"
      },
    ];
  }
}

Arrays

The first change you’ll notice is that we have a property called jokes and the type is Object[].

The [] syntax in the type means list of or Array, so the jokes property holds a list of Objects.

Tip

Another perfectly legal way to write this would be Array<Object> but I prefer Object[] since for me it’s easier to see the [] characters at a glance.

In the constructor we initialise this array with some hilarious cheese jokes.

Card Element

You might notice in the template we are using some classes called card, card-block etc… this is from Twitter Bootstrap and it’s a style called a card which displays a rectangle with a border.

The basic HTML structure for a Twitter Bootstrap card element is like so:

 <div class="card card-block">
  <h4 class="card-title"></h4>
  <p class="card-text"></p>
 </div>

NgFor

We want to repeat this card element for each joke in our array of jokes.

So we add a special syntax called an NgFor on the card element, like so:

<div class="card card-block"
     *ngFor="let joke of jokes">
  <h4 class="card-title"></h4>
  <p class="card-text"></p>
</div>

*ngFor="let joke of jokes" will create a new HTML element, using the div element it’s attached to as a template, for every joke in the jokes array.

It will also make available to the element a variable called joke which is the item in the joke array it’s currently looping over.

The syntax translates to let <name-i-want-to-call-each-item> of <array-property-on-component>

Note

This is what we call in Angular a Directive. Specifically it’s a structural directive since it changes the structure of the DOM. We’ll be going through more built-in directives later on and also you’ll learn how to create your own.

So now we can display properties of this joke object in the HTML using {{joke.setup}} and {{joke.punchline}}, like so:

<div class="card card-block"
     *ngFor="let joke of jokes">
  <h4 class="card-title">{{joke.setup}}</h4>
  <p class="card-text">{{joke.punchline}}</p>
</div>

Tip

If you’ve worked with Angular 1 before, you probably used the ng-repeat directive. NgFor is the analogous directive In Angular. Its syntax is slightly different but they have the same purpose.

Configuring

In order to use our JokeListComponent we need to add it to the declarations on our NgModule and also mark it as the component we want to bootstrap the page with.

@NgModule({
  imports:[BrowserModule],
  declarations: [JokeComponent, JokeListComponent],
  bootstrap: [JokeListComponent]
})

Note

In the above example we are still declaring JokeComponent however we are not using it in our app. That’s fine you can still declare a component and not use it. If you deleted JokeComponent however then you would also need to delete it from the declarations array.

Since we are now bootstrapping JokeListComponent and it’s selector is joke-list we also need to change the root tag in our index.html, like so:

<body class="container m-t-1">
  <joke-list></joke-list>
</body>

Tip

The classes container and m-t-1 are from Twitter Bootstrap and add some nice visual padding to the page.

Now if we run the application we see multiple jokes printed to the screen, like so:

5.looping

Summary

When we declare an array in TypeScript we also tell it what Type of thing the array holds using Type[] or the Array<Type> syntax.

We can repeat the same element multiple times in Angular using the NgFor directive

Listing

Note

Since we are now using the JokeListComponent as our root component, our root component’s tag has changed from <joke></joke> to <joke-list></joke-list>
Listing 1. src/main.ts
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
import {NgModule}      from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {Component} from '@angular/core';

@Component({
  selector: 'joke-list',
  template: `
<div class="card card-block"
     *ngFor="let joke of jokes">
  <h4 class="card-title">{{joke.setup}}</h4>
  <p class="card-text">{{joke.punchline}}</p>
</div>
  `
})
class JokeListComponent {
  jokes: Object[];

  constructor() {
    this.jokes = [
      {
        setup: "What did the cheese say when it looked in the mirror?",
        punchline: "Hello-Me (Halloumi)"
      },
      {
        setup: "What kind of cheese do you use to disguise a small horse?",
        punchline: "Mask-a-pony (Mascarpone)"
      },
      {
        setup: "A kid threw a lump of cheddar at me",
        punchline: "I thought ‘That’s not very mature’"
      },
    ];
  }
}

@NgModule({
  imports: [BrowserModule],
  declarations: [JokeListComponent],
  bootstrap: [JokeListComponent]
})
export class AppModule {
}

platformBrowserDynamic().bootstrapModule(AppModule);

Caught a mistake or want to contribute to the book? Edit this page on GitHub!



Advanced JavaScript

This unique course teaches you advanced JavaScript knowledge through a series of interview questions. Bring your JavaScript to the 2021's today.

Level up your JavaScript now!