Skip to content

To do list branch#1

Open
chuaindia wants to merge 46 commits into
mainfrom
TO-DO-LIST-BRANCH
Open

To do list branch#1
chuaindia wants to merge 46 commits into
mainfrom
TO-DO-LIST-BRANCH

Conversation

@chuaindia

Copy link
Copy Markdown
Owner

The following features are incorporated :

  • The index.html file is created.
  • An empty To Do List placeholder is created. A template is created using the HTML Webpack Plugin.
  • A index.js file is created for the list elements contained to do tasks having their required key.
  • A style.css is created and rules for the To-Do List are set.
  • All the source files (index.html, index.js, and style.css) are located in the /src directory.
  • The folder /dist is created for necessary action.

@github-pages
github-pages Bot temporarily deployed to github-pages October 5, 2022 13:56 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 5, 2022 16:17 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 5, 2022 16:33 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 5, 2022 16:44 Inactive

@ShahierNashaat ShahierNashaat left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Hi @chuaindia,

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!

To Highlight 💯

  • Correct use of GitFlow ✔️
  • Descriptive commit messages ✔️
  • Professional looking pull request ✔️
  • Your readme looks professional ✔️
  • Your code is clean and well documented ✔️

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.

Comment thread package.json Outdated
Comment on lines +19 to +46
"homepage": "https://github.com/chuaindia/To-Do-List#readme"
}

@ShahierNashaat ShahierNashaat Oct 5, 2022

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

  • Kindly notice that the Webpack dev server is set up and running with no errors.
"devDependencies": {
    "webpack": "^5.60.0",
    "webpack-cli": "^4.9.1",
    "webpack-dev-server": "^4.3.1"
},

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

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

This is also included in the package.json file

Comment thread package.json Outdated
Comment on lines +6 to +8
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},

@ShahierNashaat ShahierNashaat Oct 5, 2022

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

  • Also here you should select the webpack serv when running npm start .
"scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "watch": "webpack --watch",
    "start": "webpack serve --open",
    "build": "webpack"
  },

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

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

This is done accordingly.

Comment thread src/index.js Outdated
import * as stat from './status.js';
import './style.css';

let list = [];

@ShahierNashaat ShahierNashaat Oct 5, 2022

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

  • Kindly notice that the array should have some simple to do tasks.
const list = [
  {
    description: 'An example description in string',
    completed: false,
    index: 10,
  },
];

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

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

List elements with proper 'description', 'completed' and 'index' is included in src/index.js.

@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 08:18 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 09:15 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 09:18 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 09:24 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 09:36 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 11:16 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 11:21 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 11:28 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 11:33 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 11:38 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 11:44 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 11:54 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 12:04 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 12:12 Inactive

@ichala ichala left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Hi @chuaindia ,

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

the-simpsons-homer-simpson

To Highlight 🎉

  • Changes Implemented

Required Changes ♻️

🛑🛑 Your list is not being rendered in the UI, kindly try to fix the issues in your index.js file

image

image

Optional suggestions

  • N/A

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.

@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 13:31 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 6, 2022 14:29 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 7, 2022 13:49 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 7, 2022 13:52 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 7, 2022 13:53 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 7, 2022 13:57 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 7, 2022 13:58 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 7, 2022 14:00 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 7, 2022 14:06 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 7, 2022 14:12 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 7, 2022 14:26 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 7, 2022 14:33 Inactive
@github-pages
github-pages Bot temporarily deployed to github-pages October 7, 2022 14:40 Inactive
@chuaindia

Copy link
Copy Markdown
Owner Author

The error is resolved. The To-Do List is available in the console. The screenshot is attached herewith.

https://user-images.githubusercontent.com/106825373/194582194-34738f87-71b7-4145-85f6-1d4b9106af1c.png

@levy002 levy002 left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Hello @chuaindia

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

Status: APPROVED 🔥 🔥

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

@chuaindia

Copy link
Copy Markdown
Owner Author

Thank you very much for the review.

@github-pages
github-pages Bot temporarily deployed to github-pages October 10, 2022 16:03 Inactive
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.

5 participants