Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Recipe Cost Calculator #788

Merged
merged 4 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Calculators/Recipe-Cost-Calculator/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# <p align="center">Recipe Cost Calculator</p>

## Description :-

This tool enables users to input ingredients and quantities to calculate the total cost of a recipe, facilitating budget-friendly meal planning.
The primary goal of the Recipe Cost Calculator is to empower users to plan meals within their budget by accurately estimating the total cost of a recipe based on the ingredients and quantities required.

## Tech Stacks :-

- HTML
- CSS
- JavaScript

## Screenshots :-

![image](https://github.com/Rakesh9100/CalcDiverse/assets/73993775/9913e8d7-72f5-4e17-b2b3-3bc598b46ea4)
43 changes: 43 additions & 0 deletions Calculators/Recipe-Cost-Calculator/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe Cost Calculator</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Recipe Cost Calculator</h1>
<form id="ingredient-form">
<div class="form-group">
<label for="ingredient-name">Ingredient:</label>
<input type="text" id="ingredient-name" placeholder="Enter ingredient name">
</div>
<div class="form-group">
<label for="ingredient-quantity">Quantity:</label>
<input type="number" id="ingredient-quantity" placeholder="Enter quantity">
</div>
<div class="form-group">
<label for="ingredient-unit">Unit:</label>
<select id="ingredient-unit">
<option value="units">Units</option>
<option value="kgs">Kilograms</option>
<option value="pounds">Pounds</option>
</select>
</div>
<div class="form-group">
<label for="ingredient-price">Price per unit ($):</label>
<input type="number" id="ingredient-price" step="0.01" placeholder="Enter price per unit">
</div>
<button type="button" onclick="addIngredient()">Add Ingredient</button>
</form>
<h2>Ingredients List</h2>
<ul id="ingredient-list"></ul>
<h2>Total Cost</h2>
<p id="total-cost">$0.00</p>
</div>
<script src="script.js"></script>
</body>
</html>
55 changes: 55 additions & 0 deletions Calculators/Recipe-Cost-Calculator/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
let ingredients = [];
let totalCost = 0;

function addIngredient() {
const name = document.getElementById('ingredient-name').value;
const quantity = parseFloat(document.getElementById('ingredient-quantity').value);
const unit = document.getElementById('ingredient-unit').value;
const price = parseFloat(document.getElementById('ingredient-price').value);

if (name && !isNaN(quantity) && !isNaN(price)) {
const ingredient = {
name,
quantity,
unit,
price,
cost: quantity * price
};

ingredients.push(ingredient);
totalCost += ingredient.cost;

updateIngredientList();
updateTotalCost();

document.getElementById('ingredient-form').reset();
} else {
alert('Please enter valid ingredient details.');
}
}

function deleteIngredient(index) {
totalCost -= ingredients[index].cost;
ingredients.splice(index, 1);
updateIngredientList();
updateTotalCost();
}

function updateIngredientList() {
const ingredientList = document.getElementById('ingredient-list');
ingredientList.innerHTML = '';

ingredients.forEach((ingredient, index) => {
const li = document.createElement('li');
li.innerHTML = `
${ingredient.name}: ${ingredient.quantity} ${ingredient.unit} @ $${ingredient.price.toFixed(2)} each - $${ingredient.cost.toFixed(2)}
<button class="delete-btn" onclick="deleteIngredient(${index})">x</button>
`;
ingredientList.appendChild(li);
});
}

function updateTotalCost() {
const totalCostElement = document.getElementById('total-cost');
totalCostElement.textContent = `$${totalCost.toFixed(2)}`;
}
131 changes: 131 additions & 0 deletions Calculators/Recipe-Cost-Calculator/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
/* General styles */
body {
font-family: 'Roboto', sans-serif;
background-color: #223f6b;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

/* Container styling */
.container {
width: 80%;
max-width: 600px;
margin: 20px auto;
padding: 20px;
background-color: #6772b0;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
text-align: center;
}

/* Heading styles */
h1, h2 {
color: #271954;
margin-bottom: 20px;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

/* Form group styling */
.form-group {
margin-bottom: 15px;
text-align: left;
}

/* Label styling */
label {
display: block;
margin-bottom: 5px;
color: #d5cece;
font-size: larger;
}

/* Input and select styling */
input[type="text"],
input[type="number"],
select {
width: calc(100% - 16px);
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
}

/* Button styling */
button {
width: 100%;
padding: 10px;
background-color: #0d3969;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
transition: background-color 0.3s;
}

button:hover {
background-color: #44316e;
}

/* List styling */
ul {
list-style: none;
padding: 0;
}

ul li {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px;
border-bottom: 1px solid #ddd;
}

ul li:last-child {
border-bottom: none;
}

/* Delete button styling */
.delete-btn {
background-color: #dc3545;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
padding: 2px 5px;
font-size: 0.8rem;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s;
}

.delete-btn:hover {
background-color: #c82333;
}

/* Total cost styling */
#total-cost {
font-size: 1.5rem;
font-weight: bold;
color: #28a745;
margin-top: 20px;
}

/* Heading hover effect */
h1:hover,
h2:hover {
text-shadow: 0 0 10px rgba(190, 172, 232, 0.8);
}

/* Ingredient name hover effect */
ul li:hover {
text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}
16 changes: 15 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1546,6 +1546,20 @@ <h3>This tool allows users to input property details and obtain essential inform
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Recipe Cost Calculator</h2>
<h3>This tool enables users to input ingredients and quantities to calculate the total cost of a recipe.</h3>
<div class="card-footer">
<a href="./Calculators/Recipe-Cost-Calculator/index.html" target="_blank">
<button>Try Now</button>
</a>
<a href="https://github.com/Rakesh9100/CalcDiverse/tree/main/Calculators/Recipe-Cost-Calculator" title="Source Code" target="_blank">
<img src="./assets/images/github.png" alt="Source Code"></img>
</a>
</div>
</div>
</div>
<div class="box">
<div class="content">
<h2>Rectangular Polar Calculator</h2>
Expand Down Expand Up @@ -1993,4 +2007,4 @@ <h3>Calculates the linear density of the yarn from unit system to another.</h3>

</body>

</html>
</html>