-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.js
110 lines (97 loc) · 3.81 KB
/
main.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
const recipeListEventListener = document.getElementById('recipe-list-grid');
recipeListEventListener.addEventListener('click', renderRecipeCard);
const filterButtons = document.getElementById('filter-buttons');
filterButtons.addEventListener('click', filterHandler);
const clearFilter = document.getElementById('clear-filter');
clearFilter.addEventListener('click', clearFilterHandler);
renderThumbnails();
function clearFilterHandler() {
// event.preventDefault();
clearChildren('recipe-list-grid');
renderThumbnails(Cocktail.all);
Cocktail.filtered = [];
removeMostValueIngr();
}
function filterHandler(event) {
switch (event.target.id) {
case "filter-01":
filterDrinksPossible(0);
removeMostValueIngr();
break;
case "filter-02":
filterDrinksBySpirit('gin');
removeMostValueIngr();
break;
case "filter-03":
filterDrinksBySpirit('whiskey');
removeMostValueIngr();
break;
case "filter-04":
filterDrinksBySpirit('tequila');
removeMostValueIngr();
break;
case "filter-05":
filterDrinksBySpirit('rum');
removeMostValueIngr();
break;
case "filter-06":
filterDrinksBySpirit('vodka');
removeMostValueIngr();
break;
case "filter-07":
filterDrinksBySpirit('brandy');
removeMostValueIngr();
break;
case "filter-08":
filterDrinksPossible(1);
removeMostValueIngr();
mostValueIngr();
break;
case "filter-09":
filterDrinksBySpirit('other');
removeMostValueIngr();
break;
default:
return; // If user clicks elsewhere, do nothing
}
clearChildren('recipe-list-grid');
renderThumbnails(Cocktail.filtered);
}
function filterDrinksPossible(tolerance, array = Cocktail.all) {
// tolerance of 0 if currently possible, tolerance of 1 for one-ingredient-away
Cocktail.filtered = [];
Ingredient.missingIngredients = [];
let inventoryNames = Ingredient.userPlusBasicIngr.map(element => element.name.toLowerCase());
let inventoryTypes = Ingredient.userPlusBasicIngr.map(element => element.type.toLowerCase());
array.forEach(cocktail => { // iterate through array of cocktail instances
let ingredients = cocktail.ingr.slice(); // Copies this ingr array for safe handling
let deltas = 0;
ingredients.forEach(ingredient => { // for ingredients in this recipe
ingredient = ingredient.toLowerCase();
let typeMatch = inventoryTypes.some(type => ingredient === type); // Boolean
let nameMatch = inventoryNames.some(name => ingredient === name); // Boolean
if (!typeMatch && !nameMatch) { // if this ingredient is NOT found in the inventory names or types
deltas++;
Ingredient.missingIngredients.push(ingredient); // ADDS TO ARRAY OF INGREDIENTS USER DOESN'T HAVE
}
});
// done comparing each drink ingredient against inventory
if (deltas === 0) { // delta/tolerance possibilities: [ 0/0, 0/1, 0/2, 1/0/, 1/1, 1,2, 2/0, 2/1, 2/2]
cocktail.possible = true;
if (tolerance === 0) Cocktail.filtered.push(cocktail);
} else if (deltas === tolerance) {
cocktail.almostPossible = true;
Cocktail.filtered.push(cocktail);
}
});
return Cocktail.filtered;
}
function filterDrinksBySpirit(base, array = Cocktail.all) {
Cocktail.filtered = [];
Cocktail.all.forEach(cocktail => {
if (cocktail.base.toLowerCase() === base) {
Cocktail.filtered.push(cocktail);
}
});
return Cocktail.filtered;
}