Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-12-10 | Merge branch 'master' into main-page-in-progresstest-main | Tucker Evans | |
2019-12-10 | Update main page to put recipes three wide, and to work | Jacob | |
2019-12-09 | Merge pull request #19 from tuckerevans/elim | Tucker Evans | |
Elim | |||
2019-12-09 | added additional functionality to cook page | schencej | |
2019-12-09 | made all data model member variables public | schencej | |
2019-12-09 | Merge pull request #16 from tuckerevans/backend_readme_update | Tucker Evans | |
Fix backend readme to have correct JSON schema | |||
2019-12-09 | Merge pull request #14 from tuckerevans/add_page | chrisundercoffer | |
Add Recipe Page | |||
2019-12-09 | Fix backend readme to have correct JSON schema | Tucker Evans | |
2019-12-09 | Initial commit for main page work in progress. Trying to figure out | Jacob | |
infinite scroll | |||
2019-12-08 | added recipePass service | schencej | |
2019-12-08 | Fix remove accessing private values of Recipe/Ingredient/Step | Tucker Evans | |
2019-12-08 | Add recipe is now sent to backend from add form | Tucker Evans | |
2019-12-08 | Add basic input validation to add recipe form | Tucker Evans | |
Validates: Name is required, Timer/Cook Time are digits, Amount/Servings are numbers (digits with optional decimal point). | |||
2019-12-08 | Add add recipe form requires a recipe name before submitting | Tucker Evans | |
2019-12-08 | Fix UI of add form | Tucker Evans | |
Moves Add/Delete buttons around Puts Ingredient/Step parts together Changes Submit button look Removes JSON preview of form value object | |||
2019-12-08 | Add removing Ingredients/Steps from add form | Tucker Evans | |
2019-12-08 | Fix set non-submit buttons type to "button" | Tucker Evans | |
This stops these buttons from triggering the submit action. | |||
2019-12-08 | Fix constructors for Step and Recipe data models | Tucker Evans | |
2019-12-08 | Add convert form data to Recipe Object | Tucker Evans | |
2019-12-08 | Add instruction for lists in form | Tucker Evans | |
The keyword and photos input now have a placeholder instructing the user to separate inputs with commas. | |||
2019-12-08 | Add submit button to form | Tucker Evans | |
2019-12-08 | Add material look to Add Recipe form | Tucker Evans | |
2019-12-08 | Add basic form for adding a recipe | Tucker Evans | |
2019-12-08 | Add base for add-recipe component | Tucker Evans | |
Just changes done by `ng g component add-recipe` | |||
2019-12-07 | Merge pull request #12 from tuckerevans/REST-service | Tucker Evans | |
Backend REST Service implementation | |||
2019-12-07 | Merge branch 'master' into JacobJacob | Jacob | |
2019-12-07 | Delete main page component that was no longer needed | Jacob | |
2019-12-07 | import { Component } from '@angular/core';chrisundercoffer | Jacob | |
@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-07 | Updated recipe card component with new code. Essentially makes recipe | Jacob | |
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-07 | Merge commit 'cafe1b4fd3cc02554f44ffbaa8467d867a6838cb' into chrisundercoffer | Tucker Evans | |
2019-12-07 | Added new recipe card and main page components. Added new files in each | Jacob | |
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-02 | Add deleteRecipe to backend service | Tucker Evans | |
2019-12-02 | Add updateRecipe to backend | Tucker Evans | |
2019-12-02 | Add createRecipe to backend service | Tucker Evans | |
2019-12-02 | Add more CORS related header management | Tucker Evans | |
`Access-Control-Allow-Methods` & `Access-Control-Allow-Headers` headers are needed to make POST requests from angular. | |||
2019-12-02 | Add getRecipe to backend service | Tucker Evans | |
2019-12-02 | Update angular dependencies | Tucker Evans | |
2019-12-02 | Fix typos in DataModels | Tucker Evans | |
Mostly variable name fixes and type fixes. Also delete unused DataModels | |||
2019-12-02 | Fix renamed BackendServiceService | Tucker Evans | |
BackendService was created as BackendServiceService. This was renamed in all other files but not in backend.service.spec.ts. | |||
2019-12-02 | Add getRecipes to BackendService | Tucker Evans | |
2019-12-02 | Add base code for BackendService | Tucker Evans | |
2019-12-02 | Merge pull request #11 from tuckerevans/api_json=recipe_object | schencej | |
Api json and recipe object | |||
2019-12-02 | Merge branch 'master' into api_json=recipe_object | Tucker Evans | |
2019-12-02 | Fix remove Num from Step struct | Tucker Evans | |
The index of the array can be used instead. | |||
2019-12-02 | Merge pull request #10 from tuckerevans/elim | Tucker Evans | |
Elim | |||
2019-12-02 | added app routing and cook page front end | unknown | |
2019-12-02 | Merge pull request #9 from tuckerevans/backend-improvement | schencej | |
Backend improvement (Refactoring) | |||
2019-12-02 | Add variables from backend | Tucker Evans | |
2019-12-02 | Fix Steps as array in recipe | Tucker Evans | |
2019-12-02 | Fix Ingredients as array in recipe | Tucker Evans | |