-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
88 lines (78 loc) · 3.14 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
const searchBox = document.querySelector('.searchBox');
const searchBtn = document.querySelector('.searchBtn');
const recipeContainer = document.querySelector('.recipe-container');
const recipeDetailsContent = document.querySelector('.recipe-details-content');
const recipeCloseBtn = document.querySelector('.recipe-close-btn');
//function to get recipes
const fetchRecipes = async (query) =>{
recipeContainer.innerHTML = "<h2>Fetching Recipes...<h2>";
try {
const data = await fetch(`https://www.themealdb.com/api/json/v1/1/search.php?s=${query}`);
const response = await data.json();
console.log(response);
recipeContainer.innerHTML = "";
response.meals.forEach(meal =>{
const recipeDiv = document.createElement(`div`);
recipeDiv.classList.add('recipe');
recipeDiv.innerHTML = `<img src="${meal.strMealThumb}">
<h3>${meal.strMeal}</h3>
<p><span>${meal.strArea}</span> Dish</p>
<p>Belongs to <span>${meal.strCategory}</span> category</p>
`
const button = document.createElement('button');
button.textContent = "View Recipe";
recipeDiv.appendChild(button);
// Adding eventlistener to recipe button!!
button.addEventListener('click',() =>{
openRecipePopup(meal);
});
recipeContainer.appendChild(recipeDiv);
});
}catch(error){
recipeContainer.innerHTML = `<h2>Sorry,<br><br>no results matched your search.
<br><br>Please try searching with different meal....😢!</h2>
<br><br><br><br><img src="food.gif" style="width: 400px; height: 500px;">`;
}
};
// Function to fetch Intgredients ans measurements
const fetchIngredients = (meal) =>{
let ingredientsList ="";
for(let i=1; i<20; i++){
const ingredient = meal[`strIngredient${i}`];
if(ingredient){
const measure = meal[`strMeasure${i}`];
ingredientsList += `<li>${measure} ${ingredient}</li>`
}
else{
break;
}
}
return ingredientsList;
}
const openRecipePopup = (meal) =>{
recipeDetailsContent.innerHTML = `
<h2 class="recipeName">${meal.strMeal}</h2>
<h3>Ingredents:</h3>
<ul class="ingredientName">${fetchIngredients(meal)}</ul>
<div class="recipeInstructions">
<h3>Instructions: </h3>
<p>${meal.strInstructions}</p>
</div>
`
recipeDetailsContent.parentElement.style.display = "block";
}
searchBtn.addEventListener('click', (e)=>{
e.preventDefault();
const searchInput = searchBox.value.trim();
if(!searchInput){
recipeContainer.innerHTML =`<h2>🤦♀️I know you are trying to searching empty box..😂😂
<br><br>please type the 😋meal in the search Box😉😎</h2>
<br><br><br><br><img src="virat.gif" style="width: 400px; height: 500px;">`
return;
}
fetchRecipes(searchInput);
console.log("clicked");
})
recipeCloseBtn.addEventListener('click',(e)=>{
recipeDetailsContent.parentElement.style.display = "none";
})