Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add and remove items from To Do List #2

Merged
merged 7 commits into from Aug 13, 2022
Merged

Conversation

GloireIrenge
Copy link
Owner

This part of the project is made with the following changes and functionalities :

  • I removed all the hardcoded items from the todo array and created a new JavaScript file for the add and remove functionalities.
  • I Implemented a function for adding a new task and a function for deleting a task.
  • In the index.js file, I Implemented a function for editing todo descriptions.
  • When an item is deleted, the remaining item is updated.
  • All changes are saved to the local storage.

Copy link

@codepantha codepantha left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

STATUS: REQUIRED CHANGES ♻️

Hi @GloireIrenge 👋,

Good job so far!
There are some issues that you still need to work on to go to the next project but you are almost there!

Highlights 🎯

✔️ Correct GitHub Flow
✔️ Descriptive PR
✔️ No linter errors

Required Changes ♻️

Check the comments under the review.

Optional suggestions

Every comment with the [OPTIONAL] prefix is not crucial enough to stop the approval of this PR. However, I strongly recommend you to take them into account as they can make your code better.

You can also consider:

  • N/A

Cheers and Happy coding!👏👏👏

Feel free to leave any questions or comments in the PR thread if something is not 100% clear.
Please, remember to tag me in your question so I can receive the notification.

Please, do not open a new Pull Request for re-reviews. You should use the same Pull Request submitted for the first review, either valid or invalid unless it is requested otherwise.


As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using this form.

Comment on lines 16 to 20
addTodo = (task, todos) => {
todos.push(task);
localStorage.setItem('todos', JSON.stringify(todos));
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • At the moment, when a to-do task is saved to localStorage, the index property is always set to 0. This is not the expected behaviour. The index property for each to-do item should be set to the value of the new array length. Please implement this requirement 🙏
    Kindly see the bug below 👇
    image

Comment on lines 21 to 26
deleteTodo = (e, todos) => {
e.target.parentElement.remove();
todos.splice(e.target.parentElement.id, 1);
localStorage.setItem('todos', JSON.stringify(todos));
}
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • When a to-do list item is deleted, please remember to update all remaining items' indexes, so they represent the current list order and are unique 👍

Copy link

@smunozmo smunozmo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @GloireIrenge, 👋

Highlights 👏

  • Nice job doing the suggested changes, great! 😎
  • Great work using the right GitHub Flow.
  • Your README looks professional, well done!
  • Commits are descriptive, good work.
  • Linters are working properly, great job!

Your project is complete! There is nothing else to say other than... it's time to merge it! 🚀
Very nice work, congratulations! 🎉

APPROVED! 💯 💯 💯

Cheers and Happy coding! 🤓

Optional suggestions

Every comment with the [OPTIONAL] prefix is not crucial enough to stop the approval of this PR. However, I strongly recommend you to take them into account as they can make your code better.

✅ Feel free to leave any questions or comments in the PR thread if something is not 100% clear.
Please, remember to tag me in your question so I can receive the notification.


As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using this form.

@GloireIrenge GloireIrenge merged commit c4eb2cd into master Aug 13, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants