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

Code for review Sofia #27

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

Code for review Sofia #27

wants to merge 37 commits into from

Conversation

tildetilde
Copy link

No description provided.

tildetilde and others added 30 commits March 4, 2025 19:02
Copy link

@solen80a solen80a left a comment

Choose a reason for hiding this comment

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

Love your really nice looking images 😍 and your page is beautiful as always, really good job!
I like that you get to the recipe link when you click the recipe card.
Infinite scroll is really cool.
Gif´s are wonderful for error messages 😂

Added some comments in the code.

script.js Outdated
cacheTimestamp &&
Date.now() - cacheTimestamp < cacheExpiry
) {
console.log("Using cached recipes");

Choose a reason for hiding this comment

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

Consider removing console.logs in finished projects, good practice.

script.js Outdated
}

const data = await response.json();
console.log("Fetched new recipes from API");

Choose a reason for hiding this comment

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

Consider removing console.logs in finished projects, good practice.

}

try {
const response = await fetch(API_URL);

Choose a reason for hiding this comment

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

I never get new fetched recipes from the API, only the same cached everytime. Maybe this fetch need to be handled before the cached ones?

).map((el) => el.value),
};

return recipes.filter((recipe) => {

Choose a reason for hiding this comment

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

Seems to be something wrong with the diets/cuisine filter. If I check any other filter then Vegan I get an error, even when I see there is a gluten-free at display. Non of the cuisine filters get a match.

(High to Low)</label
>
<label
><input type="radio" name="sort" value="popularity-desc" />

Choose a reason for hiding this comment

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

I suggest you add (High to Low) on populaity as the other sorting options for consistency.

><input type="radio" name="sort" value="popularity-desc" /> Popularity (High to Low)</label >

display: flex;
}

.random-btn:hover {

Choose a reason for hiding this comment

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

Hover does not seem to work.

z-index: 2;
}

.filter-dropdown .dropdown-btn:hover {

Choose a reason for hiding this comment

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

Hover does not seem to work.

z-index: 2;
}

.sort-dropdown .dropdown-btn:hover {

Choose a reason for hiding this comment

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

Hover does not seem to work.

border: #e9e9e9 solid 2px;
}

.recipe-card:hover {

Choose a reason for hiding this comment

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

Hover does not seem to work.


<section class="random-button-container">
<button class="random-btn">
<span class="material-icons">shuffle</span>

Choose a reason for hiding this comment

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

The random button was not obvious for me. I suggest you add the text "random" for clarification and consistency as the other buttons.

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.

Wow, so nicelooking styling! I can tell you spent time on it. However, there’s a small bug appearing in mobile when opening the sorting dropdown - then we get a little side scroll. This needs to be fixed in order to be approved.

Your JavaScript looks good and I think you’ve chosen descriptive names for your functions 👍

PS. Hehe loving the empty state 😄

@tildetilde
Copy link
Author

Thank you so much for the feedback!
I've tried reproducing the issue by testing various mobile sizes, slowing down the interaction, and adding console.logs to track behavior — but so far, I haven’t been able to observe any horizontal scrolling myself.
If you have any more details (e.g. device, browser, or a video), I'd be super grateful — happy to dig deeper!

@HIPPIEKICK
Copy link
Contributor

Thank you so much for the feedback! I've tried reproducing the issue by testing various mobile sizes, slowing down the interaction, and adding console.logs to track behavior — but so far, I haven’t been able to observe any horizontal scrolling myself. If you have any more details (e.g. device, browser, or a video), I'd be super grateful — happy to dig deeper!

Recorded a little video to showcase, hope this helps!
https://github.com/user-attachments/assets/7368b0eb-4456-4ba2-ae1a-38bef2a99468

@tildetilde
Copy link
Author

Thanks a lot! That was really helpful. I’ve implemented a fix by introducing a design-driven breakpoint at 361px, since that’s where the layout started to break. The update keeps the dropdowns and recipe cards intact without triggering horizontal scroll. It holds up visually down to 314px, which is below the standard 320px. Curious if you think it’s worth optimizing for even smaller widths too? 🙌

@tildetilde tildetilde requested a review from HIPPIEKICK April 1, 2025 12:12
# 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