Building a Simple To-Do List App Using JavaScript

Building a Simple To-Do List App Using JavaScript

Creating a To-Do List is a popular project for beginners learning JavaScript. It introduces key concepts like DOM manipulation, event handling, and conditionals. In this article, we'll break down the important concepts involved in building this basic project, which will help you understand JavaScript fundamentals better.


Project Overview

In this project, we build a To-Do List web app where users can:

  • Add new tasks.
  • Mark tasks as complete.
  • Delete tasks.

Let's walk through the key JavaScript concepts used in this project.


1. Document Object Model (DOM) Manipulation

The Document Object Model (DOM) is a programming interface that represents the structure of an HTML document as a tree of objects. JavaScript can interact with and modify this tree, allowing us to dynamically change the web page without reloading it.

In our project, we use DOM manipulation to:

  • Add new tasks to the list.
  • Mark tasks as complete.
  • Remove tasks from the list.

Key DOM Methods:

  • document.getElementById(): This method selects an HTML element by its id. For example:

const todoInput = document.getElementById('todo-input');        

  • Here, we're grabbing the text input field where the user types new tasks.
  • document.createElement(): This method creates a new HTML element. For example, when a user adds a task, we create a new <li> (list item):

const li = document.createElement('li');
li.innerHTML = `${task} <button class="delete-btn">Delete</button>`;
        

  • element.appendChild(): This method appends a new child element (like a task) to an existing parent element (like the list of tasks):

todoList.appendChild(li);        

Here, li is appended to the ul (unordered list) which displays the tasks.


2. Event Handling

Events in JavaScript are actions that happen on the web page, such as clicking a button or typing in a field. We can use JavaScript to listen for these events and run specific code in response.

Key Event Handling Concepts:

  • addEventListener(): This method attaches an event listener to a DOM element, listening for a specific event (e.g., "click"). When the event occurs, it runs a callback function. Here's how we handle a button click to add a new task:

addButton.addEventListener('click', addTask);        

This listens for the user to click the "Add Task" button, and then calls the addTask() function.

  • Event Propagation and stopPropagation(): Events can bubble up through the DOM (event propagation). Sometimes, we want to prevent this, such as when clicking a delete button inside a task should only delete that task and not trigger any parent event:

li.querySelector('.delete-btn').addEventListener('click', function (e) {
    e.stopPropagation();
    li.remove();
});        

3. Conditionals

Conditionals allow us to make decisions in our code based on whether certain conditions are true or false. In this project, we check if the user has entered text before adding a task:

const task = todoInput.value.trim();  // Remove extra spaces
if (task === "") {
    alert('Please enter a task!');
    return;
}        

Here, if checks whether the input is empty. If the condition (task === "") is true, we show an alert message and prevent the task from being added by using return to exit the function early.


4. Toggling Classes (CSS)

The classList property allows us to manipulate the classes applied to an HTML element. In our project, we toggle the class for a completed task:

li.addEventListener('click', function () {
    li.classList.toggle('completed');
});        

  • classList.toggle(): This method adds the class if it's not there and removes it if it is. In our case, we toggle the "completed" class, which applies a line-through style to indicate that the task is done.


5. Basic Styling with CSS

In this project, we also use CSS to style the elements and provide visual feedback to the user. While the focus is on JavaScript, styling the app makes it more user-friendly. For instance, we style the completed tasks with a line-through using the .completed class:

.completed {
    text-decoration: line-through;
}        

6. Clearing Input Fields

After the user adds a new task, we clear the input field so it's ready for a new task. This is done by setting the input field's value to an empty string:

todoInput.value = "";        

7. Reusability with Functions

To keep our code organized, we encapsulate logic in reusable functions. For example, the task-adding functionality is wrapped in a function called addTask():

function addTask() {
    const task = todoInput.value.trim();
    if (task === "") {
        alert('Please enter a task!');
        return;
    }

    // Create new list item and delete button
    const li = document.createElement('li');
    li.innerHTML = `${task} <button class="delete-btn">Delete</button>`;
    
    // Toggle task completion on click
    li.addEventListener('click', function () {
        li.classList.toggle('completed');
    });

    // Delete task on button click
    li.querySelector('.delete-btn').addEventListener('click', function (e) {
        e.stopPropagation();
        li.remove();
    });

    // Add the task to the list
    todoList.appendChild(li);

    // Clear input field
    todoInput.value = "";
}        

Conclusion

This simple To-Do List project helps you grasp several key concepts in JavaScript, such as:

  • DOM manipulation: Modifying the webpage structure dynamically.
  • Event handling: Responding to user interactions.
  • Conditionals: Making decisions based on input or actions.
  • Toggling classes: Changing the appearance of elements using CSS.

By working through this project, you get hands-on experience with these core JavaScript concepts, laying the foundation for more advanced web development projects.

Amani Mwasambu

Data Support Executive at Safaricom Limited

2 周

Very informative piece.

回复
Stanley Macharia

Machine Learning Engineer | Web Developer

2 周

Love this

回复

要查看或添加评论,请登录

社区洞察

其他会员也浏览了