#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
strikethroughstyle, is added to our todo itemsEditing 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 }}
:
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:
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.
In order for the checkbox-input to reflect the completed-status, we need to add property-binding for its checked-status like this:
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 NgClass directive documentation) but we will focus on using it like so:
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. Depending on current item completed field we show line-through decoration or not:
And finally, add the CSS to our todo-item.component.scss
file:
Next step is to tell the parent element list-manager what to do, when update event is emitted. In order to do so we have to bind update action and update method that will trigger a proper function in TodoListService. Find the todo-item selector in the template (it looks like this):
And add the modifications:
Then create additional method to handle this update item event. It will look very similar to removeItem
function:
Voila! Checking the checkbox should apply a line through the todo title, and unchecking the checkbox should remove the line.
πΎ Save your code to GitHub
StackBlitz users - press Save in the toolbar and continue to the next section of the tutorial.
Commit all your changes by running this command in your project directory.
Push your changes to GitHub by running this command in your project directory.
Last updated