-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
279 lines (177 loc) · 6.06 KB
/
script.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
// const fetch = require('node-fetch')
// function getRandomMeal() {
// fetch('https://www.themealdb.com/api/json/v1/1/random.php')
// .then((response) => {
// response.json() // It returns a Promise
// .then((data)=>{
// console.log(data)
// })
// .catch((e)=>{
// console.log(e.name)
// })
// })
// .catch((e) => {
// console.log('In the Catch BLock')
// console.log(e.name)
// console.log(e.message)
// })
// }
const mealsEl = document.getElementById('meals');
const favoriteContainer= document.getElementById('fav-meals');
const searchTerm=document.getElementById('search-term');
const searchBtn=document.getElementById("search");
const mealPopup=document.getElementById('meal-popup');
const popupCloseBtn=document.getElementById('close-popup');
const mealInfoEl=document.getElementById('meal-info')
async function getRandomMeal() {
const response = await fetch('https://www.themealdb.com/api/json/v1/1/random.php');
//console.log(typeof(response));
//response here will be js object
//response.json() will be again be promise..
//randomMeal will be again object
const respData = await response.json();
const randomMeal = respData.meals[0];
console.log(randomMeal);
//console.log(typeof(randomMeal));
addMeal(randomMeal, true);
}
async function getMealById(id) {
const response = await fetch('https://www.themealdb.com/api/json/v1/1/lookup.php?i='+ id);
const respData = await response.json();
const meal = respData.meals[0];
return meal;
}
async function getMealsBySearch(term) {
const response = await fetch('https://www.themealdb.com/api/json/v1/1/search.php?s=' + term);
const respData = await response.json();
const meals = respData.meals;
return meals;
}
function addMeal(mealData, random = false) {
console.log(mealData);
const meal = document.createElement('div')
meal.classList.add('meal')
meal.innerHTML =
`
<div class="meal-header">
${random ? `
<span class="random">Random Recipe
</span>`: ' '}
<img
src="${mealData.strMealThumb}"
alt="${mealData.strMeal}"/>
</div>
<div class="meal-body">
<h4>${mealData.strMeal}</h4>
<button class="fav-btn" >
<i class="fas fa-heart"></i>
</button>
</div>
`;
const btn = meal.querySelector('.meal-body .fav-btn')
btn.addEventListener('click', (btn) => {
//alert("added to the liked recipes");
if (btn.target.classList.contains('active')) {
removeMealLS(mealData.idMeal);
btn.target.classList.remove("active");
}
else
{
addMealLS(mealData.idMeal);
btn.target.classList.add("active");
}
fetchFavMeals();
//btn.target.classList.toggle("active");
});
meal.addEventListener('click',()=>{
showMealInfo(mealData);
});
mealsEl.appendChild(meal);
}
function addMealLS(mealId) {
const mealIds = getMealsLS();
localStorage.setItem('mealIds', JSON.stringify([...mealIds, mealId]));
}
function removeMealLS(mealId) {
const mealIds = getMealsLS();
localStorage.setItem('mealIds', JSON.stringify(mealIds.filter(id => id !== mealId)));
}
function getMealsLS() {
const mealIds = JSON.parse(localStorage.getItem('mealIds'));
return mealIds === null ? [] : mealIds;
}
async function fetchFavMeals() {
//clean the container
favoriteContainer.innerHTML= " ";
const mealIds = getMealsLS();
const meals = [];
for (let i = 0; i < mealIds.length; i++) {
const mealId = mealIds[i];
meal = await getMealById(mealId);
addMealFav(meal)
// meals.push(meal);
}
//console.log(meals);
// in the above prog we converted the array of ids (mealsIds) of favourite meals into there corresponding array of meals (meals)
//add meals to the to the screen
}
function addMealFav(mealData) {
const favMeal = document.createElement('li')
favMeal.innerHTML =
`
<img src="${mealData.strMealThumb}" alt="${mealData.strMeal}">
<span>${mealData.strMeal}</span>
<buttonn class="clear"><i class="far fa-window-close"></i></button>
`;
const btn= favMeal.querySelector('.clear');
btn.addEventListener('click',()=>{
removeMealLS(mealData.idMeal);
fetchFavMeals();
})
favoriteContainer.appendChild(favMeal);
}
function showMealInfo(mealData){
//clean it up
mealInfoEl.innerHTML="";
//update the meal info
const mealEl= document.createElement('div');
mealEl.innerHTML=
`
<h1>${mealData.strMeal}</h1>
<img src="${mealData.strMealThumb}" alt="" >
<p>
${mealData.strInstructions}
</p>
<h4><u>Ingredients</u>-</h4>
<ul>
<li>${mealData.strIngredient1}</li>
<li>${mealData.strIngredient2}</li>
<li>${mealData.strIngredient3}</li>
<li>${mealData.strIngredient4}</li>
<li>${mealData.strIngredient5}</li>
<li>${mealData.strIngredient6}</li>
<li>${mealData.strIngredient7}</li>
</ul>
`
mealInfoEl.appendChild(mealEl);
//show the popup
mealPopup.classList.remove('hidden');
}
searchBtn.addEventListener("click",async ()=>{
//cleaning the container
mealsEl.innerHTML= ' ';
const search= searchTerm.value;
//console.log(await getMealsBySearch(search));
const meals = await getMealsBySearch(search)
if(meals){
meals.forEach(meal =>{
addMeal(meal);
})
}
});
popupCloseBtn.addEventListener('click',()=>{
mealPopup.classList.add('hidden');
});
getRandomMeal();
//fetchFavMeals();
//target property is used to return the element in the dom that triggers any particular event in the whole webpage