Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Tavan's Recipe Library #28

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open

Tavan's Recipe Library #28

wants to merge 26 commits into from

Conversation

T-Thiry
Copy link

@T-Thiry T-Thiry commented Mar 17, 2025

Website contains following for now:

  • Filtering options based on cuisine
  • Sorting options based on ascending and descending cooking time
  • Random recipe generator

Error message will be added later

Link to website: https://tt-recipe-library.netlify.app

Tavan Thiry added 21 commits March 5, 2025 17:36
… when user clicks on the filtering buttons
Copy link

@Bianka2112 Bianka2112 left a comment

Choose a reason for hiding this comment

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

I think you did a great job! I like the colors and styling you used. I am super impressed with how clean your code looks and simple it is to read. I think there's only 2 details to update to meet the requirements: a message when no recipes match a filter and if your API limit is reached. But otherwise I think you got everything required.

Another detail if you have time is getting the buttons to clear when others are selected and adding some type of backup data if your API limit is reached but I do not think (I think) these are requirements, just good to haves.

In all cases, congrats on a nice site!

script.js Outdated
Comment on lines 19 to 22
// Filter valid recipes
allRecipes = data.recipes.filter((recipe) => {
return recipe.cuisines.length > 0 && recipe.image && recipe.title;
});

Choose a reason for hiding this comment

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

I like how you filtered your data to get matches from the beginning! This looks super neat and a great implementation.

Copy link
Author

@T-Thiry T-Thiry Mar 23, 2025

Choose a reason for hiding this comment

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

Thank you! I decided to filter it from the beginning. Wasn't sure if this was the right approach but went for it.

Comment on lines +36 to +42
const oldContainer = document.getElementById("recipes-container");
if (oldContainer) {
oldContainer.remove();
}

const container = document.createElement("div");
container.id = "recipes-container";

Choose a reason for hiding this comment

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

I know you mentioned this- but just wondering if its because you have an html written 'recipes-container'? Maybe you dont need it anymore if you have all that old HTML code commented out?

Comment on lines +56 to +61
<ul>
${Array.isArray(recipe.extendedIngredients)
? recipe.extendedIngredients.map((item) => `<li>${item.original}</li>`).join("")
: "<li>No ingredients available</li>"
}
</ul>

Choose a reason for hiding this comment

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

Again, love how you wrote this code. It is SO NEAT and minimal 😍 I might have to refactor mine lol. This is very pleasing to find a super easy way to code this out and it is super simple to understand. 🙌

Copy link
Author

@T-Thiry T-Thiry Mar 23, 2025

Choose a reason for hiding this comment

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

Thank you!🙌 I'm glad to hear that since I think I always try to keep it minimal and simple to understand.

script.js Outdated
Comment on lines 106 to 108
// Random recipe button
document.querySelector('.random-button').addEventListener('click', (event) => {
document.querySelectorAll('button').forEach(btn => btn.classList.remove('selected'));

Choose a reason for hiding this comment

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

I know we discussed the random button not reset/clear other selected buttons. Two notes here:

  1. I see that maybe you've mixed using "", '' double quotes in codes above and single quotes here. Not sure that has any effect, but could help in maintaining consistency on one or the other.
  2. Could it be that 'button' is not selecting all your buttons? I've heard that adding type=button is good practice especially for buttons that do not submit anything to the page. Like we are doing here. Another idea is in my code I wrote a global helper function to clear buttons that I could call later throughout my code and maybe that's another approach to consider here. But I find your code extremely efficient already, so I think you know better than I!!

Copy link
Author

@T-Thiry T-Thiry Mar 23, 2025

Choose a reason for hiding this comment

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

It is good that you're pointing this out since I myself haven't even noticed the inconsistent use of " " and ' '. Also about the global helper function, I haven't thought of that. Tried to solve it in other ways but not this one. Will also take another look at the type=button. Thank you so much for the help!

style.css Outdated
}
}

/* Media Querie Mobile Device */

Choose a reason for hiding this comment

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

I can recommend renaming the comment to quickly see which media query goes to which type of device, since these dimensions are more likely a computer/laptop rather than mobile device. But great job, again, on super clean and concise coding!

Copy link
Author

Choose a reason for hiding this comment

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

Thank you! Good point, forgot to change the names!

Copy link
Contributor

@HIPPIEKICK HIPPIEKICK left a comment

Choose a reason for hiding this comment

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

I happened to watch your site on my big screen (that is bigger than 1600px) and I noticed you don’t have a grid on bigger screens. Although not a requirement, you might want to look into just extending the media query so that your grid is kept on bigger screens as well.

Apart from that I think your site looks good and the code as well ⭐ Keep up the good work!

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants