Skip to content

"To-do list" is a tool that helps to organize your day. It simply lists the things that you need to do and allows you to mark them as complete. You will build a simple website that allows for doing that, and you will do it using ES6 .

Benawi/Microverse-To-Do-list

Repository files navigation

πŸ“— Table of Contents

πŸ“– To-do list Microverse! Project

To-do list Microverse! project is a repository consisting of the following files:

  • HTML file
  • CSS file
  • JS files
  • HTML, CSS, and JS linters file

The repository also contains files for setting up linters and validators.

πŸ›  Built With

Tech Stack

Key Features

To Do list: add & remove

Features Added:

  • Set up a new project with Webpack
  • Create an index.html file and
  • To-Do List placeholder (div or ul element).
  • The index.html file must be set as a template using the HTML Webpack Plugin.
  • Create an index.js file and set an array of some simple to do tasks (array of objects). Each task object contains three keys:
    • description [string].
    • completed [bool].
    • index: [number].
  • A function to iterate over the tasks array and populate an HTML list item element for each task.
  • On page load render the dynamically created list of tasks in the dedicated placeholder. The list appear in order of the index values for each task.
  • Create a style.css and set rules for the To-Do List. CSS must be loaded by Webpack Style/CSS Loader. -All hardcoded items deleted from the tasks array. List structure #1.
  • A new JavaScript file for the new functionality created.
  • A function for adding a new task is implemented
  • A function for deleting a task is implemented
  • A function for editing task descriptions. implemented
  • By default new tasks wil have the property completed set to false and the property index set to the value of the new array length (i.e. if you're adding a 5th task to the list, the index of that task will be equal to 5).
  • Deleting a task will update all remaining items' indexes, so they represent the current list order and are unique(i.e. if you're deleting the first task index 1 from the list, the index of the next task(2) will set to 1)..
  • A new JavaScript file is added and imported as a module:
    • It contain methods related to the status updates (completed: true / false).
  • Add event listener to the checkbox (change).
  • Items object's value for completed key will updated upon user actions.
  • A function for the "Clear all completed" is implemented - button (filter() method used).
  • The updated array of items will be stored in local storage, so the user gets the correct list of values after the page reloads (which means that any changes made to the list will be preserved).
  • The output of the app image

(back to top)

πŸš€ Live Demo

(back to top)

πŸ’» Getting Started

To get a local copy up and running, follow these steps.

Setup

Clone this repository to your desired folder:

cd my-folder git clone [email protected]:myaccount/my-project.git

Prerequisites

In order to run this project you need:

  • gitHub account;
  • git installed on your OS.

Install

https://github.com/microverseinc/linters-config/tree/master/html-css-js

  • Installations required to run this project:

Install the webpack-cli.

  • Run the following command:
npm install webpack webpack-cli --save-dev

Install the plugin and adjust the webpack.config.js file

  • Run the following command:
npm install --save-dev html-webpack-plugin

To import a CSS file add the style-loader and css-loader to your module configuration

  • Run the following command:
npm install --save-dev style-loader css-loader

webpack-dev-server

  • Run the following command:
npm install --save-dev webpack-dev-server

Webhint installation.

  • Run the following command:
npm install --save-dev [email protected]

Stylelint installation.

  • Run the following command:

ESLint

  • Run

Usage

You can use this project by cloning it to your folder and changing index.html and styles.css files.

Run tests

To run tests, run the following commands:

To track linter errors locally follow these steps:

Download all the dependencies run:

npm install

Track HTML linter errors run:

npx hint .

Track CSS linter errors run

npx stylelint "**/*.{css,scss}"

Track JavaScript linter errors run:

npx eslint .

Deployment

You can redeploy this project by adding new lines of code to source files.

(back to top)

πŸ‘₯ Authors

πŸ‘€ Habtamu Alemayehu

(back to top)

πŸ”­ Future Features

To Do list: interactive list this will be added.

(back to top)

🀝 Contributing

Contributions, issues, and feature requests are welcome!

(back to top)

⭐️ Show your support

Give me ⭐️ If you like this project!

(back to top)

πŸ™ Acknowledgments

  • I would like to thank Microverse program for providing me this great chance.

(back to top)

πŸ“ License

This project is MIT licensed.

(back to top)

About

"To-do list" is a tool that helps to organize your day. It simply lists the things that you need to do and allows you to mark them as complete. You will build a simple website that allows for doing that, and you will do it using ES6 .

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published