Compare commits
No commits in common. "4ec42fdbc0200d003c57299814af75f069363fe9" and "c7a4aa01baa893be02dff69828f329b8d9b915f2" have entirely different histories.
4ec42fdbc0
...
c7a4aa01ba
610
iframe.html
610
iframe.html
@ -447,116 +447,14 @@
|
||||
}
|
||||
}
|
||||
|
||||
/* Feeding Configuration Styles */
|
||||
.dog-calculator-container .dog-calculator-feeding-config {
|
||||
margin-top: 20px;
|
||||
padding: 16px;
|
||||
background: var(--bg-tertiary);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-frequency-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-frequency-row > label {
|
||||
font-weight: 500;
|
||||
color: var(--text-label);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
cursor: pointer;
|
||||
color: var(--text-primary);
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group input[type="radio"] {
|
||||
cursor: pointer;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group input[type="radio"]:checked + span {
|
||||
font-weight: 600;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input span {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input input[type="number"] {
|
||||
width: 50px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 4px;
|
||||
font-size: 0.95rem;
|
||||
color: var(--text-primary);
|
||||
background: var(--bg-secondary);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input input[type="number"]:focus {
|
||||
outline: none;
|
||||
border-color: var(--accent-color);
|
||||
box-shadow: 0 0 0 2px rgba(241, 154, 95, 0.1);
|
||||
}
|
||||
|
||||
/* Update meal note styling */
|
||||
.dog-calculator-container #mealNote {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.9rem;
|
||||
font-weight: normal;
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
/* Mobile responsive adjustments for feeding config */
|
||||
@media (max-width: 480px) {
|
||||
.dog-calculator-meal-input {
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.dog-calculator-frequency-row {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
/* Dark theme - manual override */
|
||||
|
||||
.dog-calculator-container.theme-dark {
|
||||
--bg-primary: #24202d;
|
||||
--bg-secondary: #312b3b;
|
||||
--bg-tertiary: #1f1b26;
|
||||
--border-color: #433c4f;
|
||||
--text-primary: #f5f3f7;
|
||||
--text-secondary: #b8b0c2;
|
||||
--text-label: #9f94ae;
|
||||
--success-color: #7fa464;
|
||||
--error-color: #e87159;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
@ -659,19 +557,6 @@
|
||||
background: #f19a5f;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-unit-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-unit-btn:disabled:hover {
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-results {
|
||||
background: linear-gradient(135deg, rgba(241, 154, 95, 0.15) 0%, rgba(241, 154, 95, 0.08) 100%);
|
||||
@ -714,55 +599,14 @@
|
||||
color: var(--success-color);
|
||||
}
|
||||
|
||||
/* Dark theme feeding configuration styles */
|
||||
.dog-calculator-container.theme-dark .dog-calculator-feeding-config {
|
||||
background: var(--bg-tertiary);
|
||||
border-color: var(--border-color);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-frequency-row > label {
|
||||
color: var(--text-label);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-radio-group label {
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-radio-group input[type="radio"]:checked + span {
|
||||
color: #f19a5f;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-meal-input span {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-meal-input input[type="number"] {
|
||||
background: var(--bg-secondary);
|
||||
border-color: var(--border-color);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-meal-input input[type="number"]:focus {
|
||||
border-color: #f19a5f;
|
||||
box-shadow: 0 0 0 2px rgba(241, 154, 95, 0.15);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark #mealNote {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
/* System theme - follows user's OS preference */
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.dog-calculator-container.theme-system {
|
||||
--bg-primary: #24202d;
|
||||
--bg-secondary: #312b3b;
|
||||
--bg-tertiary: #1f1b26;
|
||||
--border-color: #433c4f;
|
||||
--text-primary: #f5f3f7;
|
||||
--text-secondary: #b8b0c2;
|
||||
--text-label: #9f94ae;
|
||||
--success-color: #7fa464;
|
||||
--error-color: #e87159;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
@ -865,19 +709,6 @@
|
||||
background: #f19a5f;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-unit-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-unit-btn:disabled:hover {
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-results {
|
||||
background: linear-gradient(135deg, rgba(241, 154, 95, 0.15) 0%, rgba(241, 154, 95, 0.08) 100%);
|
||||
@ -919,43 +750,6 @@
|
||||
border-color: var(--success-color);
|
||||
color: var(--success-color);
|
||||
}
|
||||
|
||||
/* System theme feeding configuration styles in dark mode */
|
||||
.dog-calculator-container.theme-system .dog-calculator-feeding-config {
|
||||
background: var(--bg-tertiary);
|
||||
border-color: var(--border-color);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-frequency-row > label {
|
||||
color: var(--text-label);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-radio-group label {
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-radio-group input[type="radio"]:checked + span {
|
||||
color: #f19a5f;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-meal-input span {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-meal-input input[type="number"] {
|
||||
background: var(--bg-secondary);
|
||||
border-color: var(--border-color);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-meal-input input[type="number"]:focus {
|
||||
border-color: #f19a5f;
|
||||
box-shadow: 0 0 0 2px rgba(241, 154, 95, 0.15);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system #mealNote {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
}
|
||||
|
||||
/* Modal Styles */
|
||||
@ -1865,20 +1659,6 @@
|
||||
color: white;
|
||||
}
|
||||
|
||||
.dog-calculator-unit-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-unit-btn:disabled:hover {
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
transform: none;
|
||||
}
|
||||
|
||||
/* Hidden unit select for compatibility */
|
||||
.dog-calculator-unit-select-hidden {
|
||||
display: none;
|
||||
@ -2121,28 +1901,6 @@
|
||||
<span>Add another food source</span>
|
||||
</button>
|
||||
|
||||
<!-- Feeding Configuration -->
|
||||
<div class="dog-calculator-feeding-config" id="feedingConfig" style="display: none;">
|
||||
<div class="dog-calculator-frequency-row">
|
||||
<label>Show amounts:</label>
|
||||
<div class="dog-calculator-radio-group">
|
||||
<label>
|
||||
<input type="radio" name="showAs" value="daily" id="showDaily" checked>
|
||||
<span>Per day</span>
|
||||
</label>
|
||||
<label>
|
||||
<input type="radio" name="showAs" value="meal" id="showPerMeal">
|
||||
<span>Per meal</span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="dog-calculator-meal-input" id="mealInputGroup" style="display: none;">
|
||||
<span>×</span>
|
||||
<input type="number" id="mealsPerDay" value="2" min="1" max="10">
|
||||
<span>meals/day</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Per-Food Results -->
|
||||
<div class="dog-calculator-food-results" id="foodBreakdownResults" style="display: none;">
|
||||
<div id="foodBreakdownList">
|
||||
@ -2156,7 +1914,6 @@
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="kg">kg</button>
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="oz">oz</button>
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="lb">lb</button>
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="cups" id="cupsButton" disabled title="Available when using kcal/cup measurement">cups</button>
|
||||
</div>
|
||||
|
||||
<!-- Daily Total Results -->
|
||||
@ -2173,14 +1930,13 @@
|
||||
<option value="kg">kilograms (kg)</option>
|
||||
<option value="oz">ounces (oz)</option>
|
||||
<option value="lb">pounds (lb)</option>
|
||||
<option value="cups">cups</option>
|
||||
</select>
|
||||
|
||||
<div class="dog-calculator-food-amounts-section" id="foodAmountsSection" style="display: none;">
|
||||
<h4 class="dog-calculator-section-title">
|
||||
Calculate amounts for
|
||||
<input type="number" id="days" min="1" step="1" value="1" placeholder="1" aria-describedby="daysHelp" class="dog-calculator-inline-days">
|
||||
<span id="dayLabel">day</span><span id="mealNote" style="display: none;"></span>:
|
||||
<span id="dayLabel">day</span>:
|
||||
</h4>
|
||||
<div id="daysError" class="dog-calculator-error dog-calculator-hidden">Please enter a valid number of days (minimum 1)</div>
|
||||
<div id="foodAmountsList" class="dog-calculator-food-amounts-list">
|
||||
@ -2293,8 +2049,6 @@ const CALCULATOR_CONFIG = {
|
||||
this.scale = this.getScaleFromURL() || CALCULATOR_CONFIG.defaultScale;
|
||||
this.foodSources = [];
|
||||
this.maxFoodSources = CALCULATOR_CONFIG.maxFoodSources;
|
||||
this.mealsPerDay = 2;
|
||||
this.showPerMeal = false;
|
||||
this.init();
|
||||
}
|
||||
|
||||
@ -2871,36 +2625,7 @@ const CALCULATOR_CONFIG = {
|
||||
if (energyInput) {
|
||||
energyInput.addEventListener('input', () => {
|
||||
this.updateFoodSourceData(id, 'energy', energyInput.value);
|
||||
|
||||
// Auto-select cups when entering energy for kcal/cup
|
||||
const foodSource = this.foodSources.find(fs => fs.id === id);
|
||||
if (foodSource && foodSource.energyUnit === 'kcalcup' && parseFloat(energyInput.value) > 0) {
|
||||
const unitSelect = document.getElementById('unit');
|
||||
const cupsButton = document.getElementById('cupsButton');
|
||||
|
||||
// First check if cups button will be enabled after update
|
||||
const willEnableCups = this.foodSources.some(fs =>
|
||||
fs.energyUnit === 'kcalcup' && fs.energy && parseFloat(fs.energy) > 0
|
||||
);
|
||||
|
||||
if (willEnableCups && unitSelect) {
|
||||
// Set cups BEFORE updating calculations
|
||||
unitSelect.value = 'cups';
|
||||
unitSelect.setAttribute('value', 'cups');
|
||||
this.setActiveUnitButton('cups');
|
||||
|
||||
// Enable the cups button manually since we know it will be valid
|
||||
if (cupsButton) {
|
||||
cupsButton.disabled = false;
|
||||
cupsButton.title = 'Show amounts in cups';
|
||||
}
|
||||
}
|
||||
|
||||
// Now update calculations with cups already selected
|
||||
this.updateFoodCalculations();
|
||||
} else {
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
this.updateFoodCalculations();
|
||||
});
|
||||
energyInput.addEventListener('blur', () => this.validateFoodSourceEnergy(id));
|
||||
}
|
||||
@ -2908,54 +2633,7 @@ const CALCULATOR_CONFIG = {
|
||||
if (energyUnitSelect) {
|
||||
energyUnitSelect.addEventListener('change', () => {
|
||||
this.updateFoodSourceData(id, 'energyUnit', energyUnitSelect.value);
|
||||
|
||||
// Auto-select the most appropriate unit based on energy unit
|
||||
const unitSelect = document.getElementById('unit');
|
||||
const energyInput = document.getElementById(`energy-${id}`);
|
||||
|
||||
if (unitSelect) {
|
||||
switch(energyUnitSelect.value) {
|
||||
case 'kcalcup':
|
||||
// Check if we have energy value to enable cups
|
||||
const foodSource = this.foodSources.find(fs => fs.id === id);
|
||||
if (foodSource && foodSource.energy && parseFloat(foodSource.energy) > 0) {
|
||||
// Set cups BEFORE updating calculations
|
||||
unitSelect.value = 'cups';
|
||||
unitSelect.setAttribute('value', 'cups');
|
||||
this.setActiveUnitButton('cups');
|
||||
|
||||
// Enable the cups button manually
|
||||
const cupsButton = document.getElementById('cupsButton');
|
||||
if (cupsButton) {
|
||||
cupsButton.disabled = false;
|
||||
cupsButton.title = 'Show amounts in cups';
|
||||
}
|
||||
}
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
case 'kcal100g':
|
||||
// For kcal/100g, select grams
|
||||
unitSelect.value = 'g';
|
||||
this.setActiveUnitButton('g');
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
case 'kcalkg':
|
||||
// For kcal/kg, also select grams (or could be kg)
|
||||
unitSelect.value = 'g';
|
||||
this.setActiveUnitButton('g');
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
case 'kcalcan':
|
||||
// For kcal/can, use grams as default (or ounces in imperial)
|
||||
unitSelect.value = this.isImperial ? 'oz' : 'g';
|
||||
this.setActiveUnitButton(unitSelect.value);
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
// No unit select, just update calculations
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
this.updateFoodCalculations();
|
||||
});
|
||||
}
|
||||
|
||||
@ -3125,58 +2803,6 @@ const CALCULATOR_CONFIG = {
|
||||
|
||||
if (addFoodBtn) addFoodBtn.addEventListener('click', () => this.addFoodSource());
|
||||
|
||||
// Feeding configuration event listeners
|
||||
const showDaily = document.getElementById('showDaily');
|
||||
const showPerMeal = document.getElementById('showPerMeal');
|
||||
const mealsPerDayInput = document.getElementById('mealsPerDay');
|
||||
const mealInputGroup = document.getElementById('mealInputGroup');
|
||||
|
||||
if (showDaily) {
|
||||
showDaily.addEventListener('change', () => {
|
||||
if (showDaily.checked) {
|
||||
this.showPerMeal = false;
|
||||
if (mealInputGroup) mealInputGroup.style.display = 'none';
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (showPerMeal) {
|
||||
showPerMeal.addEventListener('change', () => {
|
||||
if (showPerMeal.checked) {
|
||||
this.showPerMeal = true;
|
||||
if (mealInputGroup) mealInputGroup.style.display = 'inline-flex';
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (mealsPerDayInput) {
|
||||
mealsPerDayInput.addEventListener('input', () => {
|
||||
const meals = parseInt(mealsPerDayInput.value);
|
||||
if (meals && meals >= 1 && meals <= 10) {
|
||||
this.mealsPerDay = meals;
|
||||
if (this.showPerMeal) {
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
mealsPerDayInput.addEventListener('blur', () => {
|
||||
if (!mealsPerDayInput.value || parseInt(mealsPerDayInput.value) < 1) {
|
||||
mealsPerDayInput.value = 2;
|
||||
this.mealsPerDay = 2;
|
||||
if (this.showPerMeal) {
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Modal event listeners
|
||||
const shareBtn = document.getElementById('shareBtn');
|
||||
const embedBtn = document.getElementById('embedBtn');
|
||||
@ -3353,7 +2979,7 @@ const CALCULATOR_CONFIG = {
|
||||
}
|
||||
}
|
||||
|
||||
convertUnits(grams, unit, foodSource = null) {
|
||||
convertUnits(grams, unit) {
|
||||
switch (unit) {
|
||||
case 'kg':
|
||||
return grams / 1000;
|
||||
@ -3361,18 +2987,6 @@ const CALCULATOR_CONFIG = {
|
||||
return grams / 28.3495;
|
||||
case 'lb':
|
||||
return grams / 453.592;
|
||||
case 'cups':
|
||||
// For cups, we need to convert from grams worth of calories to cups
|
||||
if (foodSource && foodSource.energyUnit === 'kcalcup' && foodSource.energy) {
|
||||
// Get calories per 100g for this food
|
||||
const caloriesPerGram = this.getFoodSourceEnergyPer100g(foodSource) / 100;
|
||||
// Calculate total calories represented by these grams
|
||||
const totalCalories = grams * caloriesPerGram;
|
||||
// Divide by calories per cup to get number of cups
|
||||
const caloriesPerCup = parseFloat(foodSource.energy);
|
||||
return totalCalories / caloriesPerCup;
|
||||
}
|
||||
return null; // Cannot convert to cups without kcal/cup
|
||||
default:
|
||||
return grams;
|
||||
}
|
||||
@ -3407,21 +3021,10 @@ const CALCULATOR_CONFIG = {
|
||||
updateDayLabel() {
|
||||
const days = document.getElementById('days')?.value;
|
||||
const dayLabel = document.getElementById('dayLabel');
|
||||
const mealNote = document.getElementById('mealNote');
|
||||
if (dayLabel && days) {
|
||||
const numDays = parseInt(days);
|
||||
dayLabel.textContent = numDays === 1 ? 'day' : 'days';
|
||||
}
|
||||
if (mealNote) {
|
||||
if (this.showPerMeal && days) {
|
||||
const numDays = parseInt(days);
|
||||
const totalMeals = numDays * this.mealsPerDay;
|
||||
mealNote.textContent = ` (${totalMeals} meal${totalMeals === 1 ? '' : 's'} total)`;
|
||||
mealNote.style.display = 'inline';
|
||||
} else {
|
||||
mealNote.style.display = 'none';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
setActiveUnitButton(unit) {
|
||||
@ -3476,31 +3079,6 @@ const CALCULATOR_CONFIG = {
|
||||
this.sendHeightToParent();
|
||||
}
|
||||
|
||||
updateCupsButtonState() {
|
||||
const cupsButton = document.getElementById('cupsButton');
|
||||
if (!cupsButton) return;
|
||||
|
||||
// Check if any food source has kcal/cup selected
|
||||
const hasKcalCup = this.foodSources.some(fs =>
|
||||
fs.energyUnit === 'kcalcup' && fs.energy && parseFloat(fs.energy) > 0
|
||||
);
|
||||
|
||||
if (hasKcalCup) {
|
||||
cupsButton.disabled = false;
|
||||
cupsButton.title = 'Show amounts in cups';
|
||||
} else {
|
||||
cupsButton.disabled = true;
|
||||
cupsButton.title = 'Available when using kcal/cup measurement';
|
||||
|
||||
// If cups was selected, switch back to grams
|
||||
const unitSelect = document.getElementById('unit');
|
||||
if (unitSelect && unitSelect.value === 'cups') {
|
||||
unitSelect.value = 'g';
|
||||
this.setActiveUnitButton('g');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
updateFoodCalculations() {
|
||||
if (this.currentMER === 0) return;
|
||||
|
||||
@ -3513,36 +3091,15 @@ const CALCULATOR_CONFIG = {
|
||||
const totalAmountDisplay = document.getElementById('totalAmountDisplay');
|
||||
const foodBreakdownResults = document.getElementById('foodBreakdownResults');
|
||||
const foodBreakdownList = document.getElementById('foodBreakdownList');
|
||||
const feedingConfig = document.getElementById('feedingConfig');
|
||||
|
||||
// Update cups button state
|
||||
this.updateCupsButtonState();
|
||||
|
||||
if (!daysInput || !unitSelect || !dailyFoodResults || !dailyFoodValue || !foodAmountsSection) {
|
||||
return;
|
||||
}
|
||||
|
||||
const days = daysInput.value;
|
||||
let unit = unitSelect.value;
|
||||
|
||||
// Failsafe: if unit is empty string but cups button is active, use 'cups'
|
||||
if (!unit || unit === '') {
|
||||
const activeButton = document.querySelector('.dog-calculator-unit-btn.active');
|
||||
if (activeButton) {
|
||||
unit = activeButton.dataset.unit || 'g';
|
||||
} else {
|
||||
unit = 'g'; // Default fallback
|
||||
}
|
||||
}
|
||||
|
||||
const unitLabel = unit === 'g' ? 'g' : unit === 'kg' ? 'kg' : unit === 'oz' ? 'oz' : unit === 'lb' ? 'lb' : 'cups';
|
||||
const decimals = unit === 'g' ? 0 : unit === 'kg' ? 2 : unit === 'cups' ? 1 : 1;
|
||||
|
||||
// Debug: log what unit is being used
|
||||
console.log('UpdateFoodCalculations - unit:', unit, 'unitLabel:', unitLabel);
|
||||
|
||||
// Determine frequency suffix for display
|
||||
const frequencySuffix = this.showPerMeal ? '/meal' : '/day';
|
||||
const unit = unitSelect.value;
|
||||
const unitLabel = unit === 'g' ? 'g' : unit === 'kg' ? 'kg' : unit === 'oz' ? 'oz' : 'lb';
|
||||
const decimals = unit === 'g' ? 0 : unit === 'kg' ? 2 : 1;
|
||||
|
||||
// Clear all food source errors first
|
||||
this.foodSources.forEach(fs => {
|
||||
@ -3556,7 +3113,6 @@ const CALCULATOR_CONFIG = {
|
||||
foodAmountsSection.style.display = 'none';
|
||||
dailyFoodResults.style.display = 'none';
|
||||
if (foodBreakdownResults) foodBreakdownResults.style.display = 'none';
|
||||
if (feedingConfig) feedingConfig.style.display = 'none';
|
||||
|
||||
// Hide unit buttons when validation fails
|
||||
const unitButtons = document.getElementById('unitButtons');
|
||||
@ -3576,44 +3132,15 @@ const CALCULATOR_CONFIG = {
|
||||
|
||||
if (energyPer100g && energyPer100g > 0.1 && fs.percentage > 0) {
|
||||
const dailyCaloriesForThisFood = (this.currentMER * fs.percentage) / 100;
|
||||
let dailyGramsForThisFood;
|
||||
let dailyCupsForThisFood = null;
|
||||
|
||||
// For kcal/cup, calculate cups directly from calories
|
||||
if (fs.energyUnit === 'kcalcup' && fs.energy) {
|
||||
const caloriesPerCup = parseFloat(fs.energy);
|
||||
dailyCupsForThisFood = dailyCaloriesForThisFood / caloriesPerCup;
|
||||
// We still need grams for total calculation, use approximation
|
||||
dailyGramsForThisFood = (dailyCaloriesForThisFood / energyPer100g) * 100;
|
||||
console.log('Cups calculation:', {
|
||||
caloriesPerCup,
|
||||
dailyCaloriesForThisFood,
|
||||
dailyCupsForThisFood,
|
||||
dailyGramsForThisFood
|
||||
});
|
||||
} else {
|
||||
// For other units, calculate grams normally
|
||||
dailyGramsForThisFood = (dailyCaloriesForThisFood / energyPer100g) * 100;
|
||||
}
|
||||
|
||||
// Calculate per-meal amounts if needed
|
||||
const displayGrams = this.showPerMeal ? dailyGramsForThisFood / this.mealsPerDay : dailyGramsForThisFood;
|
||||
const displayCups = dailyCupsForThisFood !== null ?
|
||||
(this.showPerMeal ? dailyCupsForThisFood / this.mealsPerDay : dailyCupsForThisFood) : null;
|
||||
const displayCalories = this.showPerMeal ? dailyCaloriesForThisFood / this.mealsPerDay : dailyCaloriesForThisFood;
|
||||
const dailyGramsForThisFood = (dailyCaloriesForThisFood / energyPer100g) * 100;
|
||||
|
||||
foodBreakdowns.push({
|
||||
name: fs.name,
|
||||
percentage: fs.percentage,
|
||||
dailyGrams: dailyGramsForThisFood,
|
||||
displayGrams: displayGrams,
|
||||
dailyCups: dailyCupsForThisFood,
|
||||
displayCups: displayCups,
|
||||
calories: dailyCaloriesForThisFood,
|
||||
displayCalories: displayCalories,
|
||||
isLocked: fs.isLocked,
|
||||
hasEnergyContent: true,
|
||||
foodSource: fs // Store reference for cups conversion
|
||||
hasEnergyContent: true
|
||||
});
|
||||
|
||||
totalDailyGrams += dailyGramsForThisFood;
|
||||
@ -3624,14 +3151,9 @@ const CALCULATOR_CONFIG = {
|
||||
name: fs.name,
|
||||
percentage: fs.percentage,
|
||||
dailyGrams: 0,
|
||||
displayGrams: 0,
|
||||
dailyCups: null,
|
||||
displayCups: null,
|
||||
calories: 0,
|
||||
displayCalories: 0,
|
||||
isLocked: fs.isLocked,
|
||||
hasEnergyContent: false,
|
||||
foodSource: fs // Store reference for cups conversion
|
||||
hasEnergyContent: false
|
||||
});
|
||||
}
|
||||
});
|
||||
@ -3647,7 +3169,6 @@ const CALCULATOR_CONFIG = {
|
||||
|
||||
dailyFoodResults.style.display = 'none';
|
||||
if (foodBreakdownResults) foodBreakdownResults.style.display = 'none';
|
||||
if (feedingConfig) feedingConfig.style.display = 'none';
|
||||
|
||||
// Hide unit buttons when no valid foods
|
||||
const unitButtons = document.getElementById('unitButtons');
|
||||
@ -3694,17 +3215,6 @@ const CALCULATOR_CONFIG = {
|
||||
// Update daily food results (total) - will be updated with proper units later
|
||||
dailyFoodResults.style.display = 'block';
|
||||
|
||||
// Show feeding configuration when we have valid foods
|
||||
if (feedingConfig) {
|
||||
feedingConfig.style.display = 'block';
|
||||
|
||||
// Ensure "Per day" is checked when feeding config becomes visible
|
||||
const showDaily = document.getElementById('showDaily');
|
||||
if (showDaily && !showDaily.checked && !document.getElementById('showPerMeal').checked) {
|
||||
showDaily.checked = true;
|
||||
}
|
||||
}
|
||||
|
||||
// Show unit buttons when daily results are shown
|
||||
const unitButtons = document.getElementById('unitButtons');
|
||||
if (unitButtons) unitButtons.style.display = 'flex';
|
||||
@ -3712,21 +3222,9 @@ const CALCULATOR_CONFIG = {
|
||||
// Update per-food breakdown
|
||||
if (foodBreakdownList && foodBreakdowns.length > 1) {
|
||||
const breakdownHTML = foodBreakdowns.map(breakdown => {
|
||||
let valueContent;
|
||||
if (breakdown.hasEnergyContent) {
|
||||
if (unit === 'cups') {
|
||||
// For cups, use the pre-calculated cups value if available
|
||||
if (breakdown.displayCups !== null) {
|
||||
valueContent = `${this.formatNumber(breakdown.displayCups, decimals)} ${unitLabel}${frequencySuffix}`;
|
||||
} else {
|
||||
valueContent = `<span class="dog-calculator-warning" title="Cups only available for foods with kcal/cup measurement">N/A</span>`;
|
||||
}
|
||||
} else {
|
||||
valueContent = `${this.formatNumber(this.convertUnits(breakdown.displayGrams, unit), decimals)} ${unitLabel}${frequencySuffix}`;
|
||||
}
|
||||
} else {
|
||||
valueContent = `<span class="dog-calculator-warning" title="Enter energy content to calculate amount">⚠️</span>`;
|
||||
}
|
||||
const valueContent = breakdown.hasEnergyContent
|
||||
? `${this.formatNumber(this.convertUnits(breakdown.dailyGrams, unit), decimals)} ${unitLabel}/day`
|
||||
: `<span class="dog-calculator-warning" title="Enter energy content to calculate amount">⚠️</span>`;
|
||||
|
||||
return `
|
||||
<div class="dog-calculator-food-result-item">
|
||||
@ -3745,41 +3243,8 @@ const CALCULATOR_CONFIG = {
|
||||
// Generate individual food amount breakdown
|
||||
|
||||
// Update daily food value with correct units
|
||||
const displayTotal = this.showPerMeal ? totalDailyGrams / this.mealsPerDay : totalDailyGrams;
|
||||
let convertedTotal;
|
||||
let totalDisplayText;
|
||||
|
||||
if (unit === 'cups') {
|
||||
console.log('Unit is cups, checking validity...');
|
||||
// For cups, we can only show total if all foods with percentage > 0 have kcal/cup
|
||||
const validForCups = foodBreakdowns.filter(b => b.percentage > 0)
|
||||
.every(b => b.displayCups !== null && b.displayCups !== undefined);
|
||||
|
||||
console.log('Valid for cups?', validForCups, 'Breakdowns:', foodBreakdowns);
|
||||
|
||||
if (validForCups) {
|
||||
// Calculate total cups using pre-calculated values
|
||||
let totalCups = 0;
|
||||
foodBreakdowns.forEach(breakdown => {
|
||||
if (breakdown.percentage > 0 && breakdown.displayCups !== null) {
|
||||
totalCups += breakdown.displayCups;
|
||||
}
|
||||
});
|
||||
console.log('Total cups display:', {
|
||||
totalCups,
|
||||
displayTotal,
|
||||
foodBreakdowns: foodBreakdowns.map(b => ({ name: b.name, displayCups: b.displayCups }))
|
||||
});
|
||||
totalDisplayText = this.formatNumber(totalCups, decimals) + ` ${unitLabel}${frequencySuffix}`;
|
||||
} else {
|
||||
totalDisplayText = 'Mixed units - see breakdown';
|
||||
}
|
||||
} else {
|
||||
convertedTotal = this.convertUnits(displayTotal, unit);
|
||||
totalDisplayText = this.formatNumber(convertedTotal, decimals) + ` ${unitLabel}${frequencySuffix}`;
|
||||
}
|
||||
|
||||
dailyFoodValue.textContent = totalDisplayText;
|
||||
const convertedDailyTotal = this.convertUnits(totalDailyGrams, unit);
|
||||
dailyFoodValue.textContent = this.formatNumber(convertedDailyTotal, decimals) + ` ${unitLabel}/day`;
|
||||
|
||||
// Build HTML for individual food amounts
|
||||
const foodAmountsHTML = foodBreakdowns.map(breakdown => {
|
||||
@ -3800,24 +3265,8 @@ const CALCULATOR_CONFIG = {
|
||||
</div>
|
||||
`;
|
||||
} else {
|
||||
// For multi-day calculations: show total amount for all days
|
||||
let amountDisplay;
|
||||
if (unit === 'cups') {
|
||||
// For cups, use pre-calculated cups value
|
||||
if (breakdown.dailyCups !== null) {
|
||||
const totalCupsForDays = breakdown.dailyCups * numDays;
|
||||
amountDisplay = `${this.formatNumber(totalCupsForDays, decimals)} ${unitLabel}`;
|
||||
} else {
|
||||
amountDisplay = `<span class="dog-calculator-warning" title="Cups only available for foods with kcal/cup measurement">N/A</span>`;
|
||||
}
|
||||
} else {
|
||||
// For other units, calculate from grams
|
||||
const totalGramsForDays = this.showPerMeal
|
||||
? (breakdown.dailyGrams / this.mealsPerDay) * numDays * this.mealsPerDay
|
||||
: breakdown.dailyGrams * numDays;
|
||||
const convertedAmount = this.convertUnits(totalGramsForDays, unit);
|
||||
amountDisplay = `${this.formatNumber(convertedAmount, decimals)} ${unitLabel}`;
|
||||
}
|
||||
const totalGramsForDays = breakdown.dailyGrams * numDays;
|
||||
const convertedAmount = this.convertUnits(totalGramsForDays, unit);
|
||||
|
||||
return `
|
||||
<div class="dog-calculator-food-amount-item">
|
||||
@ -3827,7 +3276,7 @@ const CALCULATOR_CONFIG = {
|
||||
${lockIndicator}
|
||||
</div>
|
||||
<div class="dog-calculator-food-amount-value">
|
||||
${amountDisplay}
|
||||
${this.formatNumber(convertedAmount, decimals)} ${unitLabel}
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
@ -3836,6 +3285,7 @@ const CALCULATOR_CONFIG = {
|
||||
|
||||
// Calculate and display total
|
||||
const totalFoodGrams = totalDailyGrams * numDays;
|
||||
const totalConverted = this.convertUnits(totalFoodGrams, unit);
|
||||
|
||||
// Update the display
|
||||
if (foodAmountsList) {
|
||||
@ -3843,27 +3293,7 @@ const CALCULATOR_CONFIG = {
|
||||
}
|
||||
|
||||
if (totalAmountDisplay) {
|
||||
if (unit === 'cups') {
|
||||
// For cups total, check if all foods can be converted
|
||||
const validForCups = foodBreakdowns.filter(b => b.percentage > 0)
|
||||
.every(b => b.dailyCups !== null && b.dailyCups !== undefined);
|
||||
|
||||
if (validForCups) {
|
||||
// Calculate total cups using pre-calculated values
|
||||
let totalCups = 0;
|
||||
foodBreakdowns.forEach(breakdown => {
|
||||
if (breakdown.percentage > 0 && breakdown.dailyCups !== null) {
|
||||
totalCups += breakdown.dailyCups * numDays;
|
||||
}
|
||||
});
|
||||
totalAmountDisplay.textContent = `${this.formatNumber(totalCups, decimals)} ${unitLabel}`;
|
||||
} else {
|
||||
totalAmountDisplay.textContent = 'Mixed units - see individual amounts';
|
||||
}
|
||||
} else {
|
||||
const totalConverted = this.convertUnits(totalFoodGrams, unit);
|
||||
totalAmountDisplay.textContent = `${this.formatNumber(totalConverted, decimals)} ${unitLabel}`;
|
||||
}
|
||||
totalAmountDisplay.textContent = `${this.formatNumber(totalConverted, decimals)} ${unitLabel}`;
|
||||
}
|
||||
|
||||
foodAmountsSection.style.display = 'block';
|
||||
|
||||
@ -437,102 +437,4 @@
|
||||
}
|
||||
}
|
||||
|
||||
/* Feeding Configuration Styles */
|
||||
.dog-calculator-container .dog-calculator-feeding-config {
|
||||
margin-top: 20px;
|
||||
padding: 16px;
|
||||
background: var(--bg-tertiary);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-frequency-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-frequency-row > label {
|
||||
font-weight: 500;
|
||||
color: var(--text-label);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
cursor: pointer;
|
||||
color: var(--text-primary);
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group input[type="radio"] {
|
||||
cursor: pointer;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group input[type="radio"]:checked + span {
|
||||
font-weight: 600;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input span {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input input[type="number"] {
|
||||
width: 50px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 4px;
|
||||
font-size: 0.95rem;
|
||||
color: var(--text-primary);
|
||||
background: var(--bg-secondary);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input input[type="number"]:focus {
|
||||
outline: none;
|
||||
border-color: var(--accent-color);
|
||||
box-shadow: 0 0 0 2px rgba(241, 154, 95, 0.1);
|
||||
}
|
||||
|
||||
/* Update meal note styling */
|
||||
.dog-calculator-container #mealNote {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.9rem;
|
||||
font-weight: normal;
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
/* Mobile responsive adjustments for feeding config */
|
||||
@media (max-width: 480px) {
|
||||
.dog-calculator-meal-input {
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.dog-calculator-frequency-row {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
/* Dark theme - manual override */
|
||||
|
||||
@ -1,13 +1,9 @@
|
||||
.dog-calculator-container.theme-dark {
|
||||
--bg-primary: #24202d;
|
||||
--bg-secondary: #312b3b;
|
||||
--bg-tertiary: #1f1b26;
|
||||
--border-color: #433c4f;
|
||||
--text-primary: #f5f3f7;
|
||||
--text-secondary: #b8b0c2;
|
||||
--text-label: #9f94ae;
|
||||
--success-color: #7fa464;
|
||||
--error-color: #e87159;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
@ -110,19 +106,6 @@
|
||||
background: #f19a5f;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-unit-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-unit-btn:disabled:hover {
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-results {
|
||||
background: linear-gradient(135deg, rgba(241, 154, 95, 0.15) 0%, rgba(241, 154, 95, 0.08) 100%);
|
||||
@ -165,55 +148,14 @@
|
||||
color: var(--success-color);
|
||||
}
|
||||
|
||||
/* Dark theme feeding configuration styles */
|
||||
.dog-calculator-container.theme-dark .dog-calculator-feeding-config {
|
||||
background: var(--bg-tertiary);
|
||||
border-color: var(--border-color);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-frequency-row > label {
|
||||
color: var(--text-label);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-radio-group label {
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-radio-group input[type="radio"]:checked + span {
|
||||
color: #f19a5f;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-meal-input span {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-meal-input input[type="number"] {
|
||||
background: var(--bg-secondary);
|
||||
border-color: var(--border-color);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-meal-input input[type="number"]:focus {
|
||||
border-color: #f19a5f;
|
||||
box-shadow: 0 0 0 2px rgba(241, 154, 95, 0.15);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark #mealNote {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
/* System theme - follows user's OS preference */
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.dog-calculator-container.theme-system {
|
||||
--bg-primary: #24202d;
|
||||
--bg-secondary: #312b3b;
|
||||
--bg-tertiary: #1f1b26;
|
||||
--border-color: #433c4f;
|
||||
--text-primary: #f5f3f7;
|
||||
--text-secondary: #b8b0c2;
|
||||
--text-label: #9f94ae;
|
||||
--success-color: #7fa464;
|
||||
--error-color: #e87159;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
@ -316,19 +258,6 @@
|
||||
background: #f19a5f;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-unit-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-unit-btn:disabled:hover {
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-results {
|
||||
background: linear-gradient(135deg, rgba(241, 154, 95, 0.15) 0%, rgba(241, 154, 95, 0.08) 100%);
|
||||
@ -370,43 +299,6 @@
|
||||
border-color: var(--success-color);
|
||||
color: var(--success-color);
|
||||
}
|
||||
|
||||
/* System theme feeding configuration styles in dark mode */
|
||||
.dog-calculator-container.theme-system .dog-calculator-feeding-config {
|
||||
background: var(--bg-tertiary);
|
||||
border-color: var(--border-color);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-frequency-row > label {
|
||||
color: var(--text-label);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-radio-group label {
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-radio-group input[type="radio"]:checked + span {
|
||||
color: #f19a5f;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-meal-input span {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-meal-input input[type="number"] {
|
||||
background: var(--bg-secondary);
|
||||
border-color: var(--border-color);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-meal-input input[type="number"]:focus {
|
||||
border-color: #f19a5f;
|
||||
box-shadow: 0 0 0 2px rgba(241, 154, 95, 0.15);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system #mealNote {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
}
|
||||
|
||||
/* Modal Styles */
|
||||
@ -1316,20 +1208,6 @@
|
||||
color: white;
|
||||
}
|
||||
|
||||
.dog-calculator-unit-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-unit-btn:disabled:hover {
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
transform: none;
|
||||
}
|
||||
|
||||
/* Hidden unit select for compatibility */
|
||||
.dog-calculator-unit-select-hidden {
|
||||
display: none;
|
||||
|
||||
@ -65,28 +65,6 @@
|
||||
<span>Add another food source</span>
|
||||
</button>
|
||||
|
||||
<!-- Feeding Configuration -->
|
||||
<div class="dog-calculator-feeding-config" id="feedingConfig" style="display: none;">
|
||||
<div class="dog-calculator-frequency-row">
|
||||
<label>Show amounts:</label>
|
||||
<div class="dog-calculator-radio-group">
|
||||
<label>
|
||||
<input type="radio" name="showAs" value="daily" id="showDaily" checked>
|
||||
<span>Per day</span>
|
||||
</label>
|
||||
<label>
|
||||
<input type="radio" name="showAs" value="meal" id="showPerMeal">
|
||||
<span>Per meal</span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="dog-calculator-meal-input" id="mealInputGroup" style="display: none;">
|
||||
<span>×</span>
|
||||
<input type="number" id="mealsPerDay" value="2" min="1" max="10">
|
||||
<span>meals/day</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Per-Food Results -->
|
||||
<div class="dog-calculator-food-results" id="foodBreakdownResults" style="display: none;">
|
||||
<div id="foodBreakdownList">
|
||||
@ -100,7 +78,6 @@
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="kg">kg</button>
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="oz">oz</button>
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="lb">lb</button>
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="cups" id="cupsButton" disabled title="Available when using kcal/cup measurement">cups</button>
|
||||
</div>
|
||||
|
||||
<!-- Daily Total Results -->
|
||||
@ -117,14 +94,13 @@
|
||||
<option value="kg">kilograms (kg)</option>
|
||||
<option value="oz">ounces (oz)</option>
|
||||
<option value="lb">pounds (lb)</option>
|
||||
<option value="cups">cups</option>
|
||||
</select>
|
||||
|
||||
<div class="dog-calculator-food-amounts-section" id="foodAmountsSection" style="display: none;">
|
||||
<h4 class="dog-calculator-section-title">
|
||||
Calculate amounts for
|
||||
<input type="number" id="days" min="1" step="1" value="1" placeholder="1" aria-describedby="daysHelp" class="dog-calculator-inline-days">
|
||||
<span id="dayLabel">day</span><span id="mealNote" style="display: none;"></span>:
|
||||
<span id="dayLabel">day</span>:
|
||||
</h4>
|
||||
<div id="daysError" class="dog-calculator-error dog-calculator-hidden">Please enter a valid number of days (minimum 1)</div>
|
||||
<div id="foodAmountsList" class="dog-calculator-food-amounts-list">
|
||||
|
||||
@ -11,8 +11,6 @@
|
||||
this.scale = this.getScaleFromURL() || CALCULATOR_CONFIG.defaultScale;
|
||||
this.foodSources = [];
|
||||
this.maxFoodSources = CALCULATOR_CONFIG.maxFoodSources;
|
||||
this.mealsPerDay = 2;
|
||||
this.showPerMeal = false;
|
||||
this.init();
|
||||
}
|
||||
|
||||
@ -589,36 +587,7 @@
|
||||
if (energyInput) {
|
||||
energyInput.addEventListener('input', () => {
|
||||
this.updateFoodSourceData(id, 'energy', energyInput.value);
|
||||
|
||||
// Auto-select cups when entering energy for kcal/cup
|
||||
const foodSource = this.foodSources.find(fs => fs.id === id);
|
||||
if (foodSource && foodSource.energyUnit === 'kcalcup' && parseFloat(energyInput.value) > 0) {
|
||||
const unitSelect = document.getElementById('unit');
|
||||
const cupsButton = document.getElementById('cupsButton');
|
||||
|
||||
// First check if cups button will be enabled after update
|
||||
const willEnableCups = this.foodSources.some(fs =>
|
||||
fs.energyUnit === 'kcalcup' && fs.energy && parseFloat(fs.energy) > 0
|
||||
);
|
||||
|
||||
if (willEnableCups && unitSelect) {
|
||||
// Set cups BEFORE updating calculations
|
||||
unitSelect.value = 'cups';
|
||||
unitSelect.setAttribute('value', 'cups');
|
||||
this.setActiveUnitButton('cups');
|
||||
|
||||
// Enable the cups button manually since we know it will be valid
|
||||
if (cupsButton) {
|
||||
cupsButton.disabled = false;
|
||||
cupsButton.title = 'Show amounts in cups';
|
||||
}
|
||||
}
|
||||
|
||||
// Now update calculations with cups already selected
|
||||
this.updateFoodCalculations();
|
||||
} else {
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
this.updateFoodCalculations();
|
||||
});
|
||||
energyInput.addEventListener('blur', () => this.validateFoodSourceEnergy(id));
|
||||
}
|
||||
@ -626,54 +595,7 @@
|
||||
if (energyUnitSelect) {
|
||||
energyUnitSelect.addEventListener('change', () => {
|
||||
this.updateFoodSourceData(id, 'energyUnit', energyUnitSelect.value);
|
||||
|
||||
// Auto-select the most appropriate unit based on energy unit
|
||||
const unitSelect = document.getElementById('unit');
|
||||
const energyInput = document.getElementById(`energy-${id}`);
|
||||
|
||||
if (unitSelect) {
|
||||
switch(energyUnitSelect.value) {
|
||||
case 'kcalcup':
|
||||
// Check if we have energy value to enable cups
|
||||
const foodSource = this.foodSources.find(fs => fs.id === id);
|
||||
if (foodSource && foodSource.energy && parseFloat(foodSource.energy) > 0) {
|
||||
// Set cups BEFORE updating calculations
|
||||
unitSelect.value = 'cups';
|
||||
unitSelect.setAttribute('value', 'cups');
|
||||
this.setActiveUnitButton('cups');
|
||||
|
||||
// Enable the cups button manually
|
||||
const cupsButton = document.getElementById('cupsButton');
|
||||
if (cupsButton) {
|
||||
cupsButton.disabled = false;
|
||||
cupsButton.title = 'Show amounts in cups';
|
||||
}
|
||||
}
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
case 'kcal100g':
|
||||
// For kcal/100g, select grams
|
||||
unitSelect.value = 'g';
|
||||
this.setActiveUnitButton('g');
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
case 'kcalkg':
|
||||
// For kcal/kg, also select grams (or could be kg)
|
||||
unitSelect.value = 'g';
|
||||
this.setActiveUnitButton('g');
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
case 'kcalcan':
|
||||
// For kcal/can, use grams as default (or ounces in imperial)
|
||||
unitSelect.value = this.isImperial ? 'oz' : 'g';
|
||||
this.setActiveUnitButton(unitSelect.value);
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
// No unit select, just update calculations
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
this.updateFoodCalculations();
|
||||
});
|
||||
}
|
||||
|
||||
@ -843,58 +765,6 @@
|
||||
|
||||
if (addFoodBtn) addFoodBtn.addEventListener('click', () => this.addFoodSource());
|
||||
|
||||
// Feeding configuration event listeners
|
||||
const showDaily = document.getElementById('showDaily');
|
||||
const showPerMeal = document.getElementById('showPerMeal');
|
||||
const mealsPerDayInput = document.getElementById('mealsPerDay');
|
||||
const mealInputGroup = document.getElementById('mealInputGroup');
|
||||
|
||||
if (showDaily) {
|
||||
showDaily.addEventListener('change', () => {
|
||||
if (showDaily.checked) {
|
||||
this.showPerMeal = false;
|
||||
if (mealInputGroup) mealInputGroup.style.display = 'none';
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (showPerMeal) {
|
||||
showPerMeal.addEventListener('change', () => {
|
||||
if (showPerMeal.checked) {
|
||||
this.showPerMeal = true;
|
||||
if (mealInputGroup) mealInputGroup.style.display = 'inline-flex';
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (mealsPerDayInput) {
|
||||
mealsPerDayInput.addEventListener('input', () => {
|
||||
const meals = parseInt(mealsPerDayInput.value);
|
||||
if (meals && meals >= 1 && meals <= 10) {
|
||||
this.mealsPerDay = meals;
|
||||
if (this.showPerMeal) {
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
mealsPerDayInput.addEventListener('blur', () => {
|
||||
if (!mealsPerDayInput.value || parseInt(mealsPerDayInput.value) < 1) {
|
||||
mealsPerDayInput.value = 2;
|
||||
this.mealsPerDay = 2;
|
||||
if (this.showPerMeal) {
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Modal event listeners
|
||||
const shareBtn = document.getElementById('shareBtn');
|
||||
const embedBtn = document.getElementById('embedBtn');
|
||||
@ -1071,7 +941,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
convertUnits(grams, unit, foodSource = null) {
|
||||
convertUnits(grams, unit) {
|
||||
switch (unit) {
|
||||
case 'kg':
|
||||
return grams / 1000;
|
||||
@ -1079,18 +949,6 @@
|
||||
return grams / 28.3495;
|
||||
case 'lb':
|
||||
return grams / 453.592;
|
||||
case 'cups':
|
||||
// For cups, we need to convert from grams worth of calories to cups
|
||||
if (foodSource && foodSource.energyUnit === 'kcalcup' && foodSource.energy) {
|
||||
// Get calories per 100g for this food
|
||||
const caloriesPerGram = this.getFoodSourceEnergyPer100g(foodSource) / 100;
|
||||
// Calculate total calories represented by these grams
|
||||
const totalCalories = grams * caloriesPerGram;
|
||||
// Divide by calories per cup to get number of cups
|
||||
const caloriesPerCup = parseFloat(foodSource.energy);
|
||||
return totalCalories / caloriesPerCup;
|
||||
}
|
||||
return null; // Cannot convert to cups without kcal/cup
|
||||
default:
|
||||
return grams;
|
||||
}
|
||||
@ -1125,21 +983,10 @@
|
||||
updateDayLabel() {
|
||||
const days = document.getElementById('days')?.value;
|
||||
const dayLabel = document.getElementById('dayLabel');
|
||||
const mealNote = document.getElementById('mealNote');
|
||||
if (dayLabel && days) {
|
||||
const numDays = parseInt(days);
|
||||
dayLabel.textContent = numDays === 1 ? 'day' : 'days';
|
||||
}
|
||||
if (mealNote) {
|
||||
if (this.showPerMeal && days) {
|
||||
const numDays = parseInt(days);
|
||||
const totalMeals = numDays * this.mealsPerDay;
|
||||
mealNote.textContent = ` (${totalMeals} meal${totalMeals === 1 ? '' : 's'} total)`;
|
||||
mealNote.style.display = 'inline';
|
||||
} else {
|
||||
mealNote.style.display = 'none';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
setActiveUnitButton(unit) {
|
||||
@ -1194,31 +1041,6 @@
|
||||
this.sendHeightToParent();
|
||||
}
|
||||
|
||||
updateCupsButtonState() {
|
||||
const cupsButton = document.getElementById('cupsButton');
|
||||
if (!cupsButton) return;
|
||||
|
||||
// Check if any food source has kcal/cup selected
|
||||
const hasKcalCup = this.foodSources.some(fs =>
|
||||
fs.energyUnit === 'kcalcup' && fs.energy && parseFloat(fs.energy) > 0
|
||||
);
|
||||
|
||||
if (hasKcalCup) {
|
||||
cupsButton.disabled = false;
|
||||
cupsButton.title = 'Show amounts in cups';
|
||||
} else {
|
||||
cupsButton.disabled = true;
|
||||
cupsButton.title = 'Available when using kcal/cup measurement';
|
||||
|
||||
// If cups was selected, switch back to grams
|
||||
const unitSelect = document.getElementById('unit');
|
||||
if (unitSelect && unitSelect.value === 'cups') {
|
||||
unitSelect.value = 'g';
|
||||
this.setActiveUnitButton('g');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
updateFoodCalculations() {
|
||||
if (this.currentMER === 0) return;
|
||||
|
||||
@ -1231,36 +1053,15 @@
|
||||
const totalAmountDisplay = document.getElementById('totalAmountDisplay');
|
||||
const foodBreakdownResults = document.getElementById('foodBreakdownResults');
|
||||
const foodBreakdownList = document.getElementById('foodBreakdownList');
|
||||
const feedingConfig = document.getElementById('feedingConfig');
|
||||
|
||||
// Update cups button state
|
||||
this.updateCupsButtonState();
|
||||
|
||||
if (!daysInput || !unitSelect || !dailyFoodResults || !dailyFoodValue || !foodAmountsSection) {
|
||||
return;
|
||||
}
|
||||
|
||||
const days = daysInput.value;
|
||||
let unit = unitSelect.value;
|
||||
|
||||
// Failsafe: if unit is empty string but cups button is active, use 'cups'
|
||||
if (!unit || unit === '') {
|
||||
const activeButton = document.querySelector('.dog-calculator-unit-btn.active');
|
||||
if (activeButton) {
|
||||
unit = activeButton.dataset.unit || 'g';
|
||||
} else {
|
||||
unit = 'g'; // Default fallback
|
||||
}
|
||||
}
|
||||
|
||||
const unitLabel = unit === 'g' ? 'g' : unit === 'kg' ? 'kg' : unit === 'oz' ? 'oz' : unit === 'lb' ? 'lb' : 'cups';
|
||||
const decimals = unit === 'g' ? 0 : unit === 'kg' ? 2 : unit === 'cups' ? 1 : 1;
|
||||
|
||||
// Debug: log what unit is being used
|
||||
console.log('UpdateFoodCalculations - unit:', unit, 'unitLabel:', unitLabel);
|
||||
|
||||
// Determine frequency suffix for display
|
||||
const frequencySuffix = this.showPerMeal ? '/meal' : '/day';
|
||||
const unit = unitSelect.value;
|
||||
const unitLabel = unit === 'g' ? 'g' : unit === 'kg' ? 'kg' : unit === 'oz' ? 'oz' : 'lb';
|
||||
const decimals = unit === 'g' ? 0 : unit === 'kg' ? 2 : 1;
|
||||
|
||||
// Clear all food source errors first
|
||||
this.foodSources.forEach(fs => {
|
||||
@ -1274,7 +1075,6 @@
|
||||
foodAmountsSection.style.display = 'none';
|
||||
dailyFoodResults.style.display = 'none';
|
||||
if (foodBreakdownResults) foodBreakdownResults.style.display = 'none';
|
||||
if (feedingConfig) feedingConfig.style.display = 'none';
|
||||
|
||||
// Hide unit buttons when validation fails
|
||||
const unitButtons = document.getElementById('unitButtons');
|
||||
@ -1294,44 +1094,15 @@
|
||||
|
||||
if (energyPer100g && energyPer100g > 0.1 && fs.percentage > 0) {
|
||||
const dailyCaloriesForThisFood = (this.currentMER * fs.percentage) / 100;
|
||||
let dailyGramsForThisFood;
|
||||
let dailyCupsForThisFood = null;
|
||||
|
||||
// For kcal/cup, calculate cups directly from calories
|
||||
if (fs.energyUnit === 'kcalcup' && fs.energy) {
|
||||
const caloriesPerCup = parseFloat(fs.energy);
|
||||
dailyCupsForThisFood = dailyCaloriesForThisFood / caloriesPerCup;
|
||||
// We still need grams for total calculation, use approximation
|
||||
dailyGramsForThisFood = (dailyCaloriesForThisFood / energyPer100g) * 100;
|
||||
console.log('Cups calculation:', {
|
||||
caloriesPerCup,
|
||||
dailyCaloriesForThisFood,
|
||||
dailyCupsForThisFood,
|
||||
dailyGramsForThisFood
|
||||
});
|
||||
} else {
|
||||
// For other units, calculate grams normally
|
||||
dailyGramsForThisFood = (dailyCaloriesForThisFood / energyPer100g) * 100;
|
||||
}
|
||||
|
||||
// Calculate per-meal amounts if needed
|
||||
const displayGrams = this.showPerMeal ? dailyGramsForThisFood / this.mealsPerDay : dailyGramsForThisFood;
|
||||
const displayCups = dailyCupsForThisFood !== null ?
|
||||
(this.showPerMeal ? dailyCupsForThisFood / this.mealsPerDay : dailyCupsForThisFood) : null;
|
||||
const displayCalories = this.showPerMeal ? dailyCaloriesForThisFood / this.mealsPerDay : dailyCaloriesForThisFood;
|
||||
const dailyGramsForThisFood = (dailyCaloriesForThisFood / energyPer100g) * 100;
|
||||
|
||||
foodBreakdowns.push({
|
||||
name: fs.name,
|
||||
percentage: fs.percentage,
|
||||
dailyGrams: dailyGramsForThisFood,
|
||||
displayGrams: displayGrams,
|
||||
dailyCups: dailyCupsForThisFood,
|
||||
displayCups: displayCups,
|
||||
calories: dailyCaloriesForThisFood,
|
||||
displayCalories: displayCalories,
|
||||
isLocked: fs.isLocked,
|
||||
hasEnergyContent: true,
|
||||
foodSource: fs // Store reference for cups conversion
|
||||
hasEnergyContent: true
|
||||
});
|
||||
|
||||
totalDailyGrams += dailyGramsForThisFood;
|
||||
@ -1342,14 +1113,9 @@
|
||||
name: fs.name,
|
||||
percentage: fs.percentage,
|
||||
dailyGrams: 0,
|
||||
displayGrams: 0,
|
||||
dailyCups: null,
|
||||
displayCups: null,
|
||||
calories: 0,
|
||||
displayCalories: 0,
|
||||
isLocked: fs.isLocked,
|
||||
hasEnergyContent: false,
|
||||
foodSource: fs // Store reference for cups conversion
|
||||
hasEnergyContent: false
|
||||
});
|
||||
}
|
||||
});
|
||||
@ -1365,7 +1131,6 @@
|
||||
|
||||
dailyFoodResults.style.display = 'none';
|
||||
if (foodBreakdownResults) foodBreakdownResults.style.display = 'none';
|
||||
if (feedingConfig) feedingConfig.style.display = 'none';
|
||||
|
||||
// Hide unit buttons when no valid foods
|
||||
const unitButtons = document.getElementById('unitButtons');
|
||||
@ -1412,17 +1177,6 @@
|
||||
// Update daily food results (total) - will be updated with proper units later
|
||||
dailyFoodResults.style.display = 'block';
|
||||
|
||||
// Show feeding configuration when we have valid foods
|
||||
if (feedingConfig) {
|
||||
feedingConfig.style.display = 'block';
|
||||
|
||||
// Ensure "Per day" is checked when feeding config becomes visible
|
||||
const showDaily = document.getElementById('showDaily');
|
||||
if (showDaily && !showDaily.checked && !document.getElementById('showPerMeal').checked) {
|
||||
showDaily.checked = true;
|
||||
}
|
||||
}
|
||||
|
||||
// Show unit buttons when daily results are shown
|
||||
const unitButtons = document.getElementById('unitButtons');
|
||||
if (unitButtons) unitButtons.style.display = 'flex';
|
||||
@ -1430,21 +1184,9 @@
|
||||
// Update per-food breakdown
|
||||
if (foodBreakdownList && foodBreakdowns.length > 1) {
|
||||
const breakdownHTML = foodBreakdowns.map(breakdown => {
|
||||
let valueContent;
|
||||
if (breakdown.hasEnergyContent) {
|
||||
if (unit === 'cups') {
|
||||
// For cups, use the pre-calculated cups value if available
|
||||
if (breakdown.displayCups !== null) {
|
||||
valueContent = `${this.formatNumber(breakdown.displayCups, decimals)} ${unitLabel}${frequencySuffix}`;
|
||||
} else {
|
||||
valueContent = `<span class="dog-calculator-warning" title="Cups only available for foods with kcal/cup measurement">N/A</span>`;
|
||||
}
|
||||
} else {
|
||||
valueContent = `${this.formatNumber(this.convertUnits(breakdown.displayGrams, unit), decimals)} ${unitLabel}${frequencySuffix}`;
|
||||
}
|
||||
} else {
|
||||
valueContent = `<span class="dog-calculator-warning" title="Enter energy content to calculate amount">⚠️</span>`;
|
||||
}
|
||||
const valueContent = breakdown.hasEnergyContent
|
||||
? `${this.formatNumber(this.convertUnits(breakdown.dailyGrams, unit), decimals)} ${unitLabel}/day`
|
||||
: `<span class="dog-calculator-warning" title="Enter energy content to calculate amount">⚠️</span>`;
|
||||
|
||||
return `
|
||||
<div class="dog-calculator-food-result-item">
|
||||
@ -1463,41 +1205,8 @@
|
||||
// Generate individual food amount breakdown
|
||||
|
||||
// Update daily food value with correct units
|
||||
const displayTotal = this.showPerMeal ? totalDailyGrams / this.mealsPerDay : totalDailyGrams;
|
||||
let convertedTotal;
|
||||
let totalDisplayText;
|
||||
|
||||
if (unit === 'cups') {
|
||||
console.log('Unit is cups, checking validity...');
|
||||
// For cups, we can only show total if all foods with percentage > 0 have kcal/cup
|
||||
const validForCups = foodBreakdowns.filter(b => b.percentage > 0)
|
||||
.every(b => b.displayCups !== null && b.displayCups !== undefined);
|
||||
|
||||
console.log('Valid for cups?', validForCups, 'Breakdowns:', foodBreakdowns);
|
||||
|
||||
if (validForCups) {
|
||||
// Calculate total cups using pre-calculated values
|
||||
let totalCups = 0;
|
||||
foodBreakdowns.forEach(breakdown => {
|
||||
if (breakdown.percentage > 0 && breakdown.displayCups !== null) {
|
||||
totalCups += breakdown.displayCups;
|
||||
}
|
||||
});
|
||||
console.log('Total cups display:', {
|
||||
totalCups,
|
||||
displayTotal,
|
||||
foodBreakdowns: foodBreakdowns.map(b => ({ name: b.name, displayCups: b.displayCups }))
|
||||
});
|
||||
totalDisplayText = this.formatNumber(totalCups, decimals) + ` ${unitLabel}${frequencySuffix}`;
|
||||
} else {
|
||||
totalDisplayText = 'Mixed units - see breakdown';
|
||||
}
|
||||
} else {
|
||||
convertedTotal = this.convertUnits(displayTotal, unit);
|
||||
totalDisplayText = this.formatNumber(convertedTotal, decimals) + ` ${unitLabel}${frequencySuffix}`;
|
||||
}
|
||||
|
||||
dailyFoodValue.textContent = totalDisplayText;
|
||||
const convertedDailyTotal = this.convertUnits(totalDailyGrams, unit);
|
||||
dailyFoodValue.textContent = this.formatNumber(convertedDailyTotal, decimals) + ` ${unitLabel}/day`;
|
||||
|
||||
// Build HTML for individual food amounts
|
||||
const foodAmountsHTML = foodBreakdowns.map(breakdown => {
|
||||
@ -1518,24 +1227,8 @@
|
||||
</div>
|
||||
`;
|
||||
} else {
|
||||
// For multi-day calculations: show total amount for all days
|
||||
let amountDisplay;
|
||||
if (unit === 'cups') {
|
||||
// For cups, use pre-calculated cups value
|
||||
if (breakdown.dailyCups !== null) {
|
||||
const totalCupsForDays = breakdown.dailyCups * numDays;
|
||||
amountDisplay = `${this.formatNumber(totalCupsForDays, decimals)} ${unitLabel}`;
|
||||
} else {
|
||||
amountDisplay = `<span class="dog-calculator-warning" title="Cups only available for foods with kcal/cup measurement">N/A</span>`;
|
||||
}
|
||||
} else {
|
||||
// For other units, calculate from grams
|
||||
const totalGramsForDays = this.showPerMeal
|
||||
? (breakdown.dailyGrams / this.mealsPerDay) * numDays * this.mealsPerDay
|
||||
: breakdown.dailyGrams * numDays;
|
||||
const convertedAmount = this.convertUnits(totalGramsForDays, unit);
|
||||
amountDisplay = `${this.formatNumber(convertedAmount, decimals)} ${unitLabel}`;
|
||||
}
|
||||
const totalGramsForDays = breakdown.dailyGrams * numDays;
|
||||
const convertedAmount = this.convertUnits(totalGramsForDays, unit);
|
||||
|
||||
return `
|
||||
<div class="dog-calculator-food-amount-item">
|
||||
@ -1545,7 +1238,7 @@
|
||||
${lockIndicator}
|
||||
</div>
|
||||
<div class="dog-calculator-food-amount-value">
|
||||
${amountDisplay}
|
||||
${this.formatNumber(convertedAmount, decimals)} ${unitLabel}
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
@ -1554,6 +1247,7 @@
|
||||
|
||||
// Calculate and display total
|
||||
const totalFoodGrams = totalDailyGrams * numDays;
|
||||
const totalConverted = this.convertUnits(totalFoodGrams, unit);
|
||||
|
||||
// Update the display
|
||||
if (foodAmountsList) {
|
||||
@ -1561,27 +1255,7 @@
|
||||
}
|
||||
|
||||
if (totalAmountDisplay) {
|
||||
if (unit === 'cups') {
|
||||
// For cups total, check if all foods can be converted
|
||||
const validForCups = foodBreakdowns.filter(b => b.percentage > 0)
|
||||
.every(b => b.dailyCups !== null && b.dailyCups !== undefined);
|
||||
|
||||
if (validForCups) {
|
||||
// Calculate total cups using pre-calculated values
|
||||
let totalCups = 0;
|
||||
foodBreakdowns.forEach(breakdown => {
|
||||
if (breakdown.percentage > 0 && breakdown.dailyCups !== null) {
|
||||
totalCups += breakdown.dailyCups * numDays;
|
||||
}
|
||||
});
|
||||
totalAmountDisplay.textContent = `${this.formatNumber(totalCups, decimals)} ${unitLabel}`;
|
||||
} else {
|
||||
totalAmountDisplay.textContent = 'Mixed units - see individual amounts';
|
||||
}
|
||||
} else {
|
||||
const totalConverted = this.convertUnits(totalFoodGrams, unit);
|
||||
totalAmountDisplay.textContent = `${this.formatNumber(totalConverted, decimals)} ${unitLabel}`;
|
||||
}
|
||||
totalAmountDisplay.textContent = `${this.formatNumber(totalConverted, decimals)} ${unitLabel}`;
|
||||
}
|
||||
|
||||
foodAmountsSection.style.display = 'block';
|
||||
|
||||
@ -462,116 +462,14 @@
|
||||
}
|
||||
}
|
||||
|
||||
/* Feeding Configuration Styles */
|
||||
.dog-calculator-container .dog-calculator-feeding-config {
|
||||
margin-top: 20px;
|
||||
padding: 16px;
|
||||
background: var(--bg-tertiary);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-frequency-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-frequency-row > label {
|
||||
font-weight: 500;
|
||||
color: var(--text-label);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
cursor: pointer;
|
||||
color: var(--text-primary);
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group input[type="radio"] {
|
||||
cursor: pointer;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-radio-group input[type="radio"]:checked + span {
|
||||
font-weight: 600;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input span {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input input[type="number"] {
|
||||
width: 50px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 4px;
|
||||
font-size: 0.95rem;
|
||||
color: var(--text-primary);
|
||||
background: var(--bg-secondary);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.dog-calculator-container .dog-calculator-meal-input input[type="number"]:focus {
|
||||
outline: none;
|
||||
border-color: var(--accent-color);
|
||||
box-shadow: 0 0 0 2px rgba(241, 154, 95, 0.1);
|
||||
}
|
||||
|
||||
/* Update meal note styling */
|
||||
.dog-calculator-container #mealNote {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.9rem;
|
||||
font-weight: normal;
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
/* Mobile responsive adjustments for feeding config */
|
||||
@media (max-width: 480px) {
|
||||
.dog-calculator-meal-input {
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.dog-calculator-frequency-row {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
/* Dark theme - manual override */
|
||||
|
||||
.dog-calculator-container.theme-dark {
|
||||
--bg-primary: #24202d;
|
||||
--bg-secondary: #312b3b;
|
||||
--bg-tertiary: #1f1b26;
|
||||
--border-color: #433c4f;
|
||||
--text-primary: #f5f3f7;
|
||||
--text-secondary: #b8b0c2;
|
||||
--text-label: #9f94ae;
|
||||
--success-color: #7fa464;
|
||||
--error-color: #e87159;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
@ -674,19 +572,6 @@
|
||||
background: #f19a5f;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-unit-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-unit-btn:disabled:hover {
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-results {
|
||||
background: linear-gradient(135deg, rgba(241, 154, 95, 0.15) 0%, rgba(241, 154, 95, 0.08) 100%);
|
||||
@ -729,55 +614,14 @@
|
||||
color: var(--success-color);
|
||||
}
|
||||
|
||||
/* Dark theme feeding configuration styles */
|
||||
.dog-calculator-container.theme-dark .dog-calculator-feeding-config {
|
||||
background: var(--bg-tertiary);
|
||||
border-color: var(--border-color);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-frequency-row > label {
|
||||
color: var(--text-label);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-radio-group label {
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-radio-group input[type="radio"]:checked + span {
|
||||
color: #f19a5f;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-meal-input span {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-meal-input input[type="number"] {
|
||||
background: var(--bg-secondary);
|
||||
border-color: var(--border-color);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark .dog-calculator-meal-input input[type="number"]:focus {
|
||||
border-color: #f19a5f;
|
||||
box-shadow: 0 0 0 2px rgba(241, 154, 95, 0.15);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-dark #mealNote {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
/* System theme - follows user's OS preference */
|
||||
@media (prefers-color-scheme: dark) {
|
||||
.dog-calculator-container.theme-system {
|
||||
--bg-primary: #24202d;
|
||||
--bg-secondary: #312b3b;
|
||||
--bg-tertiary: #1f1b26;
|
||||
--border-color: #433c4f;
|
||||
--text-primary: #f5f3f7;
|
||||
--text-secondary: #b8b0c2;
|
||||
--text-label: #9f94ae;
|
||||
--success-color: #7fa464;
|
||||
--error-color: #e87159;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
@ -880,19 +724,6 @@
|
||||
background: #f19a5f;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-unit-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-unit-btn:disabled:hover {
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-results {
|
||||
background: linear-gradient(135deg, rgba(241, 154, 95, 0.15) 0%, rgba(241, 154, 95, 0.08) 100%);
|
||||
@ -934,43 +765,6 @@
|
||||
border-color: var(--success-color);
|
||||
color: var(--success-color);
|
||||
}
|
||||
|
||||
/* System theme feeding configuration styles in dark mode */
|
||||
.dog-calculator-container.theme-system .dog-calculator-feeding-config {
|
||||
background: var(--bg-tertiary);
|
||||
border-color: var(--border-color);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-frequency-row > label {
|
||||
color: var(--text-label);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-radio-group label {
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-radio-group input[type="radio"]:checked + span {
|
||||
color: #f19a5f;
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-meal-input span {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-meal-input input[type="number"] {
|
||||
background: var(--bg-secondary);
|
||||
border-color: var(--border-color);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system .dog-calculator-meal-input input[type="number"]:focus {
|
||||
border-color: #f19a5f;
|
||||
box-shadow: 0 0 0 2px rgba(241, 154, 95, 0.15);
|
||||
}
|
||||
|
||||
.dog-calculator-container.theme-system #mealNote {
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
}
|
||||
|
||||
/* Modal Styles */
|
||||
@ -1880,20 +1674,6 @@
|
||||
color: white;
|
||||
}
|
||||
|
||||
.dog-calculator-unit-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
.dog-calculator-unit-btn:disabled:hover {
|
||||
border-color: var(--border-color);
|
||||
background: var(--bg-tertiary);
|
||||
transform: none;
|
||||
}
|
||||
|
||||
/* Hidden unit select for compatibility */
|
||||
.dog-calculator-unit-select-hidden {
|
||||
display: none;
|
||||
@ -2110,8 +1890,6 @@ const CALCULATOR_CONFIG = {
|
||||
this.scale = this.getScaleFromURL() || CALCULATOR_CONFIG.defaultScale;
|
||||
this.foodSources = [];
|
||||
this.maxFoodSources = CALCULATOR_CONFIG.maxFoodSources;
|
||||
this.mealsPerDay = 2;
|
||||
this.showPerMeal = false;
|
||||
this.init();
|
||||
}
|
||||
|
||||
@ -2184,28 +1962,6 @@ const CALCULATOR_CONFIG = {
|
||||
<span>Add another food source</span>
|
||||
</button>
|
||||
|
||||
<!-- Feeding Configuration -->
|
||||
<div class="dog-calculator-feeding-config" id="feedingConfig" style="display: none;">
|
||||
<div class="dog-calculator-frequency-row">
|
||||
<label>Show amounts:</label>
|
||||
<div class="dog-calculator-radio-group">
|
||||
<label>
|
||||
<input type="radio" name="showAs" value="daily" id="showDaily" checked>
|
||||
<span>Per day</span>
|
||||
</label>
|
||||
<label>
|
||||
<input type="radio" name="showAs" value="meal" id="showPerMeal">
|
||||
<span>Per meal</span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="dog-calculator-meal-input" id="mealInputGroup" style="display: none;">
|
||||
<span>×</span>
|
||||
<input type="number" id="mealsPerDay" value="2" min="1" max="10">
|
||||
<span>meals/day</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Per-Food Results -->
|
||||
<div class="dog-calculator-food-results" id="foodBreakdownResults" style="display: none;">
|
||||
<div id="foodBreakdownList">
|
||||
@ -2219,7 +1975,6 @@ const CALCULATOR_CONFIG = {
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="kg">kg</button>
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="oz">oz</button>
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="lb">lb</button>
|
||||
<button type="button" class="dog-calculator-unit-btn" data-unit="cups" id="cupsButton" disabled title="Available when using kcal/cup measurement">cups</button>
|
||||
</div>
|
||||
|
||||
<!-- Daily Total Results -->
|
||||
@ -2236,14 +1991,13 @@ const CALCULATOR_CONFIG = {
|
||||
<option value="kg">kilograms (kg)</option>
|
||||
<option value="oz">ounces (oz)</option>
|
||||
<option value="lb">pounds (lb)</option>
|
||||
<option value="cups">cups</option>
|
||||
</select>
|
||||
|
||||
<div class="dog-calculator-food-amounts-section" id="foodAmountsSection" style="display: none;">
|
||||
<h4 class="dog-calculator-section-title">
|
||||
Calculate amounts for
|
||||
<input type="number" id="days" min="1" step="1" value="1" placeholder="1" aria-describedby="daysHelp" class="dog-calculator-inline-days">
|
||||
<span id="dayLabel">day</span><span id="mealNote" style="display: none;"></span>:
|
||||
<span id="dayLabel">day</span>:
|
||||
</h4>
|
||||
<div id="daysError" class="dog-calculator-error dog-calculator-hidden">Please enter a valid number of days (minimum 1)</div>
|
||||
<div id="foodAmountsList" class="dog-calculator-food-amounts-list">
|
||||
@ -2908,36 +2662,7 @@ const CALCULATOR_CONFIG = {
|
||||
if (energyInput) {
|
||||
energyInput.addEventListener('input', () => {
|
||||
this.updateFoodSourceData(id, 'energy', energyInput.value);
|
||||
|
||||
// Auto-select cups when entering energy for kcal/cup
|
||||
const foodSource = this.foodSources.find(fs => fs.id === id);
|
||||
if (foodSource && foodSource.energyUnit === 'kcalcup' && parseFloat(energyInput.value) > 0) {
|
||||
const unitSelect = this.container.querySelector('#unit');
|
||||
const cupsButton = this.container.querySelector('#cupsButton');
|
||||
|
||||
// First check if cups button will be enabled after update
|
||||
const willEnableCups = this.foodSources.some(fs =>
|
||||
fs.energyUnit === 'kcalcup' && fs.energy && parseFloat(fs.energy) > 0
|
||||
);
|
||||
|
||||
if (willEnableCups && unitSelect) {
|
||||
// Set cups BEFORE updating calculations
|
||||
unitSelect.value = 'cups';
|
||||
unitSelect.setAttribute('value', 'cups');
|
||||
this.setActiveUnitButton('cups');
|
||||
|
||||
// Enable the cups button manually since we know it will be valid
|
||||
if (cupsButton) {
|
||||
cupsButton.disabled = false;
|
||||
cupsButton.title = 'Show amounts in cups';
|
||||
}
|
||||
}
|
||||
|
||||
// Now update calculations with cups already selected
|
||||
this.updateFoodCalculations();
|
||||
} else {
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
this.updateFoodCalculations();
|
||||
});
|
||||
energyInput.addEventListener('blur', () => this.validateFoodSourceEnergy(id));
|
||||
}
|
||||
@ -2945,54 +2670,7 @@ const CALCULATOR_CONFIG = {
|
||||
if (energyUnitSelect) {
|
||||
energyUnitSelect.addEventListener('change', () => {
|
||||
this.updateFoodSourceData(id, 'energyUnit', energyUnitSelect.value);
|
||||
|
||||
// Auto-select the most appropriate unit based on energy unit
|
||||
const unitSelect = this.container.querySelector('#unit');
|
||||
const energyInput = document.getElementById(`energy-${id}`);
|
||||
|
||||
if (unitSelect) {
|
||||
switch(energyUnitSelect.value) {
|
||||
case 'kcalcup':
|
||||
// Check if we have energy value to enable cups
|
||||
const foodSource = this.foodSources.find(fs => fs.id === id);
|
||||
if (foodSource && foodSource.energy && parseFloat(foodSource.energy) > 0) {
|
||||
// Set cups BEFORE updating calculations
|
||||
unitSelect.value = 'cups';
|
||||
unitSelect.setAttribute('value', 'cups');
|
||||
this.setActiveUnitButton('cups');
|
||||
|
||||
// Enable the cups button manually
|
||||
const cupsButton = this.container.querySelector('#cupsButton');
|
||||
if (cupsButton) {
|
||||
cupsButton.disabled = false;
|
||||
cupsButton.title = 'Show amounts in cups';
|
||||
}
|
||||
}
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
case 'kcal100g':
|
||||
// For kcal/100g, select grams
|
||||
unitSelect.value = 'g';
|
||||
this.setActiveUnitButton('g');
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
case 'kcalkg':
|
||||
// For kcal/kg, also select grams (or could be kg)
|
||||
unitSelect.value = 'g';
|
||||
this.setActiveUnitButton('g');
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
case 'kcalcan':
|
||||
// For kcal/can, use grams as default (or ounces in imperial)
|
||||
unitSelect.value = this.isImperial ? 'oz' : 'g';
|
||||
this.setActiveUnitButton(unitSelect.value);
|
||||
this.updateFoodCalculations();
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
// No unit select, just update calculations
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
this.updateFoodCalculations();
|
||||
});
|
||||
}
|
||||
|
||||
@ -3162,58 +2840,6 @@ const CALCULATOR_CONFIG = {
|
||||
|
||||
if (addFoodBtn) addFoodBtn.addEventListener('click', () => this.addFoodSource());
|
||||
|
||||
// Feeding configuration event listeners
|
||||
const showDaily = this.container.querySelector('#showDaily');
|
||||
const showPerMeal = this.container.querySelector('#showPerMeal');
|
||||
const mealsPerDayInput = this.container.querySelector('#mealsPerDay');
|
||||
const mealInputGroup = this.container.querySelector('#mealInputGroup');
|
||||
|
||||
if (showDaily) {
|
||||
showDaily.addEventListener('change', () => {
|
||||
if (showDaily.checked) {
|
||||
this.showPerMeal = false;
|
||||
if (mealInputGroup) mealInputGroup.style.display = 'none';
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (showPerMeal) {
|
||||
showPerMeal.addEventListener('change', () => {
|
||||
if (showPerMeal.checked) {
|
||||
this.showPerMeal = true;
|
||||
if (mealInputGroup) mealInputGroup.style.display = 'inline-flex';
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (mealsPerDayInput) {
|
||||
mealsPerDayInput.addEventListener('input', () => {
|
||||
const meals = parseInt(mealsPerDayInput.value);
|
||||
if (meals && meals >= 1 && meals <= 10) {
|
||||
this.mealsPerDay = meals;
|
||||
if (this.showPerMeal) {
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
mealsPerDayInput.addEventListener('blur', () => {
|
||||
if (!mealsPerDayInput.value || parseInt(mealsPerDayInput.value) < 1) {
|
||||
mealsPerDayInput.value = 2;
|
||||
this.mealsPerDay = 2;
|
||||
if (this.showPerMeal) {
|
||||
this.updateDayLabel();
|
||||
this.updateFoodCalculations();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Modal event listeners
|
||||
const shareBtn = this.container.querySelector('#shareBtn');
|
||||
const embedBtn = this.container.querySelector('#embedBtn');
|
||||
@ -3390,7 +3016,7 @@ const CALCULATOR_CONFIG = {
|
||||
}
|
||||
}
|
||||
|
||||
convertUnits(grams, unit, foodSource = null) {
|
||||
convertUnits(grams, unit) {
|
||||
switch (unit) {
|
||||
case 'kg':
|
||||
return grams / 1000;
|
||||
@ -3398,18 +3024,6 @@ const CALCULATOR_CONFIG = {
|
||||
return grams / 28.3495;
|
||||
case 'lb':
|
||||
return grams / 453.592;
|
||||
case 'cups':
|
||||
// For cups, we need to convert from grams worth of calories to cups
|
||||
if (foodSource && foodSource.energyUnit === 'kcalcup' && foodSource.energy) {
|
||||
// Get calories per 100g for this food
|
||||
const caloriesPerGram = this.getFoodSourceEnergyPer100g(foodSource) / 100;
|
||||
// Calculate total calories represented by these grams
|
||||
const totalCalories = grams * caloriesPerGram;
|
||||
// Divide by calories per cup to get number of cups
|
||||
const caloriesPerCup = parseFloat(foodSource.energy);
|
||||
return totalCalories / caloriesPerCup;
|
||||
}
|
||||
return null; // Cannot convert to cups without kcal/cup
|
||||
default:
|
||||
return grams;
|
||||
}
|
||||
@ -3444,21 +3058,10 @@ const CALCULATOR_CONFIG = {
|
||||
updateDayLabel() {
|
||||
const days = this.container.querySelector('#days')?.value;
|
||||
const dayLabel = this.container.querySelector('#dayLabel');
|
||||
const mealNote = this.container.querySelector('#mealNote');
|
||||
if (dayLabel && days) {
|
||||
const numDays = parseInt(days);
|
||||
dayLabel.textContent = numDays === 1 ? 'day' : 'days';
|
||||
}
|
||||
if (mealNote) {
|
||||
if (this.showPerMeal && days) {
|
||||
const numDays = parseInt(days);
|
||||
const totalMeals = numDays * this.mealsPerDay;
|
||||
mealNote.textContent = ` (${totalMeals} meal${totalMeals === 1 ? '' : 's'} total)`;
|
||||
mealNote.style.display = 'inline';
|
||||
} else {
|
||||
mealNote.style.display = 'none';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
setActiveUnitButton(unit) {
|
||||
@ -3513,31 +3116,6 @@ const CALCULATOR_CONFIG = {
|
||||
this.sendHeightToParent();
|
||||
}
|
||||
|
||||
updateCupsButtonState() {
|
||||
const cupsButton = this.container.querySelector('#cupsButton');
|
||||
if (!cupsButton) return;
|
||||
|
||||
// Check if any food source has kcal/cup selected
|
||||
const hasKcalCup = this.foodSources.some(fs =>
|
||||
fs.energyUnit === 'kcalcup' && fs.energy && parseFloat(fs.energy) > 0
|
||||
);
|
||||
|
||||
if (hasKcalCup) {
|
||||
cupsButton.disabled = false;
|
||||
cupsButton.title = 'Show amounts in cups';
|
||||
} else {
|
||||
cupsButton.disabled = true;
|
||||
cupsButton.title = 'Available when using kcal/cup measurement';
|
||||
|
||||
// If cups was selected, switch back to grams
|
||||
const unitSelect = this.container.querySelector('#unit');
|
||||
if (unitSelect && unitSelect.value === 'cups') {
|
||||
unitSelect.value = 'g';
|
||||
this.setActiveUnitButton('g');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
updateFoodCalculations() {
|
||||
if (this.currentMER === 0) return;
|
||||
|
||||
@ -3550,36 +3128,15 @@ const CALCULATOR_CONFIG = {
|
||||
const totalAmountDisplay = this.container.querySelector('#totalAmountDisplay');
|
||||
const foodBreakdownResults = this.container.querySelector('#foodBreakdownResults');
|
||||
const foodBreakdownList = this.container.querySelector('#foodBreakdownList');
|
||||
const feedingConfig = this.container.querySelector('#feedingConfig');
|
||||
|
||||
// Update cups button state
|
||||
this.updateCupsButtonState();
|
||||
|
||||
if (!daysInput || !unitSelect || !dailyFoodResults || !dailyFoodValue || !foodAmountsSection) {
|
||||
return;
|
||||
}
|
||||
|
||||
const days = daysInput.value;
|
||||
let unit = unitSelect.value;
|
||||
|
||||
// Failsafe: if unit is empty string but cups button is active, use 'cups'
|
||||
if (!unit || unit === '') {
|
||||
const activeButton = this.container.querySelector('.dog-calculator-unit-btn.active');
|
||||
if (activeButton) {
|
||||
unit = activeButton.dataset.unit || 'g';
|
||||
} else {
|
||||
unit = 'g'; // Default fallback
|
||||
}
|
||||
}
|
||||
|
||||
const unitLabel = unit === 'g' ? 'g' : unit === 'kg' ? 'kg' : unit === 'oz' ? 'oz' : unit === 'lb' ? 'lb' : 'cups';
|
||||
const decimals = unit === 'g' ? 0 : unit === 'kg' ? 2 : unit === 'cups' ? 1 : 1;
|
||||
|
||||
// Debug: log what unit is being used
|
||||
console.log('UpdateFoodCalculations - unit:', unit, 'unitLabel:', unitLabel);
|
||||
|
||||
// Determine frequency suffix for display
|
||||
const frequencySuffix = this.showPerMeal ? '/meal' : '/day';
|
||||
const unit = unitSelect.value;
|
||||
const unitLabel = unit === 'g' ? 'g' : unit === 'kg' ? 'kg' : unit === 'oz' ? 'oz' : 'lb';
|
||||
const decimals = unit === 'g' ? 0 : unit === 'kg' ? 2 : 1;
|
||||
|
||||
// Clear all food source errors first
|
||||
this.foodSources.forEach(fs => {
|
||||
@ -3593,7 +3150,6 @@ const CALCULATOR_CONFIG = {
|
||||
foodAmountsSection.style.display = 'none';
|
||||
dailyFoodResults.style.display = 'none';
|
||||
if (foodBreakdownResults) foodBreakdownResults.style.display = 'none';
|
||||
if (feedingConfig) feedingConfig.style.display = 'none';
|
||||
|
||||
// Hide unit buttons when validation fails
|
||||
const unitButtons = this.container.querySelector('#unitButtons');
|
||||
@ -3613,44 +3169,15 @@ const CALCULATOR_CONFIG = {
|
||||
|
||||
if (energyPer100g && energyPer100g > 0.1 && fs.percentage > 0) {
|
||||
const dailyCaloriesForThisFood = (this.currentMER * fs.percentage) / 100;
|
||||
let dailyGramsForThisFood;
|
||||
let dailyCupsForThisFood = null;
|
||||
|
||||
// For kcal/cup, calculate cups directly from calories
|
||||
if (fs.energyUnit === 'kcalcup' && fs.energy) {
|
||||
const caloriesPerCup = parseFloat(fs.energy);
|
||||
dailyCupsForThisFood = dailyCaloriesForThisFood / caloriesPerCup;
|
||||
// We still need grams for total calculation, use approximation
|
||||
dailyGramsForThisFood = (dailyCaloriesForThisFood / energyPer100g) * 100;
|
||||
console.log('Cups calculation:', {
|
||||
caloriesPerCup,
|
||||
dailyCaloriesForThisFood,
|
||||
dailyCupsForThisFood,
|
||||
dailyGramsForThisFood
|
||||
});
|
||||
} else {
|
||||
// For other units, calculate grams normally
|
||||
dailyGramsForThisFood = (dailyCaloriesForThisFood / energyPer100g) * 100;
|
||||
}
|
||||
|
||||
// Calculate per-meal amounts if needed
|
||||
const displayGrams = this.showPerMeal ? dailyGramsForThisFood / this.mealsPerDay : dailyGramsForThisFood;
|
||||
const displayCups = dailyCupsForThisFood !== null ?
|
||||
(this.showPerMeal ? dailyCupsForThisFood / this.mealsPerDay : dailyCupsForThisFood) : null;
|
||||
const displayCalories = this.showPerMeal ? dailyCaloriesForThisFood / this.mealsPerDay : dailyCaloriesForThisFood;
|
||||
const dailyGramsForThisFood = (dailyCaloriesForThisFood / energyPer100g) * 100;
|
||||
|
||||
foodBreakdowns.push({
|
||||
name: fs.name,
|
||||
percentage: fs.percentage,
|
||||
dailyGrams: dailyGramsForThisFood,
|
||||
displayGrams: displayGrams,
|
||||
dailyCups: dailyCupsForThisFood,
|
||||
displayCups: displayCups,
|
||||
calories: dailyCaloriesForThisFood,
|
||||
displayCalories: displayCalories,
|
||||
isLocked: fs.isLocked,
|
||||
hasEnergyContent: true,
|
||||
foodSource: fs // Store reference for cups conversion
|
||||
hasEnergyContent: true
|
||||
});
|
||||
|
||||
totalDailyGrams += dailyGramsForThisFood;
|
||||
@ -3661,14 +3188,9 @@ const CALCULATOR_CONFIG = {
|
||||
name: fs.name,
|
||||
percentage: fs.percentage,
|
||||
dailyGrams: 0,
|
||||
displayGrams: 0,
|
||||
dailyCups: null,
|
||||
displayCups: null,
|
||||
calories: 0,
|
||||
displayCalories: 0,
|
||||
isLocked: fs.isLocked,
|
||||
hasEnergyContent: false,
|
||||
foodSource: fs // Store reference for cups conversion
|
||||
hasEnergyContent: false
|
||||
});
|
||||
}
|
||||
});
|
||||
@ -3684,7 +3206,6 @@ const CALCULATOR_CONFIG = {
|
||||
|
||||
dailyFoodResults.style.display = 'none';
|
||||
if (foodBreakdownResults) foodBreakdownResults.style.display = 'none';
|
||||
if (feedingConfig) feedingConfig.style.display = 'none';
|
||||
|
||||
// Hide unit buttons when no valid foods
|
||||
const unitButtons = this.container.querySelector('#unitButtons');
|
||||
@ -3731,17 +3252,6 @@ const CALCULATOR_CONFIG = {
|
||||
// Update daily food results (total) - will be updated with proper units later
|
||||
dailyFoodResults.style.display = 'block';
|
||||
|
||||
// Show feeding configuration when we have valid foods
|
||||
if (feedingConfig) {
|
||||
feedingConfig.style.display = 'block';
|
||||
|
||||
// Ensure "Per day" is checked when feeding config becomes visible
|
||||
const showDaily = this.container.querySelector('#showDaily');
|
||||
if (showDaily && !showDaily.checked && !this.container.querySelector('#showPerMeal').checked) {
|
||||
showDaily.checked = true;
|
||||
}
|
||||
}
|
||||
|
||||
// Show unit buttons when daily results are shown
|
||||
const unitButtons = this.container.querySelector('#unitButtons');
|
||||
if (unitButtons) unitButtons.style.display = 'flex';
|
||||
@ -3749,21 +3259,9 @@ const CALCULATOR_CONFIG = {
|
||||
// Update per-food breakdown
|
||||
if (foodBreakdownList && foodBreakdowns.length > 1) {
|
||||
const breakdownHTML = foodBreakdowns.map(breakdown => {
|
||||
let valueContent;
|
||||
if (breakdown.hasEnergyContent) {
|
||||
if (unit === 'cups') {
|
||||
// For cups, use the pre-calculated cups value if available
|
||||
if (breakdown.displayCups !== null) {
|
||||
valueContent = `${this.formatNumber(breakdown.displayCups, decimals)} ${unitLabel}${frequencySuffix}`;
|
||||
} else {
|
||||
valueContent = `<span class="dog-calculator-warning" title="Cups only available for foods with kcal/cup measurement">N/A</span>`;
|
||||
}
|
||||
} else {
|
||||
valueContent = `${this.formatNumber(this.convertUnits(breakdown.displayGrams, unit), decimals)} ${unitLabel}${frequencySuffix}`;
|
||||
}
|
||||
} else {
|
||||
valueContent = `<span class="dog-calculator-warning" title="Enter energy content to calculate amount">⚠️</span>`;
|
||||
}
|
||||
const valueContent = breakdown.hasEnergyContent
|
||||
? `${this.formatNumber(this.convertUnits(breakdown.dailyGrams, unit), decimals)} ${unitLabel}/day`
|
||||
: `<span class="dog-calculator-warning" title="Enter energy content to calculate amount">⚠️</span>`;
|
||||
|
||||
return `
|
||||
<div class="dog-calculator-food-result-item">
|
||||
@ -3782,41 +3280,8 @@ const CALCULATOR_CONFIG = {
|
||||
// Generate individual food amount breakdown
|
||||
|
||||
// Update daily food value with correct units
|
||||
const displayTotal = this.showPerMeal ? totalDailyGrams / this.mealsPerDay : totalDailyGrams;
|
||||
let convertedTotal;
|
||||
let totalDisplayText;
|
||||
|
||||
if (unit === 'cups') {
|
||||
console.log('Unit is cups, checking validity...');
|
||||
// For cups, we can only show total if all foods with percentage > 0 have kcal/cup
|
||||
const validForCups = foodBreakdowns.filter(b => b.percentage > 0)
|
||||
.every(b => b.displayCups !== null && b.displayCups !== undefined);
|
||||
|
||||
console.log('Valid for cups?', validForCups, 'Breakdowns:', foodBreakdowns);
|
||||
|
||||
if (validForCups) {
|
||||
// Calculate total cups using pre-calculated values
|
||||
let totalCups = 0;
|
||||
foodBreakdowns.forEach(breakdown => {
|
||||
if (breakdown.percentage > 0 && breakdown.displayCups !== null) {
|
||||
totalCups += breakdown.displayCups;
|
||||
}
|
||||
});
|
||||
console.log('Total cups display:', {
|
||||
totalCups,
|
||||
displayTotal,
|
||||
foodBreakdowns: foodBreakdowns.map(b => ({ name: b.name, displayCups: b.displayCups }))
|
||||
});
|
||||
totalDisplayText = this.formatNumber(totalCups, decimals) + ` ${unitLabel}${frequencySuffix}`;
|
||||
} else {
|
||||
totalDisplayText = 'Mixed units - see breakdown';
|
||||
}
|
||||
} else {
|
||||
convertedTotal = this.convertUnits(displayTotal, unit);
|
||||
totalDisplayText = this.formatNumber(convertedTotal, decimals) + ` ${unitLabel}${frequencySuffix}`;
|
||||
}
|
||||
|
||||
dailyFoodValue.textContent = totalDisplayText;
|
||||
const convertedDailyTotal = this.convertUnits(totalDailyGrams, unit);
|
||||
dailyFoodValue.textContent = this.formatNumber(convertedDailyTotal, decimals) + ` ${unitLabel}/day`;
|
||||
|
||||
// Build HTML for individual food amounts
|
||||
const foodAmountsHTML = foodBreakdowns.map(breakdown => {
|
||||
@ -3837,24 +3302,8 @@ const CALCULATOR_CONFIG = {
|
||||
</div>
|
||||
`;
|
||||
} else {
|
||||
// For multi-day calculations: show total amount for all days
|
||||
let amountDisplay;
|
||||
if (unit === 'cups') {
|
||||
// For cups, use pre-calculated cups value
|
||||
if (breakdown.dailyCups !== null) {
|
||||
const totalCupsForDays = breakdown.dailyCups * numDays;
|
||||
amountDisplay = `${this.formatNumber(totalCupsForDays, decimals)} ${unitLabel}`;
|
||||
} else {
|
||||
amountDisplay = `<span class="dog-calculator-warning" title="Cups only available for foods with kcal/cup measurement">N/A</span>`;
|
||||
}
|
||||
} else {
|
||||
// For other units, calculate from grams
|
||||
const totalGramsForDays = this.showPerMeal
|
||||
? (breakdown.dailyGrams / this.mealsPerDay) * numDays * this.mealsPerDay
|
||||
: breakdown.dailyGrams * numDays;
|
||||
const convertedAmount = this.convertUnits(totalGramsForDays, unit);
|
||||
amountDisplay = `${this.formatNumber(convertedAmount, decimals)} ${unitLabel}`;
|
||||
}
|
||||
const totalGramsForDays = breakdown.dailyGrams * numDays;
|
||||
const convertedAmount = this.convertUnits(totalGramsForDays, unit);
|
||||
|
||||
return `
|
||||
<div class="dog-calculator-food-amount-item">
|
||||
@ -3864,7 +3313,7 @@ const CALCULATOR_CONFIG = {
|
||||
${lockIndicator}
|
||||
</div>
|
||||
<div class="dog-calculator-food-amount-value">
|
||||
${amountDisplay}
|
||||
${this.formatNumber(convertedAmount, decimals)} ${unitLabel}
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
@ -3873,6 +3322,7 @@ const CALCULATOR_CONFIG = {
|
||||
|
||||
// Calculate and display total
|
||||
const totalFoodGrams = totalDailyGrams * numDays;
|
||||
const totalConverted = this.convertUnits(totalFoodGrams, unit);
|
||||
|
||||
// Update the display
|
||||
if (foodAmountsList) {
|
||||
@ -3880,27 +3330,7 @@ const CALCULATOR_CONFIG = {
|
||||
}
|
||||
|
||||
if (totalAmountDisplay) {
|
||||
if (unit === 'cups') {
|
||||
// For cups total, check if all foods can be converted
|
||||
const validForCups = foodBreakdowns.filter(b => b.percentage > 0)
|
||||
.every(b => b.dailyCups !== null && b.dailyCups !== undefined);
|
||||
|
||||
if (validForCups) {
|
||||
// Calculate total cups using pre-calculated values
|
||||
let totalCups = 0;
|
||||
foodBreakdowns.forEach(breakdown => {
|
||||
if (breakdown.percentage > 0 && breakdown.dailyCups !== null) {
|
||||
totalCups += breakdown.dailyCups * numDays;
|
||||
}
|
||||
});
|
||||
totalAmountDisplay.textContent = `${this.formatNumber(totalCups, decimals)} ${unitLabel}`;
|
||||
} else {
|
||||
totalAmountDisplay.textContent = 'Mixed units - see individual amounts';
|
||||
}
|
||||
} else {
|
||||
const totalConverted = this.convertUnits(totalFoodGrams, unit);
|
||||
totalAmountDisplay.textContent = `${this.formatNumber(totalConverted, decimals)} ${unitLabel}`;
|
||||
}
|
||||
totalAmountDisplay.textContent = `${this.formatNumber(totalConverted, decimals)} ${unitLabel}`;
|
||||
}
|
||||
|
||||
foodAmountsSection.style.display = 'block';
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user