Skip to content

Conversation

carreraprogrammer
Copy link
Owner

@carreraprogrammer carreraprogrammer commented Aug 12, 2023

RAILS GROUP PROJECT

Hello, I hope you are doing well !! ✋

For this project, we created a recipes app following the next requirements:

  • You should follow the layout of the wireframes provided. You should personalize the rest of the design including colors, typographies, spacings, etc.
  • Login page and registration page:
    • Should be built with Devise.
  • Food list (only for a group that has less than 3 members):
    • Should display a list of food added by the logged-in user as in the wireframe (display also quantity of a given food).
    • Should lead to a form that allows users to add new food.
  • Recipes list:
    • Should display a list of recipes created by the logged-in user as in the wireframe.
    • Should lead to recipe details.
    • If the user is the owner of the recipe, should allow the user to delete it.
  • Public recipe list:
    • Should display a list of all public recipes ordered by newest as in the wireframe.
    • Should lead to recipe details.
  • Recipe details:
    • Should display a toggle button that allows for a recipe to be made public or private.
    • If the recipe is public or the user is the owner of the recipe, should display the recipe details as in the wireframe.
    • If the user is the owner of the recipe, should lead to the form that allows the user to add new food.
  • General shopping list view (only for a group that has less than 3 members):
    • Should show the list of food that is missing for all recipes of the logged-in user (compare the list of food for all recipes with the general food list of that user).
    • Should count the total food items and total price of the missing food.
  • Make sure there are no N+1 queries happening.
  • Create a navigation menu that allows users to open all of the pages you created.
  • Write unit and integration tests

Happy Coding !! 🚀 🔥

Grabacion.de.pantalla.desde.12-08-23.19.12.31.webm

Copy link

@laiifuu laiifuu left a comment

Choose a reason for hiding this comment

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

Hi team 👋

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

so-close

Highlights

  • Nice UI 👍
  • Registration and login implemented with devise 👍
  • Database schema matches the ERD provided 👍
  • Users can add recipes and foods and can make recipes public or private 👍
  • Associations between models were made correctly 👍

Required Changes ♻️

Check the comments under the review.

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.

<p class="recipeDescription"><%= @recipe.description %></p>
<%if recipe_author?(@recipe.user)%>
<button ><%= link_to "Generate Shopping List", shopping_list_path %></button>
<button id="addIngredientButton">Add Ingredient</button>
Copy link

Choose a reason for hiding this comment

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

As mentioned in the requirements, this button should lead to the form to create a new food if the user is the owner of the recipe.

<p class="cookingTime"><strong>Cooking Time: </strong> <%= @recipe.cooking_time_minutes %></p>
<p class="recipeDescription"><%= @recipe.description %></p>
<%if recipe_author?(@recipe.user)%>
<button ><%= link_to "Generate Shopping List", shopping_list_path %></button>
Copy link

Choose a reason for hiding this comment

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

When accessing a public recipe, the user should be able to generate a shopping list even if they're not the owner of the recipe. So this button should be visible for all users.

Make generate shopping list available for public recipes and add ingr…
Copy link

@Lizdev-05 Lizdev-05 left a comment

Choose a reason for hiding this comment

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

Hi @carreraprogrammer ,

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

✔️ Professional Readme file 👍
✔️ Good commit history 👍
✔️ No linter error 👍

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

Copy link

@Lizdev-05 Lizdev-05 left a comment

Choose a reason for hiding this comment

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

Hi @carreraprogrammer and @Cisco-the-wayword ,

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

Highlights

✔️ Professional Readme file 👍
✔️ Good commit history 👍
✔️ No linter error 👍

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.

@carreraprogrammer carreraprogrammer merged commit 1316d3a into main Aug 13, 2023
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.

4 participants