Open
Conversation
API MuncherWhat We're Looking For
|
droberts-sea
reviewed
May 8, 2018
| root 'grub#new' | ||
| get '/recipe', to: 'grub#index', as: 'grub_list' | ||
| get '/recipes/:uri', to: 'grub#show', as: 'grub' | ||
| get '/recipe/new', to: 'grub#new' |
There was a problem hiding this comment.
Two things here:
- I'm not sure that
newis a good description of what this route is doing - something non-RESTful likesearchmight be a better name - Could you use
resourcesfor the index and show routes?
| rescue EdamamApiWrapper::RecipeError => error | ||
| flash[:status] = :failure | ||
| flash[:message] = "API called failed: #{error}" | ||
| redirect_back fallback_location: root_path |
There was a problem hiding this comment.
Here you add an error to the flash, but the code in your view to display flash errors doesn't match this format. This means that the user gets redirected to the root page with no explanation of what went wrong - not a great experience.
| APP_ID = ENV["APP_ID"] | ||
| BASE_URL = "https://api.edamam.com/search?" | ||
| URI_BASE = "http://www.edamam.com/ontologies/edamam.owl#recipe_" | ||
| FROM = 1 |
There was a problem hiding this comment.
BASE_URL and URI_BASE are very visually similar, and it's not immediately clear how they're different. Could you rename one or both to something more distinct?
| response = HTTParty.get(encoded_uri) | ||
|
|
||
| raise StandardError.new("Could not find recipe") if response == [] | ||
|
|
There was a problem hiding this comment.
You do a good job of checking for errors in this file!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
API Muncher
Congratulations! You're submitting your assignment!
Comprehension Questions