Skip to content

Imran-imtiaz48/todo-List

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

The ToDo List Dashboard is a modern web application designed to manage tasks effectively while providing useful information like the current date and time, weather updates, a daily inspirational quote, the picture of the day, and the latest news headlines. This document details the structure, components, and functionalities of the dashboard, enabling users and developers to understand and modify it.

File Structure

  • index.html: The main HTML file containing the structure of the dashboard.
  • styles.css: The CSS file used for styling the dashboard.
  • script.js: The JavaScript file that handles the dynamic functionalities, including fetching weather data, news headlines, and managing the task list.

Components

1. Header Section

  • Title: Displays the title "Modern Dashboard."
  • Date and Time: Shows the current date and time in the currentDateTime element. This is updated dynamically using JavaScript.

2. Weather Section

  • Weather Info: Displays the current weather in the weatherInfo element. Initially shows "Loading weather..." until the data is fetched dynamically.

3. Quote of the Day

  • Quote Display: Shows an inspirational quote. In the provided HTML, the quote is statically set as "Action is the foundational key to all success." — Pablo Picasso.

4. Picture of the Day

  • Image Display: Displays a picture of the day in the inspirationalImage element. The src attribute will be dynamically set via JavaScript.

5. Latest News

  • News Headlines: Lists the latest news headlines in the newsHeadlines element. Initially shows "Loading news..." until the data is fetched.

6. To-Do List Section

  • Task Input: A section where users can input tasks with the following fields:

    • Task Input: A text field for entering the task description.
    • Due Date: A date picker for setting the due date of the task.
    • Priority Selector: A dropdown to select the task priority (Low, Medium, High).
    • Add Task Button: A button to add the task to the list.
  • Task Filters: Buttons to filter tasks by:

    • All: Displays all tasks.
    • Completed: Displays only completed tasks.
    • Incomplete: Displays only incomplete tasks.
  • Search Functionality: A search input to filter tasks based on the entered keywords.

  • Clear All Button: A button to clear all tasks from the list.

  • Task List: An unordered list (taskList) where tasks are displayed after being added.

JavaScript Functionality (script.js)

  • Dynamic Date and Time: A function to update the currentDateTime element with the current date and time.

  • Weather API Integration: A function to fetch weather information from an API and update the weatherInfo element.

  • Daily Quote: Currently hardcoded, but could be extended to fetch quotes dynamically.

  • Image of the Day: A function to fetch and display an image of the day in the inspirationalImage element.

  • News API Integration: A function to fetch the latest news headlines and populate the newsHeadlines list.

  • Task Management:

    • Add Task: Adds a new task to the taskList with the provided details.
    • Filter Tasks: Filters tasks based on their completion status.
    • Search Tasks: Searches tasks by matching the entered keywords.
    • Clear All Tasks: Clears all tasks from the taskList.

CSS Styling (styles.css)

The styling for the dashboard is handled in styles.css, which includes:

  • Container Layout: Styles for the .container class, arranging the dashboard sections in a responsive and visually appealing layout.

  • Section Headers: Styling for the h1 and h2 elements to maintain a consistent and modern look.

  • Task List Styling: Styles for the task input fields, task list items, and filter buttons to ensure user-friendly interaction.

Future Enhancements

  • API Integration for Quotes: Replace the static quote with a dynamically fetched quote from an API.
  • Enhanced Weather and News Information: Improve the presentation and data coverage for weather and news sections.
  • Task Persistence: Implement local storage or server-side storage to persist tasks across sessions.
  • User Customization: Allow users to customize the appearance and content of the dashboard.

Conclusion

The ToDo List Dashboard is a versatile and modern web application designed to help users stay organized while providing useful and motivational information. This documentation provides a comprehensive overview of the application’s structure and functionalities, serving as a guide for further development and customization.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published