307 lines
16 KiB
HTML
307 lines
16 KiB
HTML
{% extends "_layout.html" %}
|
|
{% block content %}
|
|
<div class="max-w-5xl mx-auto p-4 space-y-6">
|
|
|
|
<!-- Header Section with "Add New Reading" Button -->
|
|
<div class="flex justify-between items-center">
|
|
<h1 class="text-2xl font-bold text-gray-800">Dashboard</h1>
|
|
<a rel="prefetch" href="{{ url_for('main.add_reading') }}"
|
|
class="bg-blue-600 text-white px-4 py-2 rounded shadow hover:bg-blue-700">
|
|
+ Add New Reading
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Weekly Summary -->
|
|
<div class="bg-gradient-to-r from-blue-500 to-blue-700 text-white p-6 rounded-lg shadow-md">
|
|
<h3 class="text-lg font-bold">Weekly Summary</h3>
|
|
<div class="flex justify-between mt-4">
|
|
<div>
|
|
<p class="text-sm font-semibold">Systolic Average</p>
|
|
<p class="text-2xl">{{ systolic_avg }} <span class="text-base">mmHg</span></p>
|
|
</div>
|
|
<div>
|
|
<p class="text-sm font-semibold">Diastolic Average</p>
|
|
<p class="text-2xl">{{ diastolic_avg }} <span class="text-base">mmHg</span></p>
|
|
</div>
|
|
<div>
|
|
<p class="text-sm font-semibold">Heart Rate Average</p>
|
|
<p class="text-2xl">{{ heart_rate_avg }} <span class="text-base">bpm</span></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Progress Badges -->
|
|
<div>
|
|
<h3 class="text-lg font-bold text-gray-800 mb-2">Progress Badges</h3>
|
|
<div class="flex flex-wrap gap-4">
|
|
{% for badge in badges %}
|
|
<div class="bg-green-100 text-green-800 px-4 py-2 rounded shadow text-sm font-medium">
|
|
{{ badge }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<div x-data="{ open: {{ 'true' if request.method == 'POST' else 'false' }} }"
|
|
class="p-4 bg-white rounded-lg shadow-md">
|
|
<!-- Collapsible Header -->
|
|
<div class="flex justify-between items-center">
|
|
<h3 class="text-lg font-bold text-gray-800">Filter Readings</h3>
|
|
<button @click="open = !open" class="text-blue-600 hover:underline flex items-center">
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2"
|
|
stroke="currentColor" class="w-4 h-4 mr-2">
|
|
<path x-show="!open" stroke-linecap="round" stroke-linejoin="round" d="M6 9l6 6 6-6" />
|
|
<path x-show="open" x-cloak stroke-linecap="round" stroke-linejoin="round" d="M18 15l-6-6-6 6" />
|
|
</svg>
|
|
<span x-show="!open">Show Filters</span>
|
|
<span x-show="open" x-cloak>Hide Filters</span>
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Collapsible Content -->
|
|
<form method="POST" action="{{ url_for('main.dashboard') }}" x-show="open" x-transition.duration.50ms
|
|
class="mt-4">
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
<div>
|
|
<label for="start_date" class="block text-sm font-medium text-gray-700">Start Date</label>
|
|
<input type="date" name="start_date" id="start_date" value="{{ start_date or '' }}"
|
|
class="w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
|
</div>
|
|
<div>
|
|
<label for="end_date" class="block text-sm font-medium text-gray-700">End Date</label>
|
|
<input type="date" name="end_date" id="end_date" value="{{ end_date or '' }}"
|
|
class="w-full p-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
|
|
</div>
|
|
</div>
|
|
<div class="mt-4">
|
|
<button type="submit"
|
|
class="w-full md:w-auto bg-blue-600 text-white px-6 py-3 rounded-lg font-semibold shadow-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500">
|
|
Apply Filters
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="max-w-5xl mx-auto" x-data="{ activeView: 'list' }">
|
|
<!-- Tabs -->
|
|
<div class="flex border-b mb-4">
|
|
<button @click="activeView = 'list'" :class="{'border-blue-600 text-blue-600': activeView === 'list'}"
|
|
class="px-4 py-2 text-sm font-medium border-b-2">List View</button>
|
|
<button @click="activeView = 'weekly'" :class="{'border-blue-600 text-blue-600': activeView === 'weekly'}"
|
|
class="px-4 py-2 text-sm font-medium border-b-2">Weekly View</button>
|
|
<button @click="activeView = 'monthly'" :class="{'border-blue-600 text-blue-600': activeView === 'monthly'}"
|
|
class="px-4 py-2 text-sm font-medium border-b-2">Monthly View</button>
|
|
<button @click="activeView = 'graph'" :class="{'border-blue-600 text-blue-600': activeView === 'graph'}"
|
|
class="px-4 py-2 text-sm font-medium border-b-2">Graph View</button>
|
|
</div>
|
|
|
|
<!-- List -->
|
|
<div x-show="activeView === 'list'" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
|
{% for reading in readings %}
|
|
<a href="{{ url_for('main.edit_reading', reading_id=reading.id) }}"
|
|
class="bg-white shadow-md rounded-lg p-4 flex flex-col justify-between relative hover:shadow-lg transition-shadow">
|
|
<!-- Timestamp -->
|
|
<div class="absolute top-2 right-2 flex items-center text-gray-400 text-xs">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 mr-1" fill="none" viewBox="0 0 24 24"
|
|
stroke="currentColor" stroke-width="1.5">
|
|
<path stroke-linecap="round" stroke-linejoin="round"
|
|
d="M12 8v4l3 3m9-3a9 9 0 1 1-18 0 9 9 0 0 1 18 0z" />
|
|
</svg>
|
|
<span title="{{ reading.local_timestamp.strftime('%d %b %Y, %I:%M %p') }}">
|
|
{{ reading.relative_timestamp }}
|
|
</span>
|
|
</div>
|
|
|
|
<!-- Blood Pressure -->
|
|
<div class="text-sm text-gray-600 mb-2">
|
|
<span class="block text-lg font-semibold text-gray-800">Blood Pressure</span>
|
|
<span class="text-2xl font-bold text-blue-600">{{ reading.systolic }}</span>
|
|
<span class="text-lg text-gray-500">/</span>
|
|
<span class="text-xl font-bold text-red-600">{{ reading.diastolic }}</span>
|
|
<span class="text-sm text-gray-500">mmHg</span>
|
|
</div>
|
|
|
|
<!-- Heart Rate and Arrow -->
|
|
<div class="flex justify-between items-center mt-4 relative">
|
|
<div class="text-sm text-gray-600">
|
|
<span class="block text-lg font-semibold text-gray-800">Heart Rate</span>
|
|
<span class="text-2xl font-bold text-green-600">{{ reading.heart_rate }}</span>
|
|
<span class="text-sm text-gray-500">bpm</span>
|
|
</div>
|
|
<!-- Arrow Icon -->
|
|
<div class="absolute bottom-0 right-0 text-gray-400 hover:text-gray-600">
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
|
|
stroke="currentColor" class="h-5 w-5">
|
|
<path stroke-linecap="round" stroke-linejoin="round"
|
|
d="M6.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM12.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0ZM18.75 12a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z" />
|
|
</svg>
|
|
|
|
</div>
|
|
</div>
|
|
</a>
|
|
{% else %}
|
|
<div class="col-span-full text-center text-sm text-gray-500">
|
|
No readings found.
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<!-- Weekly View -->
|
|
<div x-show="activeView === 'weekly'" class="grid grid-cols-7 text-center">
|
|
{% set today = date.today() %}
|
|
{% for i in range(7) %}
|
|
{% set day = today - timedelta(days=today.weekday() - i) %}
|
|
<div class="border p-1 md:p-4 bg-gray-50">
|
|
<div class="text-sm font-bold text-gray-500">{{ day.strftime('%a, %b %d') }}</div>
|
|
{% if day in readings_by_date %}
|
|
{% for reading in readings_by_date[day]|sort(attribute="timestamp", reverse = True) %}
|
|
<a href="{{ url_for('main.edit_reading', reading_id=reading.id) }}"
|
|
class="block mt-2 p-0 md:p-2 bg-green-100 rounded-lg shadow hover:bg-green-200 transition">
|
|
<p class="text-xs font-medium text-green-800">
|
|
{{ reading.systolic }}/{{ reading.diastolic }} mmHg
|
|
</p>
|
|
<p class="text-xs text-gray-600 mt-1">{{ reading.heart_rate }} bpm</p>
|
|
<!-- Timestamp -->
|
|
<div class="text-xs text-gray-500 mt-1">
|
|
{{ reading.local_timestamp.strftime('%I:%M %p') }}
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
{% else %}
|
|
<div class="h-8"></div> <!-- Placeholder for spacing -->
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<!-- Monthly View -->
|
|
<div x-show="activeView === 'monthly'" class="space-y-4">
|
|
{% set current_date = date.today().replace(day=1) %}
|
|
<!-- Month Name -->
|
|
<div class="text-center">
|
|
<h2 class="text-xl font-bold text-gray-800">{{ current_date.strftime('%B %Y') }}</h2>
|
|
</div>
|
|
|
|
<!-- Day Headers -->
|
|
<div class="grid grid-cols-7 text-center">
|
|
<div class="font-semibold text-gray-700">Sun</div>
|
|
<div class="font-semibold text-gray-700">Mon</div>
|
|
<div class="font-semibold text-gray-700">Tue</div>
|
|
<div class="font-semibold text-gray-700">Wed</div>
|
|
<div class="font-semibold text-gray-700">Thu</div>
|
|
<div class="font-semibold text-gray-700">Fri</div>
|
|
<div class="font-semibold text-gray-700">Sat</div>
|
|
</div>
|
|
|
|
<!-- Calendar Grid -->
|
|
<div class="grid grid-cols-7 text-center">
|
|
{% set days_in_month = (current_date.replace(month=current_date.month % 12 + 1, day=1) -
|
|
timedelta(days=1)).day %}
|
|
{% set first_weekday = current_date.weekday() %}
|
|
|
|
<!-- Empty slots for days before the 1st -->
|
|
{% for _ in range((first_weekday + 1) % 7) %}
|
|
<div></div>
|
|
{% endfor %}
|
|
|
|
<!-- Days of the Month -->
|
|
{% for day in range(1, days_in_month + 1) %}
|
|
{% set current_day = current_date.replace(day=day) %}
|
|
<div class="border p-1 md:p-4 bg-gray-50 relative">
|
|
<!-- Day Label -->
|
|
<div class="text-sm font-bold text-gray-500 text-left">{{ current_day.day }}</div>
|
|
|
|
<!-- Readings -->
|
|
{% if current_day in readings_by_date %}
|
|
{% for reading in readings_by_date[current_day]|sort(attribute="timestamp", reverse = True) %}
|
|
<a href="{{ url_for('main.edit_reading', reading_id=reading.id) }}"
|
|
class="block mt-2 p-0 md:p-2 bg-green-100 rounded-lg shadow hover:bg-green-200 transition">
|
|
<p class="text-xs font-medium text-green-800">
|
|
{{ reading.systolic }}/{{ reading.diastolic }} mmHg
|
|
</p>
|
|
<p class="text-xs text-gray-600 mt-1">{{ reading.heart_rate }} bpm</p>
|
|
<!-- Timestamp -->
|
|
<div class="text-xs text-gray-500 mt-1">
|
|
{{ reading.local_timestamp.strftime('%I:%M %p') }}
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
{% else %}
|
|
<div class="h-8"></div> <!-- Placeholder for spacing -->
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Graph Section -->
|
|
<div x-show="activeView === 'graph'" class="space-y-6">
|
|
<!-- Blood Pressure Graph -->
|
|
<div>
|
|
<h3 class="text-sm font-semibold text-gray-600 mb-2">Blood Pressure (mmHg)</h3>
|
|
<svg viewBox="0 0 600 250" xmlns="http://www.w3.org/2000/svg" class="w-full">
|
|
<!-- Axes -->
|
|
<line x1="50" y1="200" x2="550" y2="200" stroke="black" stroke-width="1" /> <!-- X-axis -->
|
|
<line x1="50" y1="20" x2="50" y2="200" stroke="black" stroke-width="1" /> <!-- Y-axis -->
|
|
|
|
<!-- Y-axis Labels (Blood Pressure Values) -->
|
|
{% for value in range(50, 201, 50) %}
|
|
<text x="40" y="{{ 200 - (value / 200 * 180) }}" font-size="10" text-anchor="end">{{ value }}</text>
|
|
{% endfor %}
|
|
|
|
<!-- X-axis Labels (Timestamps) -->
|
|
{% for i in range(timestamps|length) %}
|
|
<text x="{{ 50 + i * 50 }}" y="215" font-size="10" text-anchor="middle">{{ timestamps[i] }}</text>
|
|
{% endfor %}
|
|
|
|
<!-- Graph Lines -->
|
|
<!-- Systolic Line -->
|
|
<polyline fill="none" stroke="blue" stroke-width="2"
|
|
points="{% for i in range(timestamps|length) %}{{ 50 + i * 50 }},{{ 200 - (systolic[i] / 200 * 180) }} {% endfor %}" />
|
|
|
|
<!-- Diastolic Line -->
|
|
<polyline fill="none" stroke="red" stroke-width="2"
|
|
points="{% for i in range(timestamps|length) %}{{ 50 + i * 50 }},{{ 200 - (diastolic[i] / 200 * 180) }} {% endfor %}" />
|
|
|
|
<!-- Axis Labels -->
|
|
<text x="25" y="110" font-size="12" transform="rotate(-90, 25, 110)" text-anchor="middle">Blood
|
|
Pressure (mmHg)</text>
|
|
<text x="300" y="240" font-size="12" text-anchor="middle">Date</text>
|
|
</svg>
|
|
</div>
|
|
|
|
<!-- Heart Rate Graph -->
|
|
<div>
|
|
<h3 class="text-sm font-semibold text-gray-600 mb-2">Heart Rate (bpm)</h3>
|
|
<svg viewBox="0 0 600 250" xmlns="http://www.w3.org/2000/svg" class="w-full">
|
|
<!-- Axes -->
|
|
<line x1="50" y1="200" x2="550" y2="200" stroke="black" stroke-width="1" /> <!-- X-axis -->
|
|
<line x1="50" y1="20" x2="50" y2="200" stroke="black" stroke-width="1" /> <!-- Y-axis -->
|
|
|
|
<!-- Y-axis Labels (Heart Rate Values) -->
|
|
{% for value in range(50, 201, 50) %}
|
|
<text x="40" y="{{ 200 - (value / 200 * 180) }}" font-size="10" text-anchor="end">{{ value }}</text>
|
|
{% endfor %}
|
|
|
|
<!-- X-axis Labels (Timestamps) -->
|
|
{% for i in range(timestamps|length) %}
|
|
<text x="{{ 50 + i * 50 }}" y="215" font-size="10" text-anchor="middle">{{ timestamps[i] }}</text>
|
|
{% endfor %}
|
|
|
|
<!-- Heart Rate Line -->
|
|
<polyline fill="none" stroke="green" stroke-width="2"
|
|
points="{% for i in range(timestamps|length) %}{{ 50 + i * 50 }},{{ 200 - (heart_rate[i] / 200 * 180) }} {% endfor %}" />
|
|
|
|
<!-- Axis Labels -->
|
|
<text x="25" y="110" font-size="12" transform="rotate(-90, 25, 110)" text-anchor="middle">Heart Rate
|
|
(bpm)</text>
|
|
<text x="300" y="240" font-size="12" text-anchor="middle">Date</text>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %} |