ngHeroes
  • πŸ‘€About
  • #0: πŸ’ƒ Introduction
  • #1: βŒ› Installations
  • #2: πŸ…° Angular kicks in
  • #3: πŸ“ Component
  • #4: ✏ A new component
  • #5: πŸ’Ό Class
  • #6: πŸ“₯ Property binding
  • #7: πŸ“€Event binding
  • #8: πŸ“Ž Element ref - #
  • #9: πŸ“‹ The To Do list
  • #10: βž• New component: todo-item
  • #11: β›“ Interface
  • #12: πŸ“ŒAdd items
  • #13: 🚧 Refactor App Component
  • #14: πŸ’… Adding Style
  • #15: πŸ”‹ Creating a Service
  • #16: 🎁 Add Items Using the Service
  • #17: πŸ’ΎLocal storage
  • #18: πŸ—‘ Remove item
  • #19: πŸ”˜ Adding a checkbox
  • #20: πŸ›° Deploy to GitHub Pages
  • #21: πŸ’ͺ Enrich the todo-item component
  • Appendix 1: Generating a new project
  • Appendix 2: Tutorial Extensions
Powered by GitBook
On this page

Was this helpful?

#19: πŸ”˜ Adding a checkbox

We are now able to interact with our todo list by removing items. But what if we want to complete items and still be able to see them in our list, with a line through the item's title? Enter the checkbox!

We will look at:

  • Adding a checkbox

  • Adding functionality when you click the checkbox so that a CSS class, which adds a strikethrough style, is added to our todo items

  • Editing the todo title so that it responds to the checkbox

  • Adding a new CSS Class

Let's go ahead and add a checkbox into our todo-item.component.ts file. Place the following code right before {{ item.title }}:

src/app/todo-item/todo-item.component.ts
<input type="checkbox"/>

Now, in order for the checkbox to do anything, we need to add a click event handler which we will call completeItem. We'll also add a css-class and wrap the element and the interpolation together for styling. Let's do that now:

src/app/todo-item/todo-item.component.ts
<div>
  <input type="checkbox"
         class="todo-checkbox"
         (click)="completeItem()"/>
  {{ item.title }}
</div>

When we click on the checkbox, it will run the completeItem method. Let's talk about what this method needs to accomplish. We want to be able to toggle some CSS styling on the item's title so that when the checkbox is checked it will have a strikethrough. We also want to save the status of the item in the local storage. In order to achieve this, we will emit an update event with the new status of the item and catch it in the parent component.

export class TodoItemComponent implements OnInit {
  @Input() item: TodoItem;
  @Output() remove: EventEmitter<TodoItem> = new EventEmitter();
  @Output() update: EventEmitter<any> = new EventEmitter();

  // put this method below ngOnInit
  completeItem() {
    this.update.emit({
      item: this.item,
      changes: {completed: !this.item.completed}
    });
  }
<some-element [ngClass]="{'first': true, 'second': true, 'third': false}">...</some-element>

The 'first' and 'second' class will be applied to the element because they are given a true value, whereas the 'third' class will not be applied because it is given a false value. So this is where our earlier code comes into play. Our completeItem method will toggle between true and false values, thus dictating whether a class should be applied or removed.

Let's wrap the item title in a <span>, then use NgClass to apply the styling:

<span class="todo-title" [ngClass]="{'todo-complete': isComplete}">
  {{ item.title }}
</span>

And finally, add the CSS to our item.component.css file:

  .todo-complete {
    text-decoration: line-through;
  }

Voila! Checking the checkbox should apply a line through the todo title, and unchecking the checkbox should remove the line.

Previous#18: πŸ—‘ Remove itemNext#20: πŸ›° Deploy to GitHub Pages

Last updated 6 years ago

Was this helpful?

But wait! How is any of this going to affect the todo title when we're only touching the checkbox? Well, Angular has this wonderful directive called NgClass. This directive applies or removes a CSS class based on a boolean (true or false) expression. There are many ways to use this directive (see the ) but we will focus on using it like so:

NgClass directive documentation