Mehrere an einem Tag

This commit is contained in:
jafreli
2025-07-18 23:16:44 +02:00
parent 866e6c95b7
commit 93f6026346
5 changed files with 337 additions and 84 deletions

84
app.py
View File

@@ -29,16 +29,34 @@ def get_habits():
last_30_days = get_last_30_days() last_30_days = get_last_30_days()
for habit_doc in raw_habits: for habit_doc in raw_habits:
# Handle migration from old format (list) to new format (dict)
completed_dates = habit_doc.get('completed_dates', {})
if isinstance(completed_dates, list):
# Convert old format to new format
new_completed_dates = {}
for date in completed_dates:
new_completed_dates[date] = 1
completed_dates = new_completed_dates
# Update in database
db.update({'completed_dates': completed_dates}, doc_ids=[habit_doc.doc_id])
current_habit_data = { current_habit_data = {
'id': habit_doc.doc_id, 'id': habit_doc.doc_id,
'name': habit_doc.get('name'), 'name': habit_doc.get('name'),
'completed_dates': habit_doc.get('completed_dates', []), 'completed_dates': completed_dates,
'color': habit_doc.get('color', '#4CAF50') 'color': habit_doc.get('color', '#4CAF50'),
'daily_target': habit_doc.get('daily_target', 1)
} }
completion_history = {} completion_history = {}
for date_str in last_30_days: for date_str in last_30_days:
completion_history[date_str] = date_str in current_habit_data['completed_dates'] completed_count = completed_dates.get(date_str, 0)
target_count = current_habit_data['daily_target']
completion_history[date_str] = {
'completed': completed_count,
'target': target_count,
'is_complete': completed_count >= target_count
}
current_habit_data['completion_history'] = completion_history current_habit_data['completion_history'] = completion_history
formatted_habits.append(current_habit_data) formatted_habits.append(current_habit_data)
@@ -50,11 +68,12 @@ def add_habit():
data = request.json data = request.json
name = data.get('name') name = data.get('name')
color = data.get('color', '#4CAF50') # Default green color color = data.get('color', '#4CAF50') # Default green color
daily_target = data.get('daily_target', 1) # Default 1x per day
if not name: if not name:
return jsonify({'error': 'Habit name is required'}), 400 return jsonify({'error': 'Habit name is required'}), 400
habit_id = db.insert({'name': name, 'completed_dates': [], 'color': color}) habit_id = db.insert({'name': name, 'completed_dates': {}, 'color': color, 'daily_target': daily_target})
return jsonify({'id': habit_id, 'name': name, 'completed_dates': [], 'color': color}), 201 return jsonify({'id': habit_id, 'name': name, 'completed_dates': {}, 'color': color, 'daily_target': daily_target}), 201
@app.route('/habits/<int:habit_id>/complete', methods=['POST']) @app.route('/habits/<int:habit_id>/complete', methods=['POST'])
def complete_habit(habit_id): def complete_habit(habit_id):
@@ -64,11 +83,25 @@ def complete_habit(habit_id):
if not habit: if not habit:
return jsonify({'error': 'Habit not found'}), 404 return jsonify({'error': 'Habit not found'}), 404
if date_to_complete not in habit['completed_dates']: # Handle migration from old format (list) to new format (dict)
habit['completed_dates'].append(date_to_complete) completed_dates = habit.get('completed_dates', {})
db.update({'completed_dates': habit['completed_dates']}, doc_ids=[habit_id]) if isinstance(completed_dates, list):
new_completed_dates = {}
for date in completed_dates:
new_completed_dates[date] = 1
completed_dates = new_completed_dates
return jsonify({'message': f'Habit {habit_id} marked as completed for {date_to_complete}', 'completed_dates': habit['completed_dates']}) # Increment completion count for the date
current_count = completed_dates.get(date_to_complete, 0)
completed_dates[date_to_complete] = current_count + 1
db.update({'completed_dates': completed_dates}, doc_ids=[habit_id])
return jsonify({
'message': f'Habit {habit_id} marked as completed for {date_to_complete}',
'completed_dates': completed_dates,
'current_count': completed_dates[date_to_complete]
})
@app.route('/habits/<int:habit_id>/uncomplete', methods=['POST']) @app.route('/habits/<int:habit_id>/uncomplete', methods=['POST'])
def uncomplete_habit(habit_id): def uncomplete_habit(habit_id):
@@ -78,20 +111,39 @@ def uncomplete_habit(habit_id):
if not habit: if not habit:
return jsonify({'error': 'Habit not found'}), 404 return jsonify({'error': 'Habit not found'}), 404
if date_to_uncomplete in habit['completed_dates']: # Handle migration from old format (list) to new format (dict)
habit['completed_dates'].remove(date_to_uncomplete) completed_dates = habit.get('completed_dates', {})
db.update({'completed_dates': habit['completed_dates']}, doc_ids=[habit_id]) if isinstance(completed_dates, list):
new_completed_dates = {}
for date in completed_dates:
new_completed_dates[date] = 1
completed_dates = new_completed_dates
return jsonify({'message': f'Habit {habit_id} marked as uncompleted for {date_to_uncomplete}', 'completed_dates': habit['completed_dates']}) # Decrement completion count for the date
if date_to_uncomplete in completed_dates:
current_count = completed_dates[date_to_uncomplete]
if current_count > 1:
completed_dates[date_to_uncomplete] = current_count - 1
else:
del completed_dates[date_to_uncomplete]
db.update({'completed_dates': completed_dates}, doc_ids=[habit_id])
return jsonify({
'message': f'Habit {habit_id} marked as uncompleted for {date_to_uncomplete}',
'completed_dates': completed_dates,
'current_count': completed_dates.get(date_to_uncomplete, 0)
})
@app.route('/habits/<int:habit_id>', methods=['PUT']) @app.route('/habits/<int:habit_id>', methods=['PUT'])
def update_habit(habit_id): def update_habit(habit_id):
data = request.json data = request.json
name = data.get('name') name = data.get('name')
color = data.get('color') color = data.get('color')
daily_target = data.get('daily_target')
if not name and not color: if not name and not color and not daily_target:
return jsonify({'error': 'Habit name or color is required'}), 400 return jsonify({'error': 'Habit name, color, or daily target is required'}), 400
habit = db.get(doc_id=habit_id) habit = db.get(doc_id=habit_id)
if not habit: if not habit:
@@ -102,6 +154,8 @@ def update_habit(habit_id):
update_data['name'] = name update_data['name'] = name
if color: if color:
update_data['color'] = color update_data['color'] = color
if daily_target:
update_data['daily_target'] = int(daily_target)
db.update(update_data, doc_ids=[habit_id]) db.update(update_data, doc_ids=[habit_id])
return jsonify({'message': f'Habit {habit_id} updated', **update_data}) return jsonify({'message': f'Habit {habit_id} updated', **update_data})

View File

@@ -1 +1 @@
{"_default": {"1": {"name": "Mega Zock", "completed_dates": ["2025-07-14", "2025-08-01", "2025-08-09", "2025-08-17", "2025-07-01", "2025-07-16", "2025-07-10", "2025-07-15", "2025-07-09", "2025-07-11", "2025-07-12", "2025-07-13", "2025-07-06", "2025-07-05", "2025-07-04", "2025-07-03", "2025-07-02", "2025-07-08", "2025-07-07"], "color": "#08680c"}, "2": {"name": "Laufen", "completed_dates": [], "color": "#1a3ed1"}}} {"_default": {"1": {"name": "Mega Zock", "completed_dates": {"2025-07-14": 1, "2025-08-01": 1, "2025-08-09": 1, "2025-08-17": 1, "2025-07-01": 1, "2025-07-16": 1, "2025-07-10": 1, "2025-07-15": 1, "2025-07-09": 1, "2025-07-11": 1, "2025-07-12": 1, "2025-07-13": 1, "2025-07-06": 1, "2025-07-05": 1, "2025-07-04": 1, "2025-07-03": 1, "2025-07-02": 1, "2025-07-08": 1, "2025-07-07": 1}, "color": "#14cc1a"}, "2": {"name": "Laufen", "completed_dates": {}, "color": "#1a3ed1"}, "3": {"name": "Essen", "completed_dates": {"2025-07-18": 20, "2025-07-19": 5, "2025-07-17": 14, "2025-07-10": 1, "2025-07-11": 1, "2025-07-12": 1, "2025-07-20": 6, "2025-07-16": 1, "2025-07-15": 11, "2025-07-26": 3}, "color": "#fcfcfc", "daily_target": 20}}}

View File

@@ -137,6 +137,10 @@ h1 {
background-color: var(--habit-color, #4CAF50); background-color: var(--habit-color, #4CAF50);
} }
.date-square.partial {
background: linear-gradient(to right, var(--habit-color, #4CAF50) var(--completion-percentage, 50%), #555 var(--completion-percentage, 50%));
}
/* Modal Styles */ /* Modal Styles */
.modal { .modal {
display: none; display: none;
@@ -258,6 +262,11 @@ h1 {
color: var(--current-habit-text-color, white); color: var(--current-habit-text-color, white);
} }
.date-cell.partial {
background: linear-gradient(to right, var(--current-habit-color, #4CAF50) var(--completion-percentage, 50%), #444 var(--completion-percentage, 50%));
color: #e0e0e0;
}
.date-cell.today { .date-cell.today {
border: 2px solid #007bff; border: 2px solid #007bff;
/* Highlight today */ /* Highlight today */
@@ -268,6 +277,19 @@ h1 {
cursor: default; cursor: default;
} }
.date-day {
font-size: 1em;
font-weight: bold;
line-height: 1;
}
.date-counter {
font-size: 0.7em;
opacity: 0.8;
line-height: 1;
margin-top: 2px;
}
.streak-container { .streak-container {
display: flex; display: flex;
align-items: center; align-items: center;
@@ -356,4 +378,31 @@ h1 {
border-radius: 50%; border-radius: 50%;
cursor: pointer; cursor: pointer;
background: none; background: none;
}
.daily-target-section {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
gap: 10px;
}
.daily-target-section label {
color: #e0e0e0;
font-weight: bold;
}
#habitDailyTarget {
width: 60px;
padding: 5px;
border: 1px solid #444;
border-radius: 5px;
background-color: #333;
color: #e0e0e0;
text-align: center;
}
.daily-target-section span {
color: #e0e0e0;
} }

View File

@@ -11,8 +11,9 @@ const modalDeleteBtn = document.getElementById('modalDeleteBtn'); // Neu hinzuge
let currentHabitId = null; // Stellt sicher, dass diese globale Variable korrekt ist let currentHabitId = null; // Stellt sicher, dass diese globale Variable korrekt ist
let currentModalDate = new Date(); // Aktueller Monat im Modal let currentModalDate = new Date(); // Aktueller Monat im Modal
let currentHabitCompletedDates = []; // Completed dates für das aktuelle Habit let currentHabitCompletedDates = {}; // Completed dates für das aktuelle Habit (now object with counts)
let currentHabitColor = '#4CAF50'; // Current habit color let currentHabitColor = '#4CAF50'; // Current habit color
let currentHabitDailyTarget = 1; // Current habit daily target
function getCurrentDate() { function getCurrentDate() {
const today = new Date(); const today = new Date();
@@ -35,28 +36,27 @@ function getPastDates(days) {
return dates; return dates;
} }
function calculateStreak(completedDates) { function calculateStreak(completedDates, dailyTarget) {
if (!completedDates || completedDates.length === 0) { if (!completedDates || Object.keys(completedDates).length === 0) {
return 0; return 0;
} }
// Sort dates in descending order (newest first)
const sortedDates = completedDates.sort((a, b) => new Date(b) - new Date(a));
const today = getCurrentDate(); const today = getCurrentDate();
let streak = 0; let streak = 0;
let currentDate = new Date(); let currentDate = new Date();
// Check if today is completed, if not, start from yesterday // Check if today is completed, if not, start from yesterday
if (!sortedDates.includes(today)) { const todayCount = completedDates[today] || 0;
if (todayCount < dailyTarget) {
currentDate.setDate(currentDate.getDate() - 1); currentDate.setDate(currentDate.getDate() - 1);
} }
// Count consecutive days backwards from today (or yesterday) // Count consecutive days backwards from today (or yesterday)
while (true) { while (true) {
const dateStr = `${currentDate.getFullYear()}-${String(currentDate.getMonth() + 1).padStart(2, '0')}-${String(currentDate.getDate()).padStart(2, '0')}`; const dateStr = `${currentDate.getFullYear()}-${String(currentDate.getMonth() + 1).padStart(2, '0')}-${String(currentDate.getDate()).padStart(2, '0')}`;
const count = completedDates[dateStr] || 0;
if (sortedDates.includes(dateStr)) { if (count >= dailyTarget) {
streak++; streak++;
currentDate.setDate(currentDate.getDate() - 1); currentDate.setDate(currentDate.getDate() - 1);
} else { } else {
@@ -101,19 +101,28 @@ function renderHabits(habits) {
const habitActions = document.createElement('div'); const habitActions = document.createElement('div');
habitActions.className = 'habit-actions'; habitActions.className = 'habit-actions';
// Haken-Button für heute abhaken/rückgängig machen // Haken-Button für heute abhaken/rückgängig machen mit Zähler
const todayToggleButton = document.createElement('button'); const todayToggleButton = document.createElement('button');
const today = getCurrentDate(); const today = getCurrentDate();
const isCompletedToday = habit.completed_dates && habit.completed_dates.includes(today); const todayCount = habit.completed_dates[today] || 0;
todayToggleButton.innerHTML = isCompletedToday ? '&#x2713;' : '&#x2713;'; // Checkmark symbol const dailyTarget = habit.daily_target || 1;
const isCompletedToday = todayCount >= dailyTarget;
// Show count if target > 1, otherwise just checkmark
if (dailyTarget > 1) {
todayToggleButton.innerHTML = `${todayCount}/${dailyTarget}`;
} else {
todayToggleButton.innerHTML = '&#x2713;'; // Checkmark symbol
}
todayToggleButton.className = isCompletedToday ? 'completed-today' : 'not-completed-today'; todayToggleButton.className = isCompletedToday ? 'completed-today' : 'not-completed-today';
todayToggleButton.onclick = () => toggleTodayCompletion(habit.id, today, todayToggleButton); todayToggleButton.onclick = () => toggleTodayCompletion(habit.id, today, todayToggleButton, habit.daily_target);
habitActions.appendChild(todayToggleButton); habitActions.appendChild(todayToggleButton);
// Drei-Punkte-Menü für erweiterte Optionen // Drei-Punkte-Menü für erweiterte Optionen
const menuButton = document.createElement('button'); const menuButton = document.createElement('button');
menuButton.innerHTML = '&#x22EE;'; // Vertical ellipsis (drei Punkte) menuButton.innerHTML = '&#x22EE;'; // Vertical ellipsis (drei Punkte)
menuButton.onclick = () => openHabitModal(habit.id, habit.name, habit.completed_dates, habitColor); menuButton.onclick = () => openHabitModal(habit.id, habit.name, habit.completed_dates, habitColor, habit.daily_target);
habitActions.appendChild(menuButton); habitActions.appendChild(menuButton);
habitHeader.appendChild(habitActions); habitHeader.appendChild(habitActions);
habitItem.appendChild(habitHeader); habitItem.appendChild(habitHeader);
@@ -124,10 +133,18 @@ function renderHabits(habits) {
last30Days.forEach(date => { last30Days.forEach(date => {
const dateSquare = document.createElement('div'); const dateSquare = document.createElement('div');
dateSquare.className = 'date-square'; dateSquare.className = 'date-square';
if (habit.completed_dates && habit.completed_dates.includes(date)) { const dateCount = habit.completed_dates[date] || 0;
dateSquare.classList.add('completed'); const isCompleted = dateCount >= dailyTarget;
// Apply gradient styling based on completion percentage
applyCompletionStyling(dateSquare, dateCount, dailyTarget, habitColor);
// Show count in tooltip if target > 1
if (dailyTarget > 1) {
dateSquare.title = `${date}: ${dateCount}/${dailyTarget}`;
} else {
dateSquare.title = date;
} }
dateSquare.title = date; // Show date on hover
dateGrid.appendChild(dateSquare); dateGrid.appendChild(dateSquare);
}); });
habitItem.appendChild(dateGrid); habitItem.appendChild(dateGrid);
@@ -142,7 +159,7 @@ function renderHabits(habits) {
const streakCount = document.createElement('span'); const streakCount = document.createElement('span');
streakCount.className = 'streak-count'; streakCount.className = 'streak-count';
const currentStreak = calculateStreak(habit.completed_dates); const currentStreak = calculateStreak(habit.completed_dates, dailyTarget);
streakCount.textContent = `${currentStreak} Tag${currentStreak !== 1 ? 'e' : ''}`; streakCount.textContent = `${currentStreak} Tag${currentStreak !== 1 ? 'e' : ''}`;
streakContainer.appendChild(flameIcon); streakContainer.appendChild(flameIcon);
@@ -177,10 +194,11 @@ async function addHabit() {
} }
} }
async function openHabitModal(habitId, habitName, completedDates, habitColor = '#4CAF50') { async function openHabitModal(habitId, habitName, completedDates, habitColor = '#4CAF50', dailyTarget = 1) {
currentHabitId = habitId; currentHabitId = habitId;
currentHabitCompletedDates = completedDates; currentHabitCompletedDates = completedDates;
currentHabitColor = habitColor; currentHabitColor = habitColor;
currentHabitDailyTarget = dailyTarget;
currentModalDate = new Date(); // Reset to current month currentModalDate = new Date(); // Reset to current month
modalHabitName.textContent = habitName; modalHabitName.textContent = habitName;
@@ -192,6 +210,9 @@ async function openHabitModal(habitId, habitName, completedDates, habitColor = '
// Set color picker to current habit color // Set color picker to current habit color
document.getElementById('habitColorPicker').value = habitColor; document.getElementById('habitColorPicker').value = habitColor;
// Set daily target input to current value
document.getElementById('habitDailyTarget').value = dailyTarget;
// Set CSS variable for modal elements // Set CSS variable for modal elements
dateModal.style.setProperty('--current-habit-color', habitColor); dateModal.style.setProperty('--current-habit-color', habitColor);
@@ -236,9 +257,15 @@ function renderModalCalendar() {
dateCell.className = 'date-cell'; dateCell.className = 'date-cell';
dateCell.textContent = day; dateCell.textContent = day;
if (currentHabitCompletedDates.includes(dateStr)) { const dateCount = currentHabitCompletedDates[dateStr] || 0;
const isCompleted = dateCount >= currentHabitDailyTarget;
if (isCompleted) {
dateCell.classList.add('completed'); dateCell.classList.add('completed');
} }
// Use the new display function for consistent formatting
updateDateCellDisplay(dateCell, dateStr, dateCount);
if (dateStr === today) { if (dateStr === today) {
dateCell.classList.add('today'); dateCell.classList.add('today');
} }
@@ -261,41 +288,54 @@ function closeModal() {
} }
async function toggleCompletionForDate(event, habitId, date) { async function toggleCompletionForDate(event, habitId, date) {
const cell = event.target; // Find the actual date cell, even if clicked on child elements
let cell = event.target;
if (!cell.classList.contains('date-cell')) {
cell = cell.closest('.date-cell');
}
if (!cell) return; // Safety check
let response; let response;
let data; let data;
if (cell.classList.contains('completed')) { const currentCount = currentHabitCompletedDates[date] || 0;
// Mark as uncompleted const shouldDecrement = event.shiftKey || event.ctrlKey || currentCount >= currentHabitDailyTarget;
if (shouldDecrement && currentCount > 0) {
// Decrement completion count
response = await fetch(`/habits/${habitId}/uncomplete`, { response = await fetch(`/habits/${habitId}/uncomplete`, {
method: 'POST', method: 'POST',
headers: { 'Content-Type': 'application/json' }, headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ date: date }) body: JSON.stringify({ date: date })
}); });
data = await response.json();
if (response.ok) {
cell.classList.remove('completed');
// Update local completed dates array
const index = currentHabitCompletedDates.indexOf(date);
if (index > -1) {
currentHabitCompletedDates.splice(index, 1);
}
}
} else { } else {
// Mark as completed // Increment completion count
response = await fetch(`/habits/${habitId}/complete`, { response = await fetch(`/habits/${habitId}/complete`, {
method: 'POST', method: 'POST',
headers: { 'Content-Type': 'application/json' }, headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ date: date }) body: JSON.stringify({ date: date })
}); });
data = await response.json(); }
if (response.ok) {
data = await response.json();
if (response.ok) {
// Update local completed dates object
currentHabitCompletedDates[date] = data.current_count;
// Update cell appearance
const newCount = data.current_count;
const isCompleted = newCount >= currentHabitDailyTarget;
if (isCompleted) {
cell.classList.add('completed'); cell.classList.add('completed');
// Update local completed dates array } else {
if (!currentHabitCompletedDates.includes(date)) { cell.classList.remove('completed');
currentHabitCompletedDates.push(date);
}
} }
// Update cell text display
updateDateCellDisplay(cell, date, newCount);
} }
} }
@@ -381,37 +421,27 @@ async function deleteHabitFromModal() {
} }
} }
async function toggleTodayCompletion(habitId, date, buttonElement) { async function toggleTodayCompletion(habitId, date, buttonElement, dailyTarget = 1) {
try { try {
const isCurrentlyCompleted = buttonElement.classList.contains('completed-today'); // Always increment completion count
let response; const response = await fetch(`/habits/${habitId}/complete`, {
method: 'POST',
if (isCurrentlyCompleted) { headers: { 'Content-Type': 'application/json' },
// Mark as uncompleted body: JSON.stringify({ date: date })
response = await fetch(`/habits/${habitId}/uncomplete`, { });
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ date: date })
});
} else {
// Mark as completed
response = await fetch(`/habits/${habitId}/complete`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ date: date })
});
}
const data = await response.json(); const data = await response.json();
if (response.ok) { if (response.ok) {
// Update button appearance const newCount = data.current_count;
if (isCurrentlyCompleted) { const isCompleted = newCount >= dailyTarget;
buttonElement.classList.remove('completed-today');
buttonElement.classList.add('not-completed-today'); // Update button appearance and text
} else { if (dailyTarget > 1) {
buttonElement.classList.remove('not-completed-today'); buttonElement.innerHTML = `${newCount}/${dailyTarget}`;
buttonElement.classList.add('completed-today');
} }
buttonElement.className = isCompleted ? 'completed-today' : 'not-completed-today';
// Refresh the date grid to show updated completion status // Refresh the date grid to show updated completion status
fetchHabits(); fetchHabits();
} else { } else {
@@ -459,10 +489,15 @@ async function updateHabitColor() {
} }
function updateModalColors(color) { function updateModalColors(color) {
// Update completed date cells in modal // Update all date cells in modal to use new color
const completedCells = modalDateGrid.querySelectorAll('.date-cell.completed'); const allCells = modalDateGrid.querySelectorAll('.date-cell');
completedCells.forEach(cell => { allCells.forEach(cell => {
cell.style.backgroundColor = color; const dateStr = cell.dataset.date;
if (dateStr) {
const dateCount = currentHabitCompletedDates[dateStr] || 0;
// Re-apply styling with new color
applyModalCompletionStyling(cell, dateCount, currentHabitDailyTarget, color);
}
}); });
} }
@@ -477,4 +512,114 @@ function getContrastColor(hexColor) {
// Return dark text for light colors, light text for dark colors // Return dark text for light colors, light text for dark colors
return luminance > 0.5 ? '#333333' : '#ffffff'; return luminance > 0.5 ? '#333333' : '#ffffff';
}
async function updateDailyTarget() {
if (!currentHabitId) {
console.error('No habit selected for daily target update.');
return;
}
const newTarget = parseInt(document.getElementById('habitDailyTarget').value);
if (newTarget < 1 || newTarget > 20) {
alert('Tägliches Ziel muss zwischen 1 und 20 liegen.');
return;
}
currentHabitDailyTarget = newTarget;
try {
const response = await fetch(`/habits/${currentHabitId}`, {
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ daily_target: newTarget })
});
const data = await response.json();
if (response.ok) {
// Re-render modal calendar with new target
renderModalCalendar();
// Refresh habits list to show new target
fetchHabits();
} else {
console.error('Failed to update daily target:', data.error);
}
} catch (error) {
console.error('Error updating daily target:', error);
}
}
function updateDateCellDisplay(cell, date, count) {
const day = date.split('-')[2]; // Get day from YYYY-MM-DD format
// Clear any existing content first
cell.innerHTML = '';
// Apply gradient styling for modal cells
applyModalCompletionStyling(cell, count, currentHabitDailyTarget, currentHabitColor);
if (currentHabitDailyTarget > 1) {
// Create structured display with date on top, counter below
const dayDiv = document.createElement('div');
dayDiv.className = 'date-day';
dayDiv.textContent = parseInt(day);
const counterDiv = document.createElement('div');
counterDiv.className = 'date-counter';
counterDiv.textContent = `${count}/${currentHabitDailyTarget}`;
cell.appendChild(dayDiv);
cell.appendChild(counterDiv);
} else {
cell.textContent = parseInt(day);
}
}
function applyCompletionStyling(element, currentCount, targetCount, color) {
// Remove existing classes
element.classList.remove('completed', 'partial');
if (currentCount === 0) {
// No completion - default background
return;
} else if (currentCount >= targetCount) {
// Fully completed - solid color
element.classList.add('completed');
} else {
// Partially completed - gradient
element.classList.add('partial');
const percentage = Math.round((currentCount / targetCount) * 100);
element.style.setProperty('--completion-percentage', `${percentage}%`);
element.style.setProperty('--habit-color', color);
}
}
function applyModalCompletionStyling(element, currentCount, targetCount, color) {
// Remove existing classes
element.classList.remove('completed', 'partial');
if (currentCount === 0) {
// No completion - default background and text
element.style.removeProperty('color');
return;
} else if (currentCount >= targetCount) {
// Fully completed - solid color with contrast text
element.classList.add('completed');
const contrastColor = getContrastColor(color);
element.style.setProperty('color', contrastColor);
} else {
// Partially completed - gradient with smart text color
element.classList.add('partial');
const percentage = Math.round((currentCount / targetCount) * 100);
element.style.setProperty('--completion-percentage', `${percentage}%`);
element.style.setProperty('--current-habit-color', color);
// For partial completion, use contrast color if more than 50% completed
if (percentage > 50) {
const contrastColor = getContrastColor(color);
element.style.setProperty('color', contrastColor);
} else {
// Use default text color for low completion
element.style.setProperty('color', '#e0e0e0');
}
}
} }

View File

@@ -40,6 +40,11 @@
<label for="habitColorPicker">Farbe wählen:</label> <label for="habitColorPicker">Farbe wählen:</label>
<input type="color" id="habitColorPicker" onchange="updateHabitColor()"> <input type="color" id="habitColorPicker" onchange="updateHabitColor()">
</div> </div>
<div class="daily-target-section">
<label for="habitDailyTarget">Tägliches Ziel:</label>
<input type="number" id="habitDailyTarget" min="1" max="20" onchange="updateDailyTarget()">
<span>x pro Tag</span>
</div>
<div class="modal-actions"> <div class="modal-actions">
<button id="modalCompleteTodayBtn" onclick="completeHabitForDate(event, currentHabitId, getCurrentDate())">Heute erledigen</button> <button id="modalCompleteTodayBtn" onclick="completeHabitForDate(event, currentHabitId, getCurrentDate())">Heute erledigen</button>
<button id="modalEditBtn" onclick="editHabitName()">Bearbeiten</button> <button id="modalEditBtn" onclick="editHabitName()">Bearbeiten</button>