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

List structure #2

Merged
merged 14 commits into from Apr 29, 2022
Merged

List structure #2

merged 14 commits into from Apr 29, 2022

Conversation

emiliazm
Copy link
Owner

Hello!

These are the changes that I implemented:

  • 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 editing task descriptions.
  • Implement a function for deleting a task (remove an element from the array).
  • By default new tasks have the property completed set to false and the property index set to the value of the new array length
  • Deleting a task updates all remaining items' indexes, so they represent the current list order and are unique.
  • All changes to the To-Do List are saved in local storage.

@github-pages github-pages bot temporarily deployed to github-pages April 28, 2022 20:55 Inactive
Copy link

@phelian23 phelian23 left a comment

Choose a reason for hiding this comment

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

Hi @emiliazm,

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

✅ Linters are passing
✅ Descriptive pull request
✅ Good commit messages

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:

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.

@@ -0,0 +1,20 @@
let tasks = [];
export const getTasks = () => tasks;

Choose a reason for hiding this comment

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

  • I can see that you try to implement the get task function here, however it is not working as it should, because every time it is called, what you get is an empty array. Kindly make sure it is getting the task from the local storage.

liToTasks.innerHTML = insideUl;
liToTasks.querySelector('.lb-task').onclick = uiClickLabel;
liToTasks.querySelector('.ta-task').onblur = uiBlurTextArea;
liToTasks.querySelector('.trash').onclick = uiRemoveTask;

Choose a reason for hiding this comment

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

  • [Optional] It will be nice if the delete button is visible on the page without editing or when the three dots is hovered. presently, one can only see the delete button when editing.

Comment on lines +40 to +50
const uiCreateTask = (task) => {
const tasks = getTasks();
tasks.sort((a, b) => a.index - b.index);
const ulList = document.querySelector('.check-list');
const insideUl = `
<input id="ck-${task.id}" type="checkbox" name="checkBox">
<label class="lb-task" id="lb-${task.id}" for="ta-${task.id}">${task.description}</label>
<textarea id="ta-${task.id}" class="ta-task" name="edit-task">${task.description}</textarea>
<span class="dots material-symbols-outlined">more_vert</span>
<span class="trash material-symbols-outlined">delete</span>
`;

Choose a reason for hiding this comment

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

  • Kindly make sure that when the page reloads, the saved todo is rendered

@emiliazm
Copy link
Owner Author

Hello @phelian23 ! Thank you for your comments!

These are the changes that I implemented:

  • Add functions to load tasks and display tasks in order to save the elements and Fix page reload issue.

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 @emiliazm, 👋

Highlights 👏

  • 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.

@emiliazm emiliazm merged commit 8669132 into master Apr 29, 2022
@emiliazm emiliazm deleted the list-structure branch April 29, 2022 12:46
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