blob: 392529307f148085a2a6f2a786b4edaa3995cd3e (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
{{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}}" required>
</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>
<div id="steps">{{range .Steps}}
<section>
<label>Text</label>
<textarea rows="4" cols="50">{{.Text}}</textarea>
<button type="button" onclick="parentNode.remove();">remove</button>
</section>{{end}}
</div>
<button type="button" onclick="addNewStep();">add step</button>
<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);
});
}
function addNewStep() {
var newStep = document.createElement("section");
newStep.innerHTML = `
<label>Text</label>
<textarea rows="4" cols="50"></textarea>
<button type="button" onclick="parentNode.remove();">remove</button>
`;
var steps = document.querySelector("#steps");
steps.appendChild(newStep);
}
</script>
</body>
</html>
{{end}}
|