Skip to content

Latest commit

 

History

History
199 lines (138 loc) · 7.7 KB

README2.md

File metadata and controls

199 lines (138 loc) · 7.7 KB

Build an Angular to-do application

This tutorial guides you through creating a to-do application using Angular. The finished application displays a list of to-do items and features editing, deleting, and adding items.

This article guides you through the following:

  • Getting to know your application structure
  • Displaying a list of to-do items

The to-do application structure

Just like a basic application that doesn't use a framework, an Angular application has an index.html. Within the <body> tag of the index.html, Angular uses a special element, <app-root> to insert your main component, which in turn includes other components you create. Generally, you don't need to touch the index.html, instead focusing your work within specialized areas of your application called components.

Organize your application with components

Components are a central building block of Angular applications. This to-do application has two components—a component as a foundation for your application, and a component for handling to-do items.

Each component is made up of a TypeScript class, HTML, and CSS. Typescript transpiles, or converts, into JavaScript, which means that your application ultimately ends up in plain JavaScript but you have the convenience of using Typescript's extended features and streamlined syntax.

Dynamically change the UI with *ngIf and *ngFor

This tutorial also covers two important Angular directives for dynamically altering the structure of the DOM. A directive is like a command that you can use in your HTML to affect change in your application.

The first directive that this tutorial covers is Angular's iterator, *ngFor. *ngFor can dynamically create DOM elements based on items in an array.

The second directive that you learn in this tutorial is *ngIf. You can use *ngIf to add or remove elements from the DOM based on a condition. For example, if users want to edit an item in the to-do list, you can provide them with the means to edit the item. If they do not want to edit an item, you can remove the interface for editing.

Share data between components

In this to-do application, you configure your components to share data. To add new items to the to do list, the main component has to send the new item to the second component. This second component manages the items and takes care of editing, marking as done, and deleting individual items.

You accomplish sharing data between Angular components with special decorators called @Input() and @Output(). You use these decorators to specify that certain properties allow data to go into or out of a component. To use @Output(), you raise an event in one component so that the other component knows that there is data available.

Define Item

In the app directory, create a new file named item.ts with the following contents:

export interface Item {
  description: string;
  done: boolean;
}

The Item interface creates an item object model so that your application understands what an item is. For this to-do list, an item is an object that has a description and can be done.

Add logic to AppComponent

Now that your application knows what an item is, you can give it some items by adding them to the TypeScript file, app.component.ts. In app.component.ts, replace the contents with the following:

import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'todo';

  filter: 'all' | 'active' | 'done' = 'all';

  allItems = [
    { description: 'eat', done: true },
    { description: 'sleep', done: false },
    { description: 'play', done: false },
    { description: 'laugh', done: false },
  ];

  get items() {
    if (this.filter === 'all') {
      return this.allItems;
    }
    return this.allItems.filter(item => this.filter === 'done' ? item.done : !item.done);
  }

}

The first line is a JavaScript import that imports Angular. The @Component() decorator specifies metadata about the AppComponent. The default metadata properties are as follows:

  • selector: Tells you the name of the CSS selector that you use in a template to instantiate this component. Here it is 'app-root'. In the index.html, within the body tag, the Angular CLI added <app-root></app-root> when generating your application. You use all component selectors in the same way by adding them to other component HTML templates.
  • templateUrl: Specifies the HTML file to associate with this component. Here it is, './app.component.html',
  • styleUrls: Provides the location and name of the file for your styles that apply specifically to this component. Here it is './app.component.css'.

The filter property is of type union, which means filter could have the value of all, active, or done. With the union type, if you make a typo in the value you assign to the filter property, TypeScript lets you know so that you can catch the bug early. This guide shows you how to add filtering in a later step, but you can also use a filter to show the default list of all the items.

The allItems array contains the to-do items and whether they are done. The first item, eat, has a done value of true.

The getter, get items(), retrieves the items from the allItems array if the filter is equal to all. Otherwise, get items() returns the done items or the outstanding items depending on how the user filters the view. The getter also establishes the name of the array as items, which you'll use in the next section.

Add HTML to the AppComponent template

To see the list of items in the browser, replace the contents of app.component.html with the following HTML:

<div class="main">
  <h1>My To Do List</h1>
  <h2>What would you like to do today?</h2>

  <ul>
    <li *ngFor="let item of items">{{item.description}}</li>
  </ul>
</div>

The <li> contains an *ngFor, a built-in Angular directive that iterates over the items in the items array. For each item, *ngFor creates a new <li>. The double curly braces that contain item.description instructs Angular to populate each <li> with the text of each item's description.

In the browser, you should see the list of items as follows:


My To Do List
What would you like to do today?

* eat
* sleep
* play
* laugh

Add items to the list

A to-do list needs a way to add items.

In app.component.ts, add the following method to the class:

  addItem(description) {
    this.allItems.unshift({
      description,
      done: false
    });
  }

The addItem() method takes an item that the user provides and adds it to the array when the user clicks the Add button. The addItem() method uses the array method unshift() to add a new item to the beginning of the array and the top of the list. You could alternatively use push(), which would add the new item to the end of the array and the bottom of the list.

To use the addItem() method, edit the HTML in the AppComponent template.

In app.component.html, replace the <h2> with the following:

  <label for="addItemInput">What would you like to do today?</label>

  <input
    #newItem
    placeholder="add an item"
    (keyup.enter)="addItem(newItem.value); newItem.value = ''"
    class="lg-text-input"
    id="addItemInput"
  />

  <button class="btn-primary" (click)="addItem(newItem.value)">Add</button>

When the user types a new item in the <input> and presses Enter, the addItem() method adds the value to the items array. Pressing the Enter key also resets the value of <input> to an empty string. Alternatively, the user can click the Add button which calls the sameaddItem() method.