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

Recipe library - pull request #31

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

Conversation

MalLunBar
Copy link

Still have some work to do and haven't focused too much on the styling. Would love any feedback I can get on this area anyways, of course. Please ignore the gray hearts. My plan is to save some recipies in a/(another) local storage so that they can save their favourite recipie. But yeah, It's far from done yet x )

Let me know if you have any questions!

…dd function so that all-button is unchecked when others are
…ies to be able to filter on several filters at the same time.
…-object rather than string of id's or diets, like it was before
Copy link

@osckli990 osckli990 left a comment

Choose a reason for hiding this comment

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

Hello! Didn't find explicit issues, but left some thoughts and compliments.

index.html Outdated

Choose a reason for hiding this comment

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

I love how the recipes are displayed, being kinda "miss-matched" instead of in uniform rows

style.css Outdated

Choose a reason for hiding this comment

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

A simple and sweet design

-Use locar storage instead of fetching every time, CHECK
-Add filter for Cuisine
-Add the source and pointer for hovering on recipes CHECK
-Show Loading satate while loading data. CHECK

Choose a reason for hiding this comment

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

Just had a question about this since it's checked. I was not able to view this state, altough that might simply be because you use local storage. Idk, just a thought!

Copy link
Author

Choose a reason for hiding this comment

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

I did comment out the local storage to try it and then it worked so I hope it still does xD

script.js Outdated
})
}

//Här börjar allt från att sidan laddas

Choose a reason for hiding this comment

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

I don't know if comments count, but try and keep it in english

Copy link
Author

Choose a reason for hiding this comment

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

ooh really good point! I missed that!

Comment on lines +169 to +174
const randomRecipe = () => {
const randomIndex = Math.floor(Math.random() * workingArray.length)
workingArray = [workingArray[randomIndex]]
loadRecipes(workingArray)
workingArray = [...allRecipes]
}

Choose a reason for hiding this comment

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

after loading a random recipe, workingArray is set back to all recipes. While it only shows one recipe, internally all of them are loaded. Could be re-written like this i think:

const randomRecipe = () => {
const randomIndex = Math.floor(Math.random() * workingArray.length)
const selectedRecipe = workingArray[randomIndex]

loadRecipes([selectedRecipe])
};

Copy link
Author

Choose a reason for hiding this comment

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

You're absolutely right! The reason why I did it like that is because I wanted the user to get a completly random recipe from "all" recipes rather than a random recipe of for example vegan recipes. But now when you mentioned it might make more sense to get a random recipe WITH a filter if the user wants that. Thanks you <3

Comment on lines +147 to +149
workingArray = activeFilters.length > 0
? workingArray.filter(recipe => activeFilters.every(filter => recipe[filter] === true))
: [...allRecipes];

Choose a reason for hiding this comment

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

ChatGPT flags these lines and seems to think allRecipes should be filtered instead of workingArray, as it can cause issues if multiple filters are selected in succesion. Altough, i don't understand his logic, so i'll leave it as a thought

Copy link
Author

Choose a reason for hiding this comment

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

haha ok interesting! Will have a look at that thanks

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.

Nice and descriptive function and variable names 👍 Except for maybe anyChecked and anyCheckedNew. They could probable be named something more explanatory?

I can’t see you’ve met this requirement: “Your page should have an empty state, e.g. if there are no recipes matching the filter - show a meaningful message to the user”.

I can see you’ve followed the design, but if you have some more time I would love to see some more space in your styling. Have another look at the design and add some “air”. I think that thing alone will make your page look a lot nicer 😇

The instructions expansion doesn’t work quite as expected - it looks a little wonky and make things jump around a bit. I’ll share a video to showcase.

Changes requested

  • Missing requirement: empty state

# 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