summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/add-recipe/add-recipe.component.html
blob: b4f70ced8bfd673464730dc11209613acbe867dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<form [formGroup]="recipeForm" class="form">
<h2>Add Recipe</h2>
	<mat-form-field class="full-width">
		<input matInput placeholder="Name" type="text" formControlName="recipeName">
	</mat-form-field>
	<mat-form-field class="full-width">
		<textarea matInput placeholder="Description"
		formControlName="desc"> TEST </textarea>
	</mat-form-field>
	<mat-form-field class="full-width">
		<input matInput placeholder="Servings" type=text formControlName="servingSize">
	</mat-form-field>
	<mat-form-field class="full-width">
		<input matInput placeholder="Cooking Time" type="text" formControlName="cookTime">
	</mat-form-field>
	<mat-form-field class="full-width">
		<input matInput placeholder="Keywords/Tags" type="text" formControlName="tags">
	</mat-form-field>
	<mat-form-field class="full-width">
		<input matInput placeholder="Photos (URLS)" type="text" formControlName="photos">
	</mat-form-field>

	<div formArrayName="ingredients">
		<h3>Ingredients</h3>
		<button mat-mini-fab color="primary" (click)="addIngredient()">
			<mat-icon>add</mat-icon>
		</button>
		<div *ngFor="let address of ingredients.controls; let i=index">
			<div [formGroupName]="i">
				<h4>Ingredient {{ i + 1 }}</h4>
				<mat-form-field class="full-width">
					<input matInput placeholder="Name" type="text"
					formControlName="ingrName">
				</mat-form-field>
				<mat-form-field class="full-width">
					<input matInput placeholder="Amount" type="text"
					formControlName="amount">
				</mat-form-field>
				<mat-form-field class="full-width">
					<input matInput placeholder="Units" type="text"
					formControlName="units">
				</mat-form-field>
			</div>
		</div>
	</div>

	<div formArrayName="steps">
		<h3>Steps</h3>
		<button mat-mini-fab color="primary" (click)="addStep()">
			<mat-icon>add</mat-icon>
		</button>
		<div *ngFor="let address of steps.controls; let i=index">
			<div [formGroupName]="i">
				<h4>Step {{ i + 1 }}</h4>
				<mat-form-field class="full-width">
					<textarea matInput placeholder="Instructions" type="text" formControlName="instruct">
					</textarea>
				</mat-form-field>
				<mat-form-field class="full-width">
					<input matInput placeholder="Timer" type="text"
					formControlName="timer">
				</mat-form-field>
			</div>
		</div>
	</div>
</form>
<p>
Value: {{ recipeForm.value | json }}
</p>