-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
219 lines (173 loc) · 5.32 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
const mealsEl = document.getElementById("meals");
const favoriteContainer = document.getElementById("fav-meals");
const mealPopup = document.getElementById("meal-popup");
const mealInfoEl = document.getElementById("meal-info");
const popupCloseBtn = document.getElementById("close-popup");
const searchTerm = document.getElementById("search-term");
const searchBtn = document.getElementById("search");
getRandomMeal();
fetchFavMeals();
async function getRandomMeal() {
const resp = await fetch(
"https://www.themealdb.com/api/json/v1/1/random.php"
);
const respData = await resp.json();
const randomMeal = respData.meals[0];
addMeal(randomMeal, true);
}
async function getMealById(id) {
const resp = await fetch(
"https://www.themealdb.com/api/json/v1/1/lookup.php?i=" + id
);
const respData = await resp.json();
const meal = respData.meals[0];
return meal;
}
async function getMealsBySearch(term) {
const resp = await fetch(
"https://www.themealdb.com/api/json/v1/1/search.php?s=" + term
);
const respData = await resp.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", () => {
if (btn.classList.contains("active")) {
removeMealLS(mealData.idMeal);
btn.classList.remove("active");
} else {
addMealLS(mealData.idMeal);
btn.classList.add("active");
}
fetchFavMeals();
});
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();
for (let i = 0; i < mealIds.length; i++) {
const mealId = mealIds[i];
meal = await getMealById(mealId);
addMealFav(meal);
}
}
function addMealFav(mealData) {
const favMeal = document.createElement("li");
favMeal.innerHTML = `
<img
src="${mealData.strMealThumb}"
alt="${mealData.strMeal}"
/><span>${mealData.strMeal}</span>
<button class="clear"><i class="fas fa-window-close"></i></button>
`;
const btn = favMeal.querySelector(".clear");
btn.addEventListener("click", () => {
removeMealLS(mealData.idMeal);
fetchFavMeals();
});
favMeal.addEventListener("click", () => {
showMealInfo(mealData);
});
favoriteContainer.appendChild(favMeal);
}
function showMealInfo(mealData) {
// clean it up
mealInfoEl.innerHTML = "";
// update the Meal info
const mealEl = document.createElement("div");
const ingredients = [];
// get ingredients and measures
for (let i = 1; i <= 20; i++) {
if (mealData["strIngredient" + i]) {
ingredients.push(
`${mealData["strIngredient" + i]} - ${
mealData["strMeasure" + i]
}`
);
} else {
break;
}
}
mealEl.innerHTML = `
<h1>${mealData.strMeal}</h1>
<img
src="${mealData.strMealThumb}"
alt="${mealData.strMeal}"
/>
<p>
${mealData.strInstructions}
</p>
<h3>Ingredients:</h3>
<ul>
${ingredients
.map(
(ing) => `
<li>${ing}</li>
`
)
.join("")}
</ul>
`;
mealInfoEl.appendChild(mealEl);
// show the popup
mealPopup.classList.remove("hidden");
}
searchBtn.addEventListener("click", async () => {
// clean container
mealsEl.innerHTML = "";
const search = searchTerm.value;
const meals = await getMealsBySearch(search);
if (meals) {
meals.forEach((meal) => {
addMeal(meal);
});
}
});
popupCloseBtn.addEventListener("click", () => {
mealPopup.classList.add("hidden");
});