407 lines
13 KiB
HTML
407 lines
13 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ro">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" type="image/svg+xml" href="/echo/favicon.svg">
|
|
<title>Echo · Habit Tracker</title>
|
|
<link rel="stylesheet" href="/echo/common.css">
|
|
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.min.js"></script>
|
|
<script src="/echo/swipe-nav.js"></script>
|
|
<style>
|
|
.main {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
padding: var(--space-5);
|
|
}
|
|
|
|
.page-header {
|
|
margin-bottom: var(--space-5);
|
|
}
|
|
|
|
.page-title {
|
|
font-size: var(--text-xl);
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
margin-bottom: var(--space-1);
|
|
}
|
|
|
|
.page-subtitle {
|
|
font-size: var(--text-sm);
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* Empty state */
|
|
.empty-state {
|
|
text-align: center;
|
|
padding: var(--space-6) var(--space-4);
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.empty-state svg {
|
|
width: 64px;
|
|
height: 64px;
|
|
margin-bottom: var(--space-3);
|
|
opacity: 0.5;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.empty-state-message {
|
|
font-size: var(--text-base);
|
|
margin-bottom: var(--space-4);
|
|
}
|
|
|
|
/* Add habit button */
|
|
.add-habit-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: var(--space-2);
|
|
padding: var(--space-3) var(--space-5);
|
|
background: var(--accent);
|
|
color: white;
|
|
border: none;
|
|
border-radius: var(--radius-md);
|
|
font-size: var(--text-sm);
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all var(--transition-fast);
|
|
}
|
|
|
|
.add-habit-btn:hover {
|
|
filter: brightness(1.1);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.add-habit-btn svg {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
/* Habits list (for future use) */
|
|
.habits-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-3);
|
|
}
|
|
|
|
/* Modal */
|
|
.modal-overlay {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
z-index: 1000;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.modal-overlay.active {
|
|
display: flex;
|
|
}
|
|
|
|
.modal {
|
|
background: var(--bg-base);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-lg);
|
|
padding: var(--space-5);
|
|
width: 90%;
|
|
max-width: 500px;
|
|
max-height: 90vh;
|
|
overflow-y: auto;
|
|
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.modal-title {
|
|
font-size: var(--text-lg);
|
|
font-weight: 600;
|
|
margin-bottom: var(--space-4);
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: var(--space-4);
|
|
}
|
|
|
|
.form-label {
|
|
display: block;
|
|
font-size: var(--text-sm);
|
|
font-weight: 500;
|
|
margin-bottom: var(--space-1);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.modal-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: var(--space-2);
|
|
margin-top: var(--space-5);
|
|
}
|
|
|
|
/* Radio group */
|
|
.radio-group {
|
|
display: flex;
|
|
gap: var(--space-3);
|
|
}
|
|
|
|
.radio-option {
|
|
flex: 1;
|
|
}
|
|
|
|
.radio-option input[type="radio"] {
|
|
display: none;
|
|
}
|
|
|
|
.radio-label {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: var(--space-3);
|
|
background: var(--bg-surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-md);
|
|
cursor: pointer;
|
|
transition: all var(--transition-fast);
|
|
font-size: var(--text-sm);
|
|
font-weight: 500;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.radio-option input[type="radio"]:checked + .radio-label {
|
|
background: var(--accent);
|
|
color: white;
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.radio-label:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
/* Toast */
|
|
.toast {
|
|
position: fixed;
|
|
bottom: var(--space-5);
|
|
left: 50%;
|
|
transform: translateX(-50%) translateY(100px);
|
|
background: var(--bg-elevated);
|
|
border: 1px solid var(--border);
|
|
padding: var(--space-3) var(--space-5);
|
|
border-radius: var(--radius-md);
|
|
font-size: var(--text-sm);
|
|
opacity: 0;
|
|
transition: all var(--transition-base);
|
|
z-index: 1001;
|
|
}
|
|
|
|
.toast.show {
|
|
transform: translateX(-50%) translateY(0);
|
|
opacity: 1;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header class="header">
|
|
<a href="/echo/index.html" class="logo">
|
|
<i data-lucide="circle-dot"></i>
|
|
Echo
|
|
</a>
|
|
<nav class="nav">
|
|
<a href="/echo/index.html" class="nav-item">
|
|
<i data-lucide="layout-dashboard"></i>
|
|
<span>Dashboard</span>
|
|
</a>
|
|
<a href="/echo/workspace.html" class="nav-item">
|
|
<i data-lucide="code"></i>
|
|
<span>Workspace</span>
|
|
</a>
|
|
<a href="/echo/notes.html" class="nav-item">
|
|
<i data-lucide="file-text"></i>
|
|
<span>KB</span>
|
|
</a>
|
|
<a href="/echo/files.html" class="nav-item">
|
|
<i data-lucide="folder"></i>
|
|
<span>Files</span>
|
|
</a>
|
|
<a href="/echo/habits.html" class="nav-item active">
|
|
<i data-lucide="target"></i>
|
|
<span>Habits</span>
|
|
</a>
|
|
<button class="theme-toggle" onclick="toggleTheme()" title="Schimbă tema">
|
|
<i data-lucide="sun" id="themeIcon"></i>
|
|
</button>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="main">
|
|
<div class="page-header">
|
|
<h1 class="page-title">Habit Tracker</h1>
|
|
<p class="page-subtitle">Urmărește-ți obiceiurile zilnice și săptămânale</p>
|
|
</div>
|
|
|
|
<!-- Habits container -->
|
|
<div id="habitsContainer">
|
|
<!-- Empty state -->
|
|
<div class="empty-state">
|
|
<i data-lucide="target"></i>
|
|
<p class="empty-state-message">Nicio obișnuință încă. Creează prima!</p>
|
|
<button class="add-habit-btn" onclick="showAddHabitModal()">
|
|
<i data-lucide="plus"></i>
|
|
<span>Adaugă obișnuință</span>
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Habits list (hidden initially) -->
|
|
<div class="habits-list" id="habitsList" style="display: none;">
|
|
<!-- Habits will be populated here by JavaScript -->
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<!-- Add Habit Modal -->
|
|
<div class="modal-overlay" id="habitModal">
|
|
<div class="modal">
|
|
<h2 class="modal-title">Obișnuință nouă</h2>
|
|
<div class="form-group">
|
|
<label class="form-label">Nume *</label>
|
|
<input type="text" class="input" id="habitName" placeholder="ex: Bazin, Sală, Meditație...">
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="form-label">Frecvență</label>
|
|
<div class="radio-group">
|
|
<div class="radio-option">
|
|
<input type="radio" name="frequency" id="freqDaily" value="daily" checked>
|
|
<label for="freqDaily" class="radio-label">Zilnic</label>
|
|
</div>
|
|
<div class="radio-option">
|
|
<input type="radio" name="frequency" id="freqWeekly" value="weekly">
|
|
<label for="freqWeekly" class="radio-label">Săptămânal</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-actions">
|
|
<button class="btn btn-secondary" onclick="hideHabitModal()">Anulează</button>
|
|
<button class="btn btn-primary" id="habitCreateBtn" onclick="createHabit()" disabled>Creează</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="toast" id="toast"></div>
|
|
|
|
<script>
|
|
// Theme management
|
|
function initTheme() {
|
|
const saved = localStorage.getItem('theme') || 'dark';
|
|
document.documentElement.setAttribute('data-theme', saved);
|
|
updateThemeIcon(saved);
|
|
}
|
|
|
|
function toggleTheme() {
|
|
const current = document.documentElement.getAttribute('data-theme') || 'dark';
|
|
const next = current === 'dark' ? 'light' : 'dark';
|
|
document.documentElement.setAttribute('data-theme', next);
|
|
localStorage.setItem('theme', next);
|
|
updateThemeIcon(next);
|
|
}
|
|
|
|
function updateThemeIcon(theme) {
|
|
const icon = document.getElementById('themeIcon');
|
|
if (icon) {
|
|
icon.setAttribute('data-lucide', theme === 'dark' ? 'sun' : 'moon');
|
|
lucide.createIcons();
|
|
}
|
|
}
|
|
|
|
// Initialize theme and icons
|
|
initTheme();
|
|
lucide.createIcons();
|
|
|
|
// Modal functions
|
|
function showAddHabitModal() {
|
|
const modal = document.getElementById('habitModal');
|
|
const nameInput = document.getElementById('habitName');
|
|
const createBtn = document.getElementById('habitCreateBtn');
|
|
|
|
// Reset form
|
|
nameInput.value = '';
|
|
document.getElementById('freqDaily').checked = true;
|
|
createBtn.disabled = true;
|
|
|
|
// Show modal
|
|
modal.classList.add('active');
|
|
nameInput.focus();
|
|
}
|
|
|
|
function hideHabitModal() {
|
|
const modal = document.getElementById('habitModal');
|
|
modal.classList.remove('active');
|
|
}
|
|
|
|
// Form validation - enable/disable Create button based on name input
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const nameInput = document.getElementById('habitName');
|
|
const createBtn = document.getElementById('habitCreateBtn');
|
|
|
|
nameInput.addEventListener('input', () => {
|
|
const name = nameInput.value.trim();
|
|
createBtn.disabled = name.length === 0;
|
|
});
|
|
|
|
// Allow Enter key to submit if button is enabled
|
|
nameInput.addEventListener('keypress', (e) => {
|
|
if (e.key === 'Enter' && !createBtn.disabled) {
|
|
createHabit();
|
|
}
|
|
});
|
|
});
|
|
|
|
// Create habit
|
|
async function createHabit() {
|
|
const nameInput = document.getElementById('habitName');
|
|
const name = nameInput.value.trim();
|
|
const frequency = document.querySelector('input[name="frequency"]:checked').value;
|
|
|
|
if (!name) {
|
|
showToast('Te rog introdu un nume pentru obișnuință');
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const response = await fetch('/api/habits', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ name, frequency })
|
|
});
|
|
|
|
if (response.ok) {
|
|
hideHabitModal();
|
|
showToast('Obișnuință creată cu succes!');
|
|
loadHabits();
|
|
} else {
|
|
const error = await response.text();
|
|
showToast('Eroare la crearea obișnuinței: ' + error);
|
|
}
|
|
} catch (error) {
|
|
showToast('Eroare la conectarea cu serverul');
|
|
console.error(error);
|
|
}
|
|
}
|
|
|
|
// Toast notification
|
|
function showToast(message) {
|
|
const toast = document.getElementById('toast');
|
|
toast.textContent = message;
|
|
toast.classList.add('show');
|
|
setTimeout(() => {
|
|
toast.classList.remove('show');
|
|
}, 3000);
|
|
}
|
|
|
|
// Load habits (placeholder for future API integration)
|
|
async function loadHabits() {
|
|
// Will be implemented in next story
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|