-
-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathTalkHeal.py
More file actions
726 lines (634 loc) · 28.6 KB
/
TalkHeal.py
File metadata and controls
726 lines (634 loc) · 28.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
import streamlit as st
from auth.auth_utils import init_db
from components.login_page import show_login_page
from core.utils import save_conversations, load_conversations,set_authenticated_user
from components.mood_dashboard import MoodTracker, render_mood_dashboard
import plotly.express as px
st.set_page_config(page_title="TalkHeal", page_icon="💬", layout="wide")
no_sidebar_style = """
<style>
div[data-testid="stSidebarNav"] {display: none;}
</style>
"""
st.markdown(no_sidebar_style, unsafe_allow_html=True)
if "db_initialized" not in st.session_state:
init_db()
st.session_state["db_initialized"] = True
def _get_query_params():
"""Return query params compatible with older/newer Streamlit versions."""
try:
return st.query_params # Streamlit >= 1.30
except Exception:
try:
return st.experimental_get_query_params() # Older versions
except Exception:
return {}
_qp = _get_query_params()
if _qp.get("code") and _qp.get("state") and _qp.get("provider"):
# Handle OAuth callback
from pages.oauth_callback import main as handle_oauth_callback
handle_oauth_callback()
st.stop()
# Restore session from cookie if not already authenticated
if not st.session_state.get("authenticated", False):
from auth.session_manager import restore_session_from_storage
restore_session_from_storage()
if not st.session_state.get("authenticated", False):
show_login_page()
st.stop()
st.markdown("""
<style>
@media (max-width: 768px) {
.nav-button-container {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: center;
margin-bottom: 1rem;
}
.nav-button-container .stButton {
flex: 1 1 auto;
min-width: 100px;
max-width: 140px;
}
.nav-button-container .stButton > button {
font-size: 0.85rem !important;
padding: 0.4rem 0.6rem !important;
}
}
@media (max-width: 480px) {
.nav-button-container {
flex-direction: column;
align-items: stretch;
}
.nav-button-container .stButton {
max-width: none;
margin-bottom: 0.25rem;
}
}
</style>
""", unsafe_allow_html=True)
# Responsive navigation layout - use smaller ratios and better mobile handling
col_spacer, col_buttons = st.columns([1, 4])
with col_spacer:
pass
with col_buttons:
# Create a container with responsive class
st.markdown('<div class="nav-button-container">', unsafe_allow_html=True)
nav_cols = st.columns([1, 1.5, 1, 1])
with nav_cols[0]:
is_dark = st.session_state.get('dark_mode', False)
if st.button("🌙" if is_dark else "☀", key="top_theme_toggle", help="Toggle Light/Dark Mode", use_container_width=True):
st.session_state.dark_mode = not is_dark
st.session_state.theme_changed = True
st.rerun()
with nav_cols[1]:
if st.button("🚨 Emergency Help", key="emergency_main_btn", help="Open crisis resources", use_container_width=True, type="secondary"):
st.session_state.show_emergency_page = True
st.rerun()
with nav_cols[2]:
if st.button("ⓘ About", key="about_btn", help="About TalkHeal", use_container_width=True):
st.switch_page("pages/About.py")
with nav_cols[3]:
if st.button("Logout", key="logout_btn", help="Sign out", use_container_width=True):
from auth.session_manager import clear_session_cookie
clear_session_cookie()
for key in ["authenticated", "user_profile", "user_name"]:
if key in st.session_state:
del st.session_state[key]
st.rerun()
st.markdown('</div>', unsafe_allow_html=True)
from core.config import configure_gemini, PAGE_CONFIG
from core.utils import get_current_time, create_new_conversation
from css.styles import apply_custom_css
from components.header import render_header
from components.sidebar import render_sidebar
from components.chat_interface import render_chat_interface, handle_chat_input, render_session_controls
from components.mood_dashboard import MoodTracker
from components.emergency_page import render_emergency_page
from components.focus_session import render_focus_session
from components.profile import apply_global_font_size
from components.games import show_games_page
if "chat_history" not in st.session_state:
st.session_state.chat_history = []
if "conversations" not in st.session_state:
st.session_state.conversations = load_conversations()
if "active_conversation" not in st.session_state:
st.session_state.active_conversation = -1
if "show_emergency_page" not in st.session_state:
st.session_state.show_emergency_page = False
if "show_focus_session" not in st.session_state:
st.session_state.show_focus_session = False
if "show_mood_dashboard" not in st.session_state:
st.session_state.show_mood_dashboard = False
if "sidebar_state" not in st.session_state:
st.session_state.sidebar_state = "expanded"
if "mental_disorders" not in st.session_state:
st.session_state.mental_disorders = [
"Depression & Mood Disorders", "Anxiety & Panic Disorders", "Bipolar Disorder",
"PTSD & Trauma", "OCD & Related Disorders", "Eating Disorders",
"Substance Use Disorders", "ADHD & Neurodevelopmental", "Personality Disorders",
"Sleep Disorders"
]
if "selected_tone" not in st.session_state:
st.session_state.selected_tone = "Compassionate Listener"
if "pinned_messages" not in st.session_state:
st.session_state.pinned_messages = []
if "active_page" not in st.session_state:
st.session_state.active_page = "TalkHeal" # default
if "show_privacy_policy" not in st.session_state:
st.session_state.show_privacy_policy = False
if st.session_state.show_privacy_policy:
from pages.PrivacyPolicy import show as show_privacy
show_privacy()
from components.footer import show_footer
show_footer()
st.stop()
apply_global_font_size()
apply_custom_css()
model = configure_gemini()
TONE_OPTIONS = {
"Compassionate Listener": "You are a compassionate listener — soft, empathetic, patient — like a therapist who listens without judgment.",
"Motivating Coach": "You are a motivating coach — energetic, encouraging, and action-focused — helping the user push through rough days.",
"Wise Friend": "You are a wise friend — thoughtful, poetic, and reflective — giving soulful responses and timeless advice.",
"Neutral Therapist": "You are a neutral therapist — balanced, logical, and non-intrusive — asking guiding questions using CBT techniques.",
"Mindfulness Guide": "You are a mindfulness guide — calm, slow, and grounding — focused on breathing, presence, and awareness."
}
def get_tone_prompt():
return TONE_OPTIONS.get(st.session_state.get("selected_tone", "Compassionate Listener"), TONE_OPTIONS["Compassionate Listener"])
# --- 6. RENDER SIDEBAR ---
render_sidebar()
# --- 7. PAGE ROUTING ---
main_area = st.container()
if not st.session_state.conversations:
saved_conversations = load_conversations()
if saved_conversations:
st.session_state.conversations = saved_conversations
if st.session_state.active_conversation == -1:
st.session_state.active_conversation = 0
else:
create_new_conversation()
st.session_state.active_conversation = 0
st.rerun()
# --- ONBOARDING SECTION ---
def render_onboarding_section():
"""Render onboarding walkthrough for new users"""
# Check if user has seen onboarding
if "onboarding_seen" not in st.session_state:
st.session_state.onboarding_seen = False
# Show onboarding for first-time users or if user clicks "Show Guide"
if not st.session_state.onboarding_seen or st.session_state.get("show_onboarding_guide", False):
st.markdown("""
<div style="background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
border-radius: 16px;
padding: 2rem;
margin: 2rem 0;
border-left: 4px solid #ff69b4;">
<h2 style="color: #d6336c; margin-top: 0;">👋 Welcome to TalkHeal</h2>
<p style="font-size: 1.1rem; line-height: 1.6; margin-bottom: 1.5rem;">
Your safe space for mental health support, available 24/7. We're here to listen,
guide, and support you on your wellness journey.
</p>
</div>
""", unsafe_allow_html=True)
# How to Use Section
with st.expander("📚 How to Use TalkHeal (3 Simple Steps)", expanded=not st.session_state.onboarding_seen):
st.markdown("""
### Getting Started
**Step 1: Choose Your Experience**
- 💬 Start a conversation with our AI companion below
- 🧘♀️ Explore wellness tools (Yoga, Breathing, Journaling)
- 📊 Track your mood and view insights over time
**Step 2: Personalize Your Support**
- Select an AI personality that resonates with you (Compassionate Listener, Motivating Coach, etc.)
- Share as much or as little as you're comfortable with
- Use the sidebar to access different features anytime
**Step 3: Build Your Wellness Routine**
- Track your daily mood to identify patterns
- Try guided exercises when you need support
- Access crisis resources anytime via the 🚨 Emergency Help button
---
### 💡 Tips for Best Experience
- Be honest about how you're feeling—this is a judgment-free space
- Explore different features to find what works best for you
- Use the mood tracker regularly to gain insights into your emotional patterns
- Remember: You can always start a new conversation or switch tools
""")
# Important Disclaimer
st.info("""
**📋 Important Disclaimer**
TalkHeal is designed to provide support, coping strategies, and wellness resources.
However, it is **not a substitute for professional mental health care**.
If you're experiencing a crisis or need immediate support:
- Click the **🚨 Emergency Help** button above for crisis hotlines
- Contact a mental health professional or your doctor
- Call your local emergency services if you're in immediate danger
Your wellbeing matters, and seeking professional help is a sign of strength. 💙
""")
# Mark onboarding as seen after first view
if not st.session_state.onboarding_seen:
col1, col2, col3 = st.columns([1, 2, 1])
with col2:
if st.button("✅ Got it! Let's begin", use_container_width=True, type="primary"):
st.session_state.onboarding_seen = True
st.session_state.show_onboarding_guide = False
st.rerun()
else:
# For returning users who clicked "Show Guide"
if st.button("✅ Close Guide", use_container_width=True):
st.session_state.show_onboarding_guide = False
st.rerun()
# Add a small button for returning users to re-open the guide
if st.session_state.onboarding_seen and not st.session_state.get("show_onboarding_guide", False):
col1, col2, col3 = st.columns([1, 2, 1])
with col2:
if st.button("❔ Show Getting Started Guide", use_container_width=True):
st.session_state.show_onboarding_guide = True
st.rerun()
st.markdown("---")
# --- 8. FEATURE CARDS FUNCTION ---
def render_feature_cards():
"""Render beautiful feature cards showcasing app capabilities"""
# Hero Welcome Section
st.markdown(f"""
<div class="hero-welcome-section">
<div class="hero-content">
<h1 class="hero-title">Welcome to TalkHeal, {st.session_state.user_profile.get("name", "User")}! 💬</h1>
<p class="hero-subtitle">Your Mental Health Companion 💙</p>
</div>
</div>
""", unsafe_allow_html=True)
# Define all feature cards data
cards_data = [
{
"icon": "🧘♀",
"title": "Yoga & Meditation",
"action": lambda: st.switch_page("pages/Yoga.py"),
"key": "yoga_btn",
"button_text": "🧘♀ Start Yoga",
"css_class": "yoga-card"
},
{
"icon": "🌬",
"title": "Breathing Exercises",
"action": lambda: st.switch_page("pages/Breathing_Exercise.py"),
"key": "breathing_btn",
"button_text": "🌬 Excercises",
"css_class": "breathing-card"
},
{
"icon": "📝",
"title": "Personal Journaling",
"action": lambda: st.switch_page("pages/Journaling.py"),
"key": "journal_btn",
"button_text": "📝 Open Journal",
"css_class": "journal-card"
},
{
"icon": "👨⚕",
"title": "Doctor Specialist",
"action": lambda: st.switch_page("pages/doctor_spec.py"),
"key": "doctor_btn",
"button_text": "👨⚕ Find Specialists",
"css_class": "doctor-card"
},
{
"icon": "🎮",
"title": "Mental Wellness Games",
"action": lambda: setattr(st.session_state, 'active_page', 'Games') or st.rerun(),
"key": "games_btn",
"button_text": "🎮 Play Games",
"css_class": "mood-card"
},
{
"icon": "🛠",
"title": "Self-Help Tools",
"action": lambda: st.switch_page("pages/selfHelpTools.py"),
"key": "tools_btn",
"button_text": "🛠 Explore Tools",
"css_class": "tools-card"
},
{
"icon": "🌿",
"title": "Habit Builder",
"action": lambda: st.switch_page("pages/Habit_Builder.py"),
"key": "habits_btn",
"button_text": "🌿 Build Habits",
"css_class": "habits-card"
},
{
"icon": "🌟",
"title": "Wellness Resource Hub",
"action": lambda: st.switch_page("pages/WellnessResourceHub.py"),
"key": "wellness_btn",
"button_text": "🌟 Wellness Hub",
"css_class": "wellness-card"
},
{
"icon": "💧",
"title": "Water Tracking",
"action": lambda: st.switch_page("pages/WaterIntakeTracker.py"),
"key": "water_btn",
"button_text": "💧 Track Water",
"css_class": "water-card"
},
{
"icon": "⌚",
"title": "Wearables",
"action": lambda: st.switch_page("pages/Wearables.py"),
"key": "wearables_btn",
"button_text": "⌚ View Wearables",
"css_class": "wearables-card"
},
{
"icon": "�💬",
"title": "Community Forum",
"action": lambda: st.switch_page("pages/CommunityForum.py"),
"key": "forum_btn",
"button_text": "💬 Join Community",
"css_class": "community-card"
},
{
"icon": "❓",
"title": "Q&A Support",
"action": lambda: st.switch_page("pages/QnA.py"),
"key": "qna_btn",
"button_text": "❓ Ask Questions",
"css_class": "qna-card"
}
]
# Use Streamlit's native columns to create the grid layout
num_columns = 6 # switched to 6 columns to accommodate new cards
# Check if the number of cards is a multiple of the number of columns
# and adjust the number of columns if necessary
if len(cards_data) % num_columns != 0:
st.warning(f"Please use a number of cards that is a multiple of {num_columns} for a perfect grid.")
cols = st.columns(num_columns)
for i, card in enumerate(cards_data):
with cols[i % num_columns]:
# Render all feature cards with the same CSS and markup (icon + title only)
# Add an explicit inline left-border style for water and wearables to ensure visibility
inline_border = ''
if card.get('css_class') == 'water-card':
inline_border = 'border-left: 4px solid #06b6d4;'
elif card.get('css_class') == 'wearables-card':
inline_border = 'border-left: 4px solid #7c3aed;'
st.markdown(f"""
<div class="feature-card primary-card {card['css_class']}" style="{inline_border}">
<div class="card-icon" style="font-size: 3rem; margin-bottom: 1rem;">{card.get('icon','')}</div>
<h3 style="margin-bottom: 1rem; color: white; font-size: 1.1rem;">{card['title']}</h3>
</div>
""", unsafe_allow_html=True)
if st.button(card['button_text'], key=card['key'], use_container_width=True):
try:
card['action']()
except Exception as e:
st.error(f"Error navigating to {card['title']}: {str(e)}")
# --- 9. RENDER PAGE ---
if st.session_state.get("show_emergency_page"):
with main_area:
render_emergency_page()
elif st.session_state.get("show_focus_session"):
with main_area:
render_focus_session()
elif st.session_state.get("show_mood_dashboard"):
with main_area:
render_mood_dashboard()
# Handles rendering the "Pinned Messages" page.
elif st.session_state.active_page == "PinnedMessages":
with main_area:
from pages.Pinned_msg import render_pinned_messages_page
# Back to Home Button
if st.button("⬅ Back to Home", key="back_to_home_btn"):
st.session_state.active_page = "TalkHeal"
st.rerun()
render_pinned_messages_page()
elif st.session_state.active_page == "CommunityForum":
with main_area:
import pages.CommunityForum as community_forum
# The CommunityForum page will render itself
elif st.session_state.active_page == "Games":
with main_area:
# Back to Home Button
if st.button("⬅ Back to Home", key="back_to_home_from_games"):
st.session_state.active_page = "TalkHeal"
st.rerun()
# Show Games Page
show_games_page()
else:
with main_area:
render_onboarding_section()
# Render the beautiful feature cards layout
render_feature_cards()
# AI Tone Selection in main area
with st.expander("🧠 Customize Your AI Companion", expanded=False):
st.markdown("*Choose how your AI companion should respond to you:*")
selected_tone = st.selectbox(
"Select AI personality:",
options=list(TONE_OPTIONS.keys()),
index=list(TONE_OPTIONS.keys()).index(st.session_state.selected_tone),
help="Different tones provide different therapeutic approaches"
)
if selected_tone != st.session_state.selected_tone:
st.session_state.selected_tone = selected_tone
st.rerun()
st.info(f"*Current Style*: {TONE_OPTIONS[selected_tone]}")
# Current AI Tone Display
st.markdown(f"""
<div class="current-tone-display">
<div class="tone-content">
<span class="tone-label">🧠 Current AI Personality:</span>
<span class="tone-value">{st.session_state['selected_tone']}</span>
</div>
</div>
""", unsafe_allow_html=True)
# Mood Tracking Section
st.markdown("""
<div class="mood-tracking-section">
<h3>😊 How are you feeling today?</h3>
<p>Track your mood to help your AI companion provide better support</p>
</div>
""", unsafe_allow_html=True)
# Initialize mood tracker if not already done
if "mood_tracker" not in st.session_state:
st.session_state.mood_tracker = MoodTracker()
tracker = st.session_state.mood_tracker
# Split the full mood form and full summary into two half-width columns
left_col, right_col = st.columns([1, 1], gap="large")
# Left: full form (as before)
with left_col:
with st.form("mood_entry_form"):
st.markdown("### Record Your Mood")
# Mood Level Selection
mood_options = {
"very_low": " Very Low",
"low": "😔 Low",
"okay": " Okay",
"good": "😊 Good",
"great": " 😄 Great"
}
selected_mood = st.selectbox(
"How are you feeling right now?",
options=list(mood_options.keys()),
format_func=lambda x: mood_options[x],
help="Select your current emotional state"
)
# Context/Reason
context_options = [
"Work/School related",
"Family matters",
"Health concerns",
"Social interactions",
"Financial stress",
"Weather/environment",
"Sleep quality",
"Physical activity",
"Food/Nutrition",
"Personal achievement",
"Relationship issues",
"Future worries",
"Other"
]
context_reason = st.selectbox(
"What's influencing your mood today?",
options=context_options,
help="Understanding context helps provide better support"
)
# Activities
activity_options = [
"Exercise/Physical activity",
"Meditation/Mindfulness",
"Reading",
"Writing/Journaling",
"Socializing",
"Hobbies/Creative work",
"Watching TV/Movies",
"Gaming",
"Cooking/Eating",
"Shopping",
"Housework/Chores",
"Learning/Education",
"Music/Audio",
"Nature/Outdoors",
"Resting/Sleeping",
"Other"
]
selected_activities = st.multiselect(
"What activities have you done today?",
options=activity_options,
help="Select all that apply"
)
# Notes
mood_notes = st.text_area(
"Additional notes (optional)",
height=140,
placeholder="Share any thoughts, feelings, or details about your day...",
help="This helps your AI companion understand you better"
)
# Submit button
submitted = st.form_submit_button("💾 Save Mood Entry")
if submitted:
try:
# Save the mood entry
tracker.add_mood_entry(
mood_level=selected_mood,
notes=mood_notes,
context_reason=context_reason,
activities=selected_activities
)
st.success("✅ Your mood has been recorded successfully!")
# Show personalized response based on mood
mood_responses = {
"very_low": "🤗 I'm here for you. Consider reaching out to a trusted friend or professional if you need support.",
"low": "📝 Journaling your thoughts might help process your feelings. Would you like to talk about what's bothering you?",
"okay": "🚶♀ A short walk or some light stretching might help you feel more balanced.",
"good": "✨ Great to hear you're feeling good! What positive things happened today?",
"great": "🌟 You're shining today! Keep spreading that positivity with a kind act."
}
st.info(mood_responses.get(selected_mood, "Thanks for sharing how you're feeling!"))
except Exception as e:
st.error(f"Error saving mood entry: {str(e)}")
# Right: full summary (as before)
with right_col:
st.markdown("---")
st.markdown("### 📊 Your Recent Mood Summary")
try:
# Get recent mood data
recent_df = tracker.get_mood_dataframe(days=7)
if not recent_df.empty:
# Add responsive CSS for mood metrics
st.markdown("""
<style>
@media (max-width: 768px) {
.mood-metrics-container {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.mood-metrics-row {
display: flex;
gap: 0.5rem;
}
.mood-metrics-row > div {
flex: 1;
}
}
</style>
""", unsafe_allow_html=True)
# Responsive layout - 2 rows of 2 columns on mobile, 3 columns on desktop
col1, col2 = st.columns(2)
with col1:
avg_mood = recent_df['mood_level'].apply(tracker.get_mood_numeric).mean()
st.metric("Average Mood (7 days)", f"{avg_mood:.1f}/5")
with col2:
total_entries = len(recent_df)
st.metric("Entries This Week", total_entries)
# Third metric in a centered column
col3_container = st.columns([1, 2, 1])
with col3_container[1]:
most_common = recent_df['mood_level'].mode().iloc[0] if not recent_df.empty else "N/A"
st.metric("Most Common Mood", tracker.get_mood_label(most_common))
# Quick chart
st.markdown("#### Mood Trend (Last 7 Days)")
fig = px.line(recent_df, x='date', y=recent_df['mood_level'].apply(tracker.get_mood_numeric),
markers=True, line_shape='linear')
fig.update_layout(
xaxis_title="Date",
yaxis_title="Mood Level",
yaxis=dict(tickmode='array', tickvals=[1,2,3,4,5],
ticktext=['Very Low', 'Low', 'Okay', 'Good', 'Great']),
height=200
)
st.plotly_chart(fig, use_container_width=True)
else:
st.info("📝 Start tracking your mood to see insights here!")
except Exception as e:
st.warning("Unable to load mood statistics. This is normal if you haven't tracked your mood yet.")
st.markdown("---")
# Mood Dashboard Access
col1, col2, col3 = st.columns([1, 2, 1])
with col2:
if st.button("📊 View Mood Dashboard", use_container_width=True, type="primary"):
st.session_state.show_mood_dashboard = True
st.rerun()
st.markdown("---")
# Chat Interface
# render_header()
render_chat_interface()
handle_chat_input(model, system_prompt=get_tone_prompt())
render_session_controls()
# --- Footer ---
from components.footer import show_footer
show_footer()
# --- 10. SCROLL SCRIPT ---
st.markdown("""
<script>
function scrollToBottom() {
var chatContainer = document.querySelector('.chat-container');
if (chatContainer) {
chatContainer.scrollTop = chatContainer.scrollHeight;
}
}
setTimeout(scrollToBottom, 100);
</script>
""", unsafe_allow_html=True)