summaryrefslogtreecommitdiff
path: root/view/html/recipe-edit.html
blob: 33661c364aa8780b894b82f550f17614112ed331 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{{define "recipe-edit"}}
<!DOCTYPE html>
<html>
	{{ template "head" }}
	<body>
		<header>
			{{ template "nav" }}
			<h1>Recipe editor</h1>
		</header>
		<main>
			<form action="/recipe/{{.Id}}">
				<input type="hidden" name="id" value="{{.Id}}">

				<p>
					<label>Title</label>
					<input type="text" name="title" value="{{.Title}}">
				</p>

				<p>
					<label>Portions</label>
					<input type="number" name="portions" value="{{.Portions}}">
				</p>

				<p>
					<label>URL</label>
					<input type="text" name="url" value="{{.Url}}">
				</p>

				<p>
					<label>Notes</label>
					<textarea name="notes" rows="4" cols="50">{{.Notes}}</textarea>
				</p>{{range .Steps}}

				<section>
					<label>Text</label>
					<textarea rows="4" cols="50">{{.Text}}</textarea>
				</section>{{end}}

				<button type="submit">save</button>
				<button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button>
			</form>
		</main>
		{{ template "footer" }}
		<script src="/static/view/static/ceres.js"></script>
		<script>
			var forms = document.querySelectorAll('form');
			forms.forEach(form => {
				form.addEventListener('submit', updateRecipe);
			});

			function updateRecipe(event) {
				event.preventDefault();

				const form = event.target;
				const url = form.getAttribute('action');
				const data = new FormData(form);
				let obj = Object.fromEntries(data.entries());

				obj.steps = [];
				const steps = document.querySelectorAll('form section textarea');
				steps.forEach(step => {
					let s = {};
					s.text = step.value;
					obj.steps.push(s);
				});

				fetch(url, {
					method: 'POST',
					headers: {'Content-Type': 'application/json'},
					body: JSON.stringify(obj)
				})
				.then(response => {
					if (response.ok) {
						console.log('Form submitted successfully');
					} else {
						console.error('Form submission failed');
					}
					if (response.redirected) {
						window.location.href = response.url;
					}
				})
				.catch(error => {
					console.error('Network error:', error);
				});
			}
		</script>
	</body>
</html>
{{end}}