summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-12-10Merge branch 'master' into main-page-in-progresstest-mainTucker Evans
2019-12-10Update main page to put recipes three wide, and to workJacob
2019-12-09Merge pull request #19 from tuckerevans/elimTucker Evans
Elim
2019-12-09added additional functionality to cook pageschencej
2019-12-09made all data model member variables publicschencej
2019-12-09Merge pull request #16 from tuckerevans/backend_readme_updateTucker Evans
Fix backend readme to have correct JSON schema
2019-12-09Merge pull request #14 from tuckerevans/add_pagechrisundercoffer
Add Recipe Page
2019-12-09Fix backend readme to have correct JSON schemaTucker Evans
2019-12-09Initial commit for main page work in progress. Trying to figure outJacob
infinite scroll
2019-12-08added recipePass serviceschencej
2019-12-08Fix remove accessing private values of Recipe/Ingredient/StepTucker Evans
2019-12-08Add recipe is now sent to backend from add formTucker Evans
2019-12-08Add basic input validation to add recipe formTucker Evans
Validates: Name is required, Timer/Cook Time are digits, Amount/Servings are numbers (digits with optional decimal point).
2019-12-08Add add recipe form requires a recipe name before submittingTucker Evans
2019-12-08Fix UI of add formTucker Evans
Moves Add/Delete buttons around Puts Ingredient/Step parts together Changes Submit button look Removes JSON preview of form value object
2019-12-08Add removing Ingredients/Steps from add formTucker Evans
2019-12-08Fix set non-submit buttons type to "button"Tucker Evans
This stops these buttons from triggering the submit action.
2019-12-08Fix constructors for Step and Recipe data modelsTucker Evans
2019-12-08Add convert form data to Recipe ObjectTucker Evans
2019-12-08Add instruction for lists in formTucker Evans
The keyword and photos input now have a placeholder instructing the user to separate inputs with commas.
2019-12-08Add submit button to formTucker Evans
2019-12-08Add material look to Add Recipe formTucker Evans
2019-12-08Add basic form for adding a recipeTucker Evans
2019-12-08Add base for add-recipe componentTucker Evans
Just changes done by `ng g component add-recipe`
2019-12-07Merge pull request #12 from tuckerevans/REST-serviceTucker Evans
Backend REST Service implementation
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 more CORS related header managementTucker Evans
`Access-Control-Allow-Methods` & `Access-Control-Allow-Headers` headers are needed to make POST requests from angular.
2019-12-02Add getRecipe to backend serviceTucker Evans
2019-12-02Update angular dependenciesTucker 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 pull request #11 from tuckerevans/api_json=recipe_objectschencej
Api json and recipe object
2019-12-02Merge branch 'master' into api_json=recipe_objectTucker Evans
2019-12-02Fix remove Num from Step structTucker Evans
The index of the array can be used instead.
2019-12-02Merge pull request #10 from tuckerevans/elimTucker Evans
Elim
2019-12-02added app routing and cook page front endunknown
2019-12-02Merge pull request #9 from tuckerevans/backend-improvementschencej
Backend improvement (Refactoring)
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