Sam-s-Mart-Website-Alternative/scripts/groceries.js

234 lines
5.1 KiB
JavaScript
Raw Normal View History

2021-02-11 01:27:58 +00:00
// Array of products, each product is an object with different fieldset
// A set of ingredients should be added to products
var products = [
{
name: "broccoli",
vegetarian: true,
glutenFree: true,
organic: true,
price: 1.99,
2021-02-17 20:18:57 +00:00
productImg: "images/broccoli.png",
Fruits: false,
Dairy: false,
Vegetables: true,
Pantry: false,
Bakery: false,
MeatandSeafood: false
2021-02-11 01:27:58 +00:00
},
{
name: "bread",
vegetarian: true,
glutenFree: false,
organic: false,
price: 2.35,
2021-02-17 20:18:57 +00:00
productImg: "images/bread.png",
Fruits: false,
Dairy: false,
Vegetables: false,
Pantry: false,
Bakery: true,
MeatandSeafood: false
2021-02-11 01:27:58 +00:00
},
{
name: "salmon",
vegetarian: false,
glutenFree: true,
organic: false,
price: 10.00,
2021-02-17 20:18:57 +00:00
productImg: "images/salmon.png",
Fruits: false,
Dairy: false,
Vegetables: false,
Pantry: false,
Bakery: false,
MeatandSeafood: true
2021-02-11 01:27:58 +00:00
},
{
name: "carrot",
vegetarian: true,
glutenFree: true,
organic: true,
price: 2.63,
2021-02-17 20:18:57 +00:00
productImg: "images/carrot.png",
Fruits: false,
Dairy: false,
Vegetables: true,
Pantry: false,
Bakery: false,
MeatandSeafood: false
2021-02-11 01:27:58 +00:00
},
{
name: "chicken",
vegetarian: false,
glutenFree: true,
organic: false,
price: 6.87,
2021-02-17 20:18:57 +00:00
productImg: "images/chicken.png",
Fruits: false,
Dairy: false,
Vegetables: false,
Pantry: false,
Bakery: false,
MeatandSeafood: true
2021-02-11 01:27:58 +00:00
},
{
name: "cereal",
vegetarian: false,
glutenFree: false,
organic: false,
price: 2.97,
2021-02-17 20:18:57 +00:00
productImg: "images/cereal.png",
Fruits: false,
Dairy: false,
Vegetables: false,
Pantry: true,
Bakery: false,
MeatandSeafood: false
2021-02-11 01:27:58 +00:00
},
{
name: "cheese",
vegetarian: false,
glutenFree: false,
organic: false,
price: 5.14,
2021-02-17 20:18:57 +00:00
productImg: "images/cheese.png",
Fruits: false,
Dairy: true,
Vegetables: false,
Pantry: false,
Bakery: false,
MeatandSeafood: false
2021-02-11 01:27:58 +00:00
},
{
name: "white fish",
vegetarian: false,
glutenFree: true,
organic: false,
price: 13.50,
2021-02-17 20:18:57 +00:00
productImg: "images/white-fish.png",
Fruits: false,
Dairy: false,
Vegetables: false,
Pantry: false,
Bakery: false,
MeatandSeafood: true
2021-02-11 01:27:58 +00:00
},
{
name: "honey",
vegetarian: false,
glutenFree: false,
organic: true,
price: 1.89,
2021-02-17 20:18:57 +00:00
productImg: "images/honey.png",
Fruits: false,
Dairy: false,
Vegetables: false,
Pantry: true,
Bakery: false,
MeatandSeafood: false
2021-02-11 01:27:58 +00:00
},
{
name: "onion",
vegetarian: true,
glutenFree: true,
organic: true,
price: 2.22,
2021-02-17 20:18:57 +00:00
productImg: "images/onion.png",
Fruits: false,
Dairy: false,
Vegetables: true,
Pantry: false,
Bakery: false,
MeatandSeafood: false
2021-02-11 01:27:58 +00:00
}
];
products.sort(function(a, b) {
return a.price - b.price;
})
function getProductImg(productName) {
var prodVal = products.find(prod => prod.name === productName);
return prodVal.productImg;
}
// given restrictions provided, make a reduced list of products
// prices should be included in this list, as well as a sort based on price
function restrictListProducts(prods, restriction) {
let product_names = [];
for (let i=0; i<prods.length; i+=1) {
2021-02-17 03:34:08 +00:00
if ((restriction === "Vegetarian") && (prods[i].vegetarian == true)){
2021-02-11 01:27:58 +00:00
product_names.push(prods[i].name);
}
else if ((restriction == "GlutenFree") && (prods[i].glutenFree == true)){
product_names.push(prods[i].name);
}
2021-02-17 03:34:08 +00:00
else if ((restriction == "Vegetarian" && restriction == "GlutenFree") && (prods[i].glutenFree == true) && (prods[i].vegetarian == true)){
2021-02-11 01:27:58 +00:00
product_names.push(prods[i].name);
}
else if ((restriction == "Organic") && (prods[i].organic == true)){
product_names.push(prods[i].name);
}
else if ((restriction == "Non-Organic") && (prods[i].organic == false)){
product_names.push(prods[i].name);
}
else if ( restriction == "None") {
product_names.push(prods[i].name);
}
}
return product_names;
}
2021-02-17 20:18:57 +00:00
function filterProduct(prod, filter) {
let prod_filter = [];
for(let i=0; i < prod.length; i++) {
if ( filter === "Fruits" && prod[i].Fruits === true ) {
prod_filter.push(prod[i].name);
}
else if ( filter === "Vegetables" && prod[i].Vegetables === true ) {
prod_filter.push(prod[i].name);
}
else if ( filter === "Pantry" && prod[i].Pantry === true ) {
prod_filter.push(prod[i].name);
}
else if ( filter === "Dairy" && prod[i].Dairy === true) {
prod_filter.push(prod[i].name);
}
2021-02-17 20:28:52 +00:00
else if ( filter === "Meat&Seafood" && prod[i].MeatandSeafood === true) {
2021-02-17 20:18:57 +00:00
prod_filter.push(prod[i].name);
}
else if ( filter === "Bakery" && prod[i].Bakery === true) {
prod_filter.push(prod[i].name);
}
// else if ( filter === "None" ){
// prod_filter.push(prod[i].name);
// }
}
return prod_filter;
}
2021-02-11 01:27:58 +00:00
// Calculate the total price of items, with received parameter being a list of products
function getTotalPrice(chosenProducts) {
var totalPrice = 0;
for (let i=0; i<products.length; i+=1) {
if (chosenProducts.indexOf(products[i].name) > -1){
totalPrice += products[i].price;
}
}
return totalPrice;
}
function getItemPrice(chosenProduct){
for (let i=0; i<products.length; i+=1) {
if (chosenProduct.indexOf(products[i].name) > -1){
return products[i].price;
}
}
}