-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodifierRecette.js
166 lines (155 loc) · 6.18 KB
/
modifierRecette.js
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
function getUtilisateur(){
if(sessionStorage.getItem('email')==null)
{
confirm("Vous n'êtes pas connecté! Veuillez vous connecter.")
window.location.href='loginPage.html';
}
}
window.onpageshow = function(event) {
if (event.persisted) {
window.location.reload();
}
};
getUtilisateur();
const urlParams = new URLSearchParams(window.location.search);
const recetteId = urlParams.get('no');
getInfo();
async function getInfo()
{
if (recetteId) {
const request = `/projet1/api/recette/${recetteId}`;
try {
const response = await fetch(request);
if (response.ok) {
const data = await response.json();
addInfo(data);
} else {
console.error('API request failed:', response.status);
}
} catch (error) {
console.error('Error fetching data:', error);
}
} else {
console.error('No number provided.');
}
}
async function addInfo(data)
{
const nom = document.getElementById("nom");
const pays = document.getElementById("origine");
const regime = document.getElementById("regime");
const typeAliment = document.getElementById("type");
const description = document.getElementById("description");
const recette = document.getElementById("recette");
const img = document.getElementById("img");
const email= sessionStorage.getItem('email');
const list= document.getElementById("list");
const tempsPreparation =document.getElementById("tempsPreparation");
const tempsCuisson = document.getElementById("tempsCuisson");
const portion = document.getElementById("portion");
nom.value = data.nom;
pays.value = data.origine;
regime.value = data.regime;
typeAliment.value = data.type;
description.value = data.description;
recette.value = data.etape;
img.value = data.src;
tempsPreparation.value = data.preparation;
tempsCuisson.value = data.cuisson;
portion.value = data.portion;
for (let i = 0; i < data.ingredients.length; i++) {
const list = document.getElementById("list");
const li = document.createElement("li");
const textarea = document.createElement("textarea");
textarea.setAttribute("class", "ingredient");
textarea.value = data.ingredients[i];
const textarea2= document.createElement("textarea");
textarea2.setAttribute("class", "quantite");
textarea2.value = data.quantite[i];
li.appendChild(textarea);
li.appendChild(textarea2);
list.appendChild(li);
}
document.querySelector("#btnAdd").addEventListener("click", async()=>{
const list = document.getElementById("list");
const li = document.createElement("li");
const textarea = document.createElement("textarea");
textarea.setAttribute("class", "ingredient");
const textarea2= document.createElement("textarea");
textarea2.setAttribute("class", "quantite");
li.appendChild(textarea);
li.appendChild(textarea2);
list.appendChild(li);
});
document.querySelector("#btnRemove").addEventListener("click", async()=>{
const list = document.getElementById("list");
if(list.children.length>0){
list.removeChild(list.lastChild);
}
});
document.querySelector("#btnSend").addEventListener("click", async()=>{
if (confirm("Voulez-vous sauvegarder votre recette?")) {
const nom = document.getElementById("nom").value;
const origine = document.getElementById("origine").value;
const regime = document.getElementById("regime").value;
const type = document.getElementById("type").value;
const description = document.getElementById("description").value;
const recette = document.getElementById("recette").value;
const img = document.getElementById("img").value;
const email= sessionStorage.getItem('email');
const tempsPreparation =document.getElementById("tempsPreparation").value;
const tempsCuisson =document.getElementById("tempsCuisson").value;
const portion = document.getElementById("portion").value;
const id = parseInt( recetteId);
const listItems = document.querySelectorAll("#list li textarea.ingredient");
const ingredients = [];
listItems.forEach((item) => {
ingredients.push(item.value.toLowerCase());
});
console.log("Data in each item:", ingredients);
const listItems2 = document.querySelectorAll("#list li textarea.quantite");
const quantite= [];
listItems2.forEach((item) => {
quantite.push(item.value.toLowerCase());
});
console.log("Data in each item:", quantite);
if(nom!=null&&description!=null&&recette!=null&&img!=null&&email!=null&&ingredients!=null&&tempsPreparation!=null&&tempsCuisson!=null&&portion!=null&&quantite!=null&&ingredients.length==quantite.length){
const newrecette={nom, origine, regime, type, description, recette, img, email,ingredients,tempsPreparation,tempsCuisson,portion, id, quantite};
const response= await fetch("/projet1/api/modifierRecette",{
method:"POST",
headers:{
"Content-Type":"application"
},
body:JSON.stringify(newrecette),
} );
if(response.ok)
{
confirm("Votre recette est enregistrée.");
window.location.href = 'pageUtilisateur.html';
}
else{
alert("Erreur lors de l'enregistrement");
}
}
}
})
document.querySelector("#btnDelete").addEventListener("click", async()=>{
if (confirm("Voulez-vous supprimer votre recette?")) {
const id = parseInt( recetteId);
const response= await fetch("/projet1/api/supprimerRecette",{
method:"POST",
headers:{
"Content-Type":"application"
},
body:JSON.stringify({id}),
} );
if(response.ok)
{
confirm("Votre recette est supprimée.");
window.location.href = 'pageUtilisateur.html';
}
else{
alert("Erreur lors de la suppression");
}
}
})}