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

Milestone1 list structure #1

Merged
merged 5 commits into from Feb 15, 2022
Merged

Milestone1 list structure #1

merged 5 commits into from Feb 15, 2022

Conversation

miftah1991
Copy link
Owner

This is the first milestone of the to-do list project in this milestone below features are added.

  • Set up webpack for the project
  • HTML Structure for adding todo list with placeholder
  • JS object to list todo items
  • Added linters

Copy link

@BrianSammit BrianSammit left a comment

Choose a reason for hiding this comment

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

CHANGES REQUIRED 🔴 🛑

Hello @miftah1991, great job you are doing so far in this project. 💯

TO HIGHLIGHT:

  • Your project is professional
  • Your repo is professional
  • Well structured files
  • Your app is working properly

However, there are a few changes to make to move to the next project 🛠️ . Keep working hard 💪 💻

Required Changes ♻️

See my inline comment to know what changes are needed. 👇 👀

Please make these required changes and send it again for another review 👍 💪
Feel free to leave any questions or comments in the PR thread if something is not 100% clear.

HAPPY CODING!!! 😄

cat

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.

src/index.js Outdated
Comment on lines 31 to 45
const tasksDisplay = () => {
const inputItem = document.querySelector('#input-item');
tasks.reverse().forEach((task) => {
const html = `
<li class="task-${task.index}">
<div class="task">
<input type="checkbox" name="task"> ${task.description}
</div>
<i class="fas fa-ellipsis-v three-dot-icon"></i>
</li>
`;
inputItem.insertAdjacentHTML('afterend', html);
});
};
tasksDisplay();

Choose a reason for hiding this comment

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

  • It would be better if the tasks appear in order of the index.

Capture

Currently, your tasks are in disorder. Kindly fix this minor issue.

Capture

Copy link

@FrederickMih FrederickMih left a comment

Choose a reason for hiding this comment

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

Hi @miftah1991 ,

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

Cheers and Happy coding!👏👏👏

Feel free to leave any questions or comments in the PR thread if something is not 100% clear.


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.

@miftah1991 miftah1991 merged commit c12fe65 into main Feb 15, 2022
@miftah1991
Copy link
Owner Author

@BrianSammit , @FrederickMih

Thanks for your review.

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