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

To Do list: add & remove #2

Merged
merged 9 commits into from
May 4, 2023
Merged

To Do list: add & remove #2

merged 9 commits into from
May 4, 2023

Conversation

CesarHerr
Copy link
Owner

  • Remove all hardcoded items from the tasks array. ✔️
  • Create a new JavaScript file for the new functionality. ✔️
  • Implement a function for adding a new task (add a new element to the array). ✔️
  • Implement a function for deleting a task (remove an element from the array). ✔️
  • Implement a function for editing task descriptions. ✔️
  • By default new tasks should have the property completed set to false and the property index set to the value of the new array
    length. ✔️
  • Deleting a task should update all remaining items' indexes, so they represent the current list order and are unique. ✔️
  • All changes to the To Do List should be saved in local storage. ✔️

image

Copy link

@Reem-lab Reem-lab left a comment

Choose a reason for hiding this comment

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

Hi @CesarHerr, 👋🏻👋🏻

Great 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

  • No Linters error 💯🤩
  • Followed GitHub Flow 💯🤩
  • Great job working on the functionality 💯
  • Professional README ✅

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.

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.

modules/crud.js Outdated
Comment on lines 11 to 17

add(text) {
const newTodo = new Todo(text);
this.list.push(newTodo);
localStorage.setItem('list', JSON.stringify(this.list));
this.displayList();
}
Copy link

Choose a reason for hiding this comment

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

  • Great job working on all the functionality but you still have one thing to change when i see the tasks on localstorage I can't see that it has indexes so whenever the user remove the task the indexes should be updated as required ✅⬇🔥🤩 so if you're deleting the first task index 1 from the list, the index of the next task(2) should set to 1) so kindly implement the indexes here to each task 🔥💯

image

  • I can see just completed and the name of the task
    image

Copy link

@Davidosky007 Davidosky007 left a comment

Choose a reason for hiding this comment

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

Hi @CesarHerr 👋,

Great work on making the changes requested by a previous reviewer 👏
You've done well implementing some of the requested changes, but there are still some which aren't addressed yet.

Highlights

  • No Linters error 💯🤩
  • Followed GitHub Flow 💯🤩
  • Great job working on the functionality 💯
  • Professional README ✅

Required Changes ♻️

Check the comments under the review.

Optional suggestions

Every comment with the [OPTIONAL] prefix won't stop the approval of this PR. However, I strongly recommend you to take them into account as they can make your code better. Some of them were simply missed by the previous reviewer and addressing them will really improve your application.

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 @Davidosky007 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.

modules/crud.js Outdated

add(text) {
const newTodo = new Todo(text);
newTodo.index = this.list.length;

Choose a reason for hiding this comment

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

  • As the previous CR stated your index if you're adding a 5th task to the list, the index of that task should equal 5 for example first todo == index 1, fourth todo == index 4, kindly fix this same thing also should be done when deleting if you're deleting the first task index 1 from the list, the index of the next task(2) should set to 1

Copy link

@emmiiorji emmiiorji left a comment

Choose a reason for hiding this comment

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

Hi @CesarHerr,

Status: Approved ✅

Your project is complete! There is nothing else to say other than... it's time to merge it :shipit:
Congratulations! 🎉

Good Highlights✔️

  • Requested changes have been implemented
  • Application works as expected

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.


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.

@CesarHerr CesarHerr merged commit 1012e40 into main May 4, 2023
5 checks passed
@CesarHerr CesarHerr deleted the crud branch June 11, 2023 22:44
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

4 participants