summaryrefslogtreecommitdiff
path: root/recipeBuddy/src
AgeCommit message (Collapse)Author
2019-12-07Merge branch 'master' into JacobJacobJacob
2019-12-07Delete main page component that was no longer neededJacob
2019-12-07import { Component } from '@angular/core';chrisundercofferJacob
@Component({ selector: 'my-app', templateUrl: './app.component.html', styleUrls: [ './app.component.css' ] }) export class AppComponent { name = 'Angular'; addPage() { //Code here to move to add page } submitSearch() { //Code here to submit search } shoppingCart() { //Code here to move to shopping cart } } Updated main page to include just the top navigation
2019-12-07Updated recipe card component with new code. Essentially makes recipeJacob
card component the new main page. Left main page component in so that the original code is there, as well as the general outline for the other pages. Recipes still need to be loaded in from the backend, as they are currently pre-loaded. Also needs to be connected so the add, shopping cart, edit, and delete commands perform the correct tasks.
2019-12-07Merge commit 'cafe1b4fd3cc02554f44ffbaa8467d867a6838cb' into chrisundercofferTucker Evans
2019-12-07Added new recipe card and main page components. Added new files in eachJacob
of these components for html, css, ts, and spec.ts. HTML and CSS files were updated with code from stackblitz. Apparently this thing also thinks I changed the app.module.ts file, but I do not think I did.
2019-12-02Add deleteRecipe to backend serviceTucker Evans
2019-12-02Add updateRecipe to backendTucker Evans
2019-12-02Add createRecipe to backend serviceTucker Evans
2019-12-02Add getRecipe to backend serviceTucker Evans
2019-12-02Fix typos in DataModelsTucker Evans
Mostly variable name fixes and type fixes. Also delete unused DataModels
2019-12-02Fix renamed BackendServiceServiceTucker Evans
BackendService was created as BackendServiceService. This was renamed in all other files but not in backend.service.spec.ts.
2019-12-02Add getRecipes to BackendServiceTucker Evans
2019-12-02Add base code for BackendServiceTucker Evans
2019-12-02Merge branch 'master' into api_json=recipe_objectTucker Evans
2019-12-02added app routing and cook page front endunknown
2019-12-02Add variables from backendTucker Evans
2019-12-02Fix Steps as array in recipeTucker Evans
2019-12-02Fix Ingredients as array in recipeTucker Evans
2019-11-25Added data models.unknown
2019-09-14Initial commitschencej