Spaces:
Sleeping
Sleeping
File size: 58,623 Bytes
f9766bc | 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 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 | import time
import streamlit as st
import pandas as pd
from content_generator import generate_content
from quiz_generator import generate_quiz
from evaluation import evaluate_answers
from flashcard_generator import generate_flashcards
from tutor import get_tutor_reply
from pdf_export import export_study_notes_pdf, export_quiz_results_pdf
from gamification import (
load_gamification, save_gamification,
update_streak, award_xp, check_and_award_badges,
get_level, get_xp_for_quiz, record_quiz,
BADGES, XP_STUDY_SESSION, XP_FLASHCARD_DECK,
)
from utils import (
get_topics, save_progress, load_progress,
get_weak_topics, get_learning_path,
load_notes, save_note, delete_note,
)
# ββ Page config ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.set_page_config(
page_title="LearnCraft β Personalized Learning",
page_icon="π",
layout="wide",
initial_sidebar_state="expanded",
)
# ββ Light Theme CSS ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.markdown("""
<style>
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,700;0,900;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
:root {
--bg: #f7f4ef;
--surface: #ffffff;
--sidebar: #1e1b4b;
--accent: #6c47ff;
--accent2: #f97316;
--accent3: #10b981;
--text: #1a1523;
--muted: #6b6880;
--card: #ffffff;
--border: #e2ddf5;
--tag-bg: #ede9fe;
--tag-color: #6c47ff;
--shadow: 0 2px 16px rgba(108,71,255,0.08);
--shadow-lg: 0 8px 40px rgba(108,71,255,0.13);
}
html, body, [class*="css"] {
font-family: 'Plus Jakarta Sans', sans-serif !important;
background-color: var(--bg) !important;
color: var(--text) !important;
}
.stApp { background: var(--bg) !important; }
/* Sidebar */
[data-testid="stSidebar"] {
background: var(--sidebar) !important;
border-right: none !important;
}
[data-testid="stSidebar"] * { color: #e2e0f5 !important; }
[data-testid="stSidebar"] h1,
[data-testid="stSidebar"] h2,
[data-testid="stSidebar"] h3 { color: #fff !important; }
/* Headings */
h1, h2, h3 {
font-family: 'Fraunces', serif !important;
color: var(--text) !important;
letter-spacing: -0.02em;
}
/* Cards */
.learn-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 18px;
padding: 1.6rem;
margin: 0.75rem 0;
box-shadow: var(--shadow);
transition: transform 0.18s, box-shadow 0.18s;
}
.learn-card:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
border-color: var(--accent);
}
/* Hero */
.hero {
background: linear-gradient(135deg, #6c47ff 0%, #a78bfa 55%, #f97316 100%);
border-radius: 24px;
padding: 3.5rem 2.5rem;
text-align: center;
margin-bottom: 2rem;
position: relative;
overflow: hidden;
box-shadow: var(--shadow-lg);
}
.hero::before {
content: '';
position: absolute; top:-60%; left:-30%;
width: 200%; height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 55%);
pointer-events: none;
}
.hero h1 {
font-family: 'Fraunces', serif !important;
font-size: 3.2rem !important;
color: #fff !important;
margin-bottom: 0.4rem !important;
text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero p { color: rgba(255,255,255,0.88) !important; font-size: 1.1rem; font-weight: 400; }
/* Tag pill */
.tag {
display: inline-block;
background: rgba(255,255,255,0.22);
color: #fff !important;
border: 1px solid rgba(255,255,255,0.35);
border-radius: 100px;
padding: 0.28rem 0.9rem;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.07em;
text-transform: uppercase;
margin-bottom: 1rem;
}
/* Content blocks */
.content-block {
background: var(--card);
border-left: 4px solid var(--accent);
border-radius: 0 14px 14px 0;
padding: 1.5rem 2rem;
margin: 0.9rem 0;
box-shadow: var(--shadow);
line-height: 1.8;
}
.content-block h3 {
color: var(--accent) !important;
font-size: 1.15rem !important;
margin-bottom: 0.6rem !important;
}
/* Score badge */
.score-badge {
font-size: 4.5rem;
font-family: 'Fraunces', serif;
font-weight: 900;
background: linear-gradient(135deg, #6c47ff, #f97316);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Progress bar */
.stProgress > div > div {
background: linear-gradient(90deg, var(--accent), var(--accent2)) !important;
border-radius: 99px !important;
}
/* Buttons */
.stButton > button {
background: linear-gradient(135deg, #6c47ff, #8b6eff) !important;
color: #fff !important;
font-weight: 600 !important;
border: none !important;
border-radius: 12px !important;
padding: 0.62rem 2rem !important;
font-family: 'Plus Jakarta Sans', sans-serif !important;
box-shadow: 0 4px 14px rgba(108,71,255,0.25) !important;
transition: opacity 0.18s, transform 0.18s !important;
}
.stButton > button:hover {
opacity: 0.9 !important;
transform: translateY(-1px) !important;
}
/* Inputs */
.stSelectbox > div > div,
.stTextInput > div > div,
.stTextArea > div > div,
.stNumberInput > div > div {
background: var(--card) !important;
border-color: var(--border) !important;
color: var(--text) !important;
border-radius: 12px !important;
box-shadow: var(--shadow) !important;
}
/* Radio */
.stRadio > div { gap: 0.5rem; }
.stRadio label {
background: var(--card) !important;
border: 1.5px solid var(--border) !important;
border-radius: 12px !important;
padding: 0.65rem 1.1rem !important;
transition: border-color 0.18s !important;
}
.stRadio label:hover { border-color: var(--accent) !important; }
/* Metrics */
[data-testid="stMetricValue"] {
color: var(--accent) !important;
font-family: 'Fraunces', serif !important;
font-size: 2rem !important;
}
[data-testid="stMetricLabel"] { color: var(--muted) !important; font-size: 0.82rem !important; }
/* Tabs */
.stTabs [data-baseweb="tab"] { color: var(--muted) !important; font-weight: 600 !important; }
.stTabs [aria-selected="true"] { color: var(--accent) !important; }
.stTabs [data-baseweb="tab-highlight"] { background: var(--accent) !important; }
.stTabs [data-baseweb="tab-border"] { background: var(--border) !important; }
/* Dividers */
hr { border-color: var(--border) !important; }
/* Alerts */
.stSuccess, .stWarning, .stError, .stInfo { border-radius: 12px !important; }
/* Dataframe */
[data-testid="stDataFrame"] { border-radius: 14px !important; overflow: hidden; box-shadow: var(--shadow); }
/* Flashcard flip */
.flip-card {
perspective: 900px;
height: 190px;
cursor: pointer;
margin: 0.5rem 0;
}
.flip-inner {
position: relative; width: 100%; height: 100%;
transition: transform 0.55s cubic-bezier(.4,2,.55,.44);
transform-style: preserve-3d;
}
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
position: absolute; width: 100%; height: 100%;
backface-visibility: hidden;
border-radius: 16px;
display: flex; align-items: center; justify-content: center;
padding: 1.2rem;
text-align: center;
box-shadow: var(--shadow);
}
.flip-front {
background: var(--card);
border: 2px solid var(--border);
color: var(--text);
font-weight: 600; font-size: 1rem;
}
.flip-back {
background: linear-gradient(135deg, #6c47ff, #8b6eff);
border: 2px solid transparent;
color: #fff;
font-size: 0.92rem;
transform: rotateY(180deg);
}
/* Sidebar nav buttons */
[data-testid="stSidebar"] .stButton > button {
background: rgba(255,255,255,0.08) !important;
color: #e2e0f5 !important;
border: 1px solid rgba(255,255,255,0.12) !important;
text-align: left !important;
box-shadow: none !important;
border-radius: 10px !important;
}
[data-testid="stSidebar"] .stButton > button:hover {
background: rgba(255,255,255,0.18) !important;
transform: none !important;
}
/* Chat bubbles */
.chat-user {
background: linear-gradient(135deg, #6c47ff, #8b6eff);
color: #fff;
border-radius: 18px 18px 4px 18px;
padding: 0.75rem 1.1rem;
margin: 0.4rem 0 0.4rem 20%;
font-size: 0.95rem;
line-height: 1.55;
box-shadow: 0 2px 8px rgba(108,71,255,0.18);
}
.chat-ai {
background: #fff;
color: #1a1523;
border: 1.5px solid #e2ddf5;
border-radius: 18px 18px 18px 4px;
padding: 0.75rem 1.1rem;
margin: 0.4rem 20% 0.4rem 0;
font-size: 0.95rem;
line-height: 1.6;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.chat-label { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:0.15rem; }
.badge-card { background:#fff; border:1.5px solid #e2ddf5; border-radius:14px; padding:1rem 0.8rem; text-align:center; box-shadow:0 2px 10px rgba(108,71,255,0.07); transition:transform 0.18s; }
.badge-card:hover { transform:translateY(-3px); }
.badge-card.earned { border-color:#6c47ff; background:#ede9fe; }
.badge-card.locked { opacity:0.45; filter:grayscale(0.6); }
.toast { background:linear-gradient(135deg,#6c47ff,#8b6eff); color:#fff; border-radius:14px; padding:0.9rem 1.3rem; margin:0.4rem 0; display:flex; align-items:center; gap:0.75rem; box-shadow:0 4px 18px rgba(108,71,255,0.25); }
</style>
""", unsafe_allow_html=True)
# ββ Session state init ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
defaults = {
"page": "home",
"content": None,
"quiz": None,
"answers": {},
"submitted": False,
"progress": load_progress(),
"quiz_start_time": None,
"quiz_elapsed": None,
"flashcards": [],
"fc_index": 0,
"fc_flipped": False,
"daily_goal": 3,
"sessions_today": 0,
# Gamification
"gami": load_gamification(),
"new_badges": [],
"xp_gained": 0,
"level_up_msg": None,
# Tutor chat
"tutor_messages": [],
"tutor_topic": "",
}
for k, v in defaults.items():
if k not in st.session_state:
st.session_state[k] = v
# ββ Sidebar βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with st.sidebar:
st.markdown("""
<div style='padding:1.2rem 0 2rem 0;'>
<div style='font-size:2.4rem; margin-bottom:0.25rem;'>π</div>
<div style='font-family: Fraunces, serif; font-size:1.5rem; font-weight:700; color:#fff;'>LearnCraft</div>
<div style='color:rgba(226,224,245,0.6); font-size:0.82rem;'>Personalized Learning Platform</div>
</div>
""", unsafe_allow_html=True)
pages = {
"π Home": "home",
"π Study Content": "study",
"π Flashcards": "flashcards",
"π§© Take Quiz": "quiz",
"π€ AI Tutor": "tutor",
"π
Achievements": "achievements",
"π My Progress": "progress",
"π My Notes": "notes",
}
for label, key in pages.items():
is_active = st.session_state.page == key
btn_label = f"βΆ {label}" if is_active else label
if st.button(btn_label, key=f"nav_{key}", use_container_width=True):
st.session_state.page = key
st.session_state.submitted = False
st.rerun()
st.markdown("---")
# XP & Level display
gami = st.session_state.gami
xp = gami.get("xp", 0)
streak = gami.get("streak", 0)
level_name, next_level_name, xp_to_next, level_pct = get_level(xp)
badges_earned = len(gami.get("badges", []))
st.markdown(f"""
<div style='margin-bottom:0.6rem;'>
<div style='color:rgba(226,224,245,0.55); font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; margin-bottom:0.3rem;'>Your Level</div>
<div style='color:#fff; font-size:1.15rem; font-weight:700;'>{level_name}</div>
<div style='color:#a78bfa; font-size:0.8rem; margin-top:0.1rem;'>{xp} XP {f"Β· {xp_to_next} to {next_level_name}" if next_level_name else "Β· MAX LEVEL"}</div>
<div style='background:rgba(255,255,255,0.12); border-radius:99px; height:6px; margin-top:6px; overflow:hidden;'>
<div style='height:100%; width:{level_pct}%; background:linear-gradient(90deg,#a78bfa,#f97316); border-radius:99px;'></div>
</div>
</div>
""", unsafe_allow_html=True)
# Daily goal tracker
progress = st.session_state.progress
sessions_today = sum(
1 for s in progress.get("sessions", [])
if s.get("date") == str(__import__("datetime").date.today())
)
goal = st.session_state.daily_goal
goal_pct = min(sessions_today / goal, 1.0)
st.markdown(f"""
<div style='margin-bottom:0.3rem;'>
<div style='color:rgba(226,224,245,0.55); font-size:0.75rem; font-weight:600; text-transform:uppercase; letter-spacing:0.05em;'>Today's Goal</div>
<div style='color:#fff; font-size:1.3rem; font-weight:700; margin:0.15rem 0;'>{sessions_today} / {goal} sessions</div>
</div>
""", unsafe_allow_html=True)
st.progress(goal_pct)
st.markdown("<div style='height:0.4rem'></div>", unsafe_allow_html=True)
topics_count = len(set(progress.get("topics_studied", [])))
best_score = progress.get("best_score", 0)
scores = progress.get("scores", [])
avg_score = round(sum(scores)/len(scores), 1) if scores else 0
st.markdown(f"""
<div style='display:flex; gap:0.4rem; margin-top:0.5rem; flex-wrap:wrap;'>
<div style='flex:1; min-width:48px; background:rgba(255,255,255,0.07); border-radius:10px; padding:0.5rem 0.4rem; text-align:center;'>
<div style='font-size:1.1rem; font-weight:700; color:#f97316;'>π₯{streak}</div>
<div style='font-size:0.63rem; color:rgba(226,224,245,0.55);'>Streak</div>
</div>
<div style='flex:1; min-width:48px; background:rgba(255,255,255,0.07); border-radius:10px; padding:0.5rem 0.4rem; text-align:center;'>
<div style='font-size:1.1rem; font-weight:700; color:#a78bfa;'>{topics_count}</div>
<div style='font-size:0.63rem; color:rgba(226,224,245,0.55);'>Topics</div>
</div>
<div style='flex:1; min-width:48px; background:rgba(255,255,255,0.07); border-radius:10px; padding:0.5rem 0.4rem; text-align:center;'>
<div style='font-size:1.1rem; font-weight:700; color:#fbbf24;'>π
{badges_earned}</div>
<div style='font-size:0.63rem; color:rgba(226,224,245,0.55);'>Badges</div>
</div>
<div style='flex:1; min-width:48px; background:rgba(255,255,255,0.07); border-radius:10px; padding:0.5rem 0.4rem; text-align:center;'>
<div style='font-size:1.1rem; font-weight:700; color:#10b981;'>{best_score}%</div>
<div style='font-size:0.63rem; color:rgba(226,224,245,0.55);'>Best</div>
</div>
</div>
""", unsafe_allow_html=True)
# ββ Page routing ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
page = st.session_state.page
# ββββββββββββββββββββββ HOME ββββββββββββββββββββββββββββββββββββββββββββββββββ
if page == "home":
st.markdown("""
<div class='hero'>
<div class='tag'>AI-Powered Learning</div>
<h1>LearnCraft</h1>
<p>Generate personalized study material, flashcards & quizzes<br>tailored exactly to your level and learning goals.</p>
</div>
""", unsafe_allow_html=True)
weak = get_weak_topics(st.session_state.progress)
if weak:
st.warning(f"π **Recommended Review:** You scored below 60% on: {', '.join(weak)}. Consider revisiting these topics!")
c1, c2, c3, c4 = st.columns(4)
features = [
("π", "Smart Content", "AI-generated study notes adapted to Beginner, Intermediate, or Advanced levels in multiple styles."),
("π", "Flashcards", "Flip-card revision sessions with auto-generated front/back cards. Perfect for memorisation."),
("π§©", "Custom Quizzes", "MCQ, True/False, Fill-in-the-Blank and Short Answer quizzes with timed mode."),
("π", "Analytics", "Score history charts, per-topic bests, streak tracking and weak-topic detection."),
]
for col, (icon, title, desc) in zip([c1, c2, c3, c4], features):
with col:
st.markdown(f"""
<div class='learn-card'>
<div style='font-size:2rem; margin-bottom:0.5rem;'>{icon}</div>
<h3 style='font-size:1.1rem !important; margin-bottom:0.4rem;'>{title}</h3>
<p style='color:#6b6880; font-size:0.87rem; line-height:1.6; margin:0;'>{desc}</p>
</div>
""", unsafe_allow_html=True)
st.markdown("---")
st.markdown("### π Quick Start")
qa, qb, qc = st.columns(3)
with qa:
if st.button("π Generate Study Notes", use_container_width=True):
st.session_state.page = "study"; st.rerun()
with qb:
if st.button("π Practice Flashcards", use_container_width=True):
st.session_state.page = "flashcards"; st.rerun()
with qc:
if st.button("π§© Start a Quiz", use_container_width=True):
st.session_state.page = "quiz"; st.rerun()
# Recent activity
sessions = st.session_state.progress.get("sessions", [])
if sessions:
st.markdown("---")
st.markdown("### π Recent Activity")
recent = sessions[-5:][::-1]
for s in recent:
score = s.get("score", 0)
color = "#10b981" if score >= 80 else "#f97316" if score >= 60 else "#ef4444"
st.markdown(f"""
<div style='background:#fff; border:1px solid #e2ddf5; border-radius:12px; padding:0.75rem 1.2rem; margin:0.3rem 0; display:flex; align-items:center; justify-content:space-between; box-shadow:0 2px 8px rgba(108,71,255,0.06);'>
<div>
<span style='font-weight:600; color:#1a1523;'>{s.get("topic","Unknown")}</span>
<span style='color:#6b6880; font-size:0.82rem; margin-left:0.5rem;'>{s.get("date","")}</span>
</div>
<div style='font-weight:700; color:{color}; font-family:Fraunces,serif; font-size:1.1rem;'>{score}%</div>
</div>
""", unsafe_allow_html=True)
# ββββββββββββββββββββββ STUDY ββββββββββββββββββββββββββββββββββββββββββββββββ
elif page == "study":
st.markdown("## π Study Content Generator")
st.markdown("<div style='color:#6b6880; margin-bottom:1rem;'>Choose a topic and level to get personalized AI-generated study notes.</div>", unsafe_allow_html=True)
col1, col2 = st.columns([2, 1])
with col1:
topic = st.text_input("π Topic", placeholder="e.g. Photosynthesis, World War II, Python Functionsβ¦")
custom_focus = st.text_area("π― Focus area (optional)", placeholder="e.g. focus on the Calvin cycle, or key dates and battlesβ¦", height=75)
with col2:
level = st.selectbox("π Your Level", ["Beginner", "Intermediate", "Advanced"])
content_type = st.selectbox("π Content Style", ["Summary Notes", "Detailed Explanation", "Bullet Points", "Concept Map"])
if topic:
path = get_learning_path(topic)
if path:
path_html = " β ".join(
f"<span style='color:#6c47ff; font-weight:700;'>{s}</span>" if s.lower() == topic.lower()
else f"<span style='color:#6b6880;'>{s}</span>"
for s in path
)
st.markdown(f"""
<div style='background:#fff; border:1px solid #e2ddf5; border-radius:12px; padding:0.8rem 1.3rem; margin-bottom:1rem; box-shadow:0 2px 8px rgba(108,71,255,0.06);'>
πΊοΈ <strong style='color:#1a1523;'>Suggested Path:</strong> {path_html}
</div>
""", unsafe_allow_html=True)
if st.button("β¨ Generate Content", use_container_width=True):
if not topic.strip():
st.warning("Please enter a topic first.")
else:
with st.spinner("Crafting your personalized contentβ¦"):
content = generate_content(topic, level, content_type, custom_focus)
st.session_state.content = content
save_progress(st.session_state.progress, topic=topic.title())
# Gamification: award XP for study session
gami = update_streak(st.session_state.gami)
gami, xp_amt, lvl_up = award_xp(gami, XP_STUDY_SESSION, "study_session")
topics_count = len(set(st.session_state.progress.get("topics_studied", [])))
new_b = check_and_award_badges(gami, {"topics_count": topics_count, "event": ""})
save_gamification(gami)
st.session_state.gami = gami
if new_b:
st.session_state.new_badges = new_b
if lvl_up:
st.session_state.level_up_msg = lvl_up
if st.session_state.content:
st.markdown("---")
data = st.session_state.content
m1, m2, m3 = st.columns(3)
m1.metric("Topic", data["topic"])
m2.metric("Level", data["level"])
m3.metric("Est. Read Time", data["read_time"])
if data.get("ai_generated"):
st.info("β¨ Content is AI-generated and tailored to your topic and level.")
for section in data["sections"]:
st.markdown(f"""
<div class='content-block'>
<h3>π {section['title']}</h3>
<div>{section['content']}</div>
</div>
""", unsafe_allow_html=True)
if data.get("key_terms"):
st.markdown("### π Key Terms")
cols = st.columns(3)
for i, term in enumerate(data["key_terms"]):
with cols[i % 3]:
st.markdown(f"""
<div style='background:#f7f4ef; border:1px solid #e2ddf5; border-radius:10px; padding:0.7rem 1rem; margin:0.3rem 0;'>
<div style='color:#6c47ff; font-weight:700; font-size:0.9rem;'>{term['term']}</div>
<div style='color:#6b6880; font-size:0.82rem; margin-top:0.2rem;'>{term['definition']}</div>
</div>
""", unsafe_allow_html=True)
if data.get("summary"):
st.markdown("### π‘ Quick Summary")
st.info(data["summary"])
st.markdown("---")
col_note, col_quiz, col_flash = st.columns(3)
with col_note:
st.markdown("##### π Save a Note")
note_text = st.text_area("Note", placeholder="Something to rememberβ¦", height=75, label_visibility="collapsed")
if st.button("πΎ Save Note"):
if note_text.strip():
save_note(note_text, data["topic"])
# Badge for first note
gami = st.session_state.gami
new_b = check_and_award_badges(gami, {"event": "note_saved"})
if new_b:
save_gamification(gami)
st.session_state.gami = gami
st.session_state.new_badges = new_b
st.success("Note saved!")
else:
st.warning("Write something first.")
with col_quiz:
st.markdown("##### π§© Test Yourself")
st.markdown("<div style='color:#6b6880; font-size:0.88rem; margin-bottom:0.6rem;'>Take a quiz on this exact topic.</div>", unsafe_allow_html=True)
if st.button("π§© Start Quiz on This Topic", use_container_width=True):
st.session_state.page = "quiz"
st.session_state.quiz_topic = data["topic"]
st.session_state.quiz_level = data["level"]
st.session_state.submitted = False
st.rerun()
with col_flash:
st.markdown("##### π Flashcard Mode")
st.markdown("<div style='color:#6b6880; font-size:0.88rem; margin-bottom:0.6rem;'>Generate flip-cards for quick revision.</div>", unsafe_allow_html=True)
if st.button("π Generate Flashcards", use_container_width=True):
st.session_state.fc_topic = data["topic"]
st.session_state.fc_level = data["level"]
st.session_state.page = "flashcards"
st.rerun()
# PDF Export
st.markdown("---")
st.markdown("##### π Export as PDF")
if st.button("β¬οΈ Download Study Notes PDF", use_container_width=True):
with st.spinner("Generating PDFβ¦"):
pdf_bytes = export_study_notes_pdf(data)
st.download_button(
label="π₯ Click to Download PDF",
data=pdf_bytes,
file_name=f"LearnCraft_{data['topic'].replace(' ','_')}_Notes.pdf",
mime="application/pdf",
use_container_width=True,
)
# ββββββββββββββββββββββ FLASHCARDS ββββββββββββββββββββββββββββββββββββββββββ
elif page == "flashcards":
st.markdown("## π Flashcard Studio")
st.markdown("<div style='color:#6b6880; margin-bottom:1rem;'>Click any card to flip it and reveal the answer.</div>", unsafe_allow_html=True)
col1, col2 = st.columns([2, 1])
with col1:
default_topic = getattr(st.session_state, "fc_topic", "")
fc_topic = st.text_input("π Topic", value=default_topic, placeholder="e.g. Quantum Mechanics, World War IIβ¦")
with col2:
default_level = getattr(st.session_state, "fc_level", "Intermediate")
fc_level = st.selectbox("π Level", ["Beginner", "Intermediate", "Advanced"],
index=["Beginner", "Intermediate", "Advanced"].index(default_level))
num_cards = st.slider("Number of Cards", min_value=5, max_value=20, value=10)
if st.button("π Generate Flashcards", use_container_width=True):
if not fc_topic.strip():
st.warning("Please enter a topic.")
else:
with st.spinner("Creating your flashcard setβ¦"):
cards = generate_flashcards(fc_topic, fc_level, num_cards)
st.session_state.flashcards = cards
st.session_state.fc_index = 0
st.session_state.fc_flipped = False
# Gamification: XP for flashcard deck
gami = update_streak(st.session_state.gami)
gami, xp_amt, lvl_up = award_xp(gami, XP_FLASHCARD_DECK, "flashcard_deck")
new_b = check_and_award_badges(gami, {"event": "flashcards"})
save_gamification(gami)
st.session_state.gami = gami
if new_b:
st.session_state.new_badges = new_b
if lvl_up:
st.session_state.level_up_msg = lvl_up
cards = st.session_state.flashcards
if cards:
st.markdown("---")
idx = st.session_state.fc_index
total_fc = len(cards)
card = cards[idx]
flipped = st.session_state.fc_flipped
# Progress
st.markdown(f"""
<div style='display:flex; justify-content:space-between; align-items:center; margin-bottom:0.8rem;'>
<div style='color:#6b6880; font-size:0.88rem; font-weight:600;'>Card {idx+1} of {total_fc}</div>
<div style='color:#6c47ff; font-size:0.88rem; font-weight:600;'>{round((idx+1)/total_fc*100)}% through deck</div>
</div>
""", unsafe_allow_html=True)
st.progress((idx + 1) / total_fc)
# Flip card (CSS-based)
flipped_class = "flipped" if flipped else ""
st.markdown(f"""
<div class="flip-card {flipped_class}" id="fc-main" onclick="this.classList.toggle('flipped')">
<div class="flip-inner">
<div class="flip-front">
<div>
<div style='font-size:0.7rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:#6b6880; margin-bottom:0.5rem;'>QUESTION</div>
<div style='font-size:1.05rem; font-weight:600; color:#1a1523;'>{card['front']}</div>
</div>
</div>
<div class="flip-back">
<div>
<div style='font-size:0.7rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:rgba(255,255,255,0.7); margin-bottom:0.5rem;'>ANSWER</div>
<div style='font-size:0.95rem;'>{card['back']}</div>
</div>
</div>
</div>
</div>
""", unsafe_allow_html=True)
st.markdown("")
nav1, nav2, nav3 = st.columns([1, 2, 1])
with nav1:
if st.button("β¬
Previous", use_container_width=True, disabled=(idx == 0)):
st.session_state.fc_index = idx - 1
st.session_state.fc_flipped = False
st.rerun()
with nav2:
if st.button("π Flip Card", use_container_width=True):
st.session_state.fc_flipped = not st.session_state.fc_flipped
st.rerun()
with nav3:
if st.button("Next β‘", use_container_width=True, disabled=(idx == total_fc - 1)):
st.session_state.fc_index = idx + 1
st.session_state.fc_flipped = False
st.rerun()
# Mini deck overview
st.markdown("---")
st.markdown("### π All Cards in This Deck")
for i, c in enumerate(cards):
bg = "#ede9fe" if i == idx else "#fff"
bd = "#6c47ff" if i == idx else "#e2ddf5"
st.markdown(f"""
<div style='background:{bg}; border:1.5px solid {bd}; border-radius:10px; padding:0.6rem 1rem; margin:0.3rem 0; display:flex; justify-content:space-between;'>
<div style='color:#1a1523; font-size:0.88rem; font-weight:600;'>{i+1}. {c['front']}</div>
</div>
""", unsafe_allow_html=True)
# ββββββββββββββββββββββ QUIZ ββββββββββββββββββββββββββββββββββββββββββββββββ
elif page == "quiz":
st.markdown("## π§© Quiz Generator")
if not st.session_state.submitted:
st.markdown("<div style='color:#6b6880; margin-bottom:1rem;'>Configure your quiz, then test your knowledge!</div>", unsafe_allow_html=True)
col1, col2 = st.columns([2, 1])
with col1:
default_topic = getattr(st.session_state, "quiz_topic", "")
topic = st.text_input("π Topic", value=default_topic, placeholder="e.g. Machine Learning, Calculusβ¦")
with col2:
default_level = getattr(st.session_state, "quiz_level", "Intermediate")
level = st.selectbox("π Difficulty", ["Beginner", "Intermediate", "Advanced"],
index=["Beginner", "Intermediate", "Advanced"].index(default_level))
col3, col4, col5 = st.columns(3)
with col3:
num_q = st.number_input("Number of Questions", min_value=3, max_value=15, value=5)
with col4:
q_type = st.selectbox("Question Type", ["Mixed", "Multiple Choice", "True/False", "Short Answer", "Fill in the Blank"])
with col5:
time_limit = st.selectbox("β±οΈ Time Limit", ["No limit", "5 minutes", "10 minutes", "15 minutes"])
if st.button("π² Generate Quiz", use_container_width=True):
if not topic.strip():
st.warning("Please enter a topic.")
else:
with st.spinner("Building your quizβ¦"):
quiz = generate_quiz(topic, level, num_q, q_type)
st.session_state.quiz = quiz
st.session_state.answers = {}
st.session_state.submitted = False
st.session_state.quiz_start_time = time.time()
st.session_state.time_limit = time_limit
st.session_state.quiz_elapsed = None
if st.session_state.quiz and not st.session_state.submitted:
quiz = st.session_state.quiz
if st.session_state.quiz_start_time:
elapsed = int(time.time() - st.session_state.quiz_start_time)
limit = st.session_state.get("time_limit", "No limit")
if limit != "No limit":
limit_secs = int(limit.split()[0]) * 60
remaining = limit_secs - elapsed
if remaining <= 0:
st.error("β±οΈ Time's up! Submittingβ¦")
st.session_state.quiz_elapsed = elapsed
st.session_state.submitted = True
st.rerun()
else:
r_m, r_s = divmod(remaining, 60)
st.info(f"β±οΈ Time remaining: {r_m}m {r_s}s")
else:
m, s = divmod(elapsed, 60)
st.info(f"β±οΈ Elapsed: {m}m {s}s")
st.markdown("---")
st.markdown(f"### π {quiz['title']}")
st.markdown(f"<div style='color:#6b6880; margin-bottom:1.5rem;'>{len(quiz['questions'])} questions Β· {quiz['difficulty']} Β· {quiz['topic']}</div>", unsafe_allow_html=True)
for i, q in enumerate(quiz["questions"]):
st.markdown(f"""
<div class='learn-card'>
<div style='color:#6b6880; font-size:0.75rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:0.5rem;'>Question {i+1} Β· {q['type']}</div>
<div style='font-size:1.02rem; font-weight:600; color:#1a1523; margin-bottom:1rem;'>{q['question']}</div>
</div>
""", unsafe_allow_html=True)
if q["type"] in ("Multiple Choice", "True/False"):
ans = st.radio(f"Answer Q{i+1}", q["options"], key=f"q_{i}", label_visibility="collapsed")
st.session_state.answers[i] = ans
elif q["type"] == "Fill in the Blank":
ans = st.text_input(f"Blank Q{i+1}", key=f"q_{i}", label_visibility="collapsed", placeholder="Type the missing wordβ¦")
st.session_state.answers[i] = ans
else:
ans = st.text_input(f"Answer Q{i+1}", key=f"q_{i}", label_visibility="collapsed", placeholder="Type your answerβ¦")
st.session_state.answers[i] = ans
st.markdown("")
if st.button("β
Submit Quiz", use_container_width=True):
st.session_state.quiz_elapsed = int(time.time() - st.session_state.quiz_start_time)
st.session_state.submitted = True
st.rerun()
else:
# ββ Results ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
quiz = st.session_state.quiz
results = evaluate_answers(quiz, st.session_state.answers)
score = results["score_percent"]
elapsed = st.session_state.get("quiz_elapsed", 0) or 0
em, es = divmod(elapsed, 60)
st.markdown(f"""
<div class='hero'>
<div class='tag'>Quiz Complete</div>
<div class='score-badge'>{score}%</div>
<div style='color:rgba(255,255,255,0.85); margin-top:0.4rem;'>{results['correct']} / {results['total']} correct</div>
<div style='color:rgba(255,255,255,0.7); font-size:0.9rem; margin-top:0.3rem;'>β±οΈ Completed in {em}m {es}s</div>
<div style='margin-top:1rem; font-size:1.1rem; color:#fff;'>{results['feedback']}</div>
</div>
""", unsafe_allow_html=True)
save_progress(st.session_state.progress, score=score, topic=quiz["topic"])
# Gamification: award XP for quiz
gami = update_streak(st.session_state.gami)
xp_for_quiz = get_xp_for_quiz(score)
gami, xp_amt, lvl_up = award_xp(gami, xp_for_quiz)
gami = record_quiz(gami, score, len(set(st.session_state.progress.get("topics_studied", []))))
topics_count = len(set(st.session_state.progress.get("topics_studied", [])))
quizzes_count = gami.get("total_quizzes", 0)
new_b = check_and_award_badges(gami, {
"score": score, "topics_count": topics_count,
"quizzes_count": quizzes_count, "event": "quiz",
})
save_gamification(gami)
st.session_state.gami = gami
if new_b:
st.session_state.new_badges = new_b
if lvl_up:
st.session_state.level_up_msg = lvl_up
# Show XP toast
st.markdown(f"""
<div class='toast'>
<div style='font-size:1.5rem;'>β‘</div>
<div>
<div style='font-weight:700; font-size:0.95rem;'>+{xp_for_quiz} XP earned!</div>
<div style='font-size:0.82rem; opacity:0.85;'>Total: {gami.get("xp",0)} XP Β· {get_level(gami.get("xp",0))[0]}</div>
</div>
</div>
""", unsafe_allow_html=True)
# Show new badges
if st.session_state.new_badges:
for bk in st.session_state.new_badges:
b = BADGES.get(bk, {})
st.markdown(f"""
<div class='toast' style='background:linear-gradient(135deg,#f97316,#fbbf24);'>
<div style='font-size:1.5rem;'>{b.get("icon","π
")}</div>
<div>
<div style='font-weight:700; font-size:0.95rem;'>Badge Unlocked: {b.get("name","")}</div>
<div style='font-size:0.82rem; opacity:0.85;'>{b.get("desc","")}</div>
</div>
</div>
""", unsafe_allow_html=True)
st.session_state.new_badges = []
if lvl_up:
st.balloons()
st.success(f"π Level Up! You reached **{lvl_up}**!")
st.session_state.level_up_msg = None
if score < 60:
st.warning(f"π Score below 60%. We recommend revisiting **{quiz['topic']}**.")
# Score meter
col_meter = st.columns([1, 2, 1])[1]
with col_meter:
level_label = "Excellent π" if score == 100 else "Great π" if score >= 80 else "Good π" if score >= 60 else "Fair π" if score >= 40 else "Keep Going πͺ"
st.markdown(f"<div style='text-align:center; color:#6c47ff; font-weight:700; margin-bottom:0.3rem;'>{level_label}</div>", unsafe_allow_html=True)
st.progress(score / 100)
st.markdown("### π Answer Review")
for i, q in enumerate(quiz["questions"]):
correct = results["details"][i]["correct"]
user_ans = st.session_state.answers.get(i, "")
color = "#10b981" if correct else "#ef4444"
icon = "β
" if correct else "β"
st.markdown(f"""
<div style='background:#fff; border:1px solid {color}33; border-left:4px solid {color}; border-radius:0 14px 14px 0; padding:1.2rem 1.5rem; margin:0.6rem 0; box-shadow:0 2px 8px rgba(0,0,0,0.04);'>
<div style='font-weight:700; margin-bottom:0.5rem; color:#1a1523;'>{icon} Q{i+1}: {q['question']}</div>
<div style='font-size:0.88rem; color:#6b6880;'>Your answer: <span style='color:{color}; font-weight:600;'>{user_ans if user_ans else "No answer"}</span></div>
<div style='font-size:0.88rem; color:#6b6880;'>Correct: <span style='color:#10b981; font-weight:600;'>{results["details"][i]["correct_answer"]}</span></div>
{f'<div style="font-size:0.82rem; color:#6b6880; margin-top:0.35rem; font-style:italic;">{results["details"][i]["explanation"]}</div>' if results["details"][i].get("explanation") else ""}
</div>
""", unsafe_allow_html=True)
st.markdown("")
c1, c2, c3 = st.columns(3)
with c1:
if st.button("π Retake Quiz", use_container_width=True):
st.session_state.submitted = False
st.session_state.answers = {}
st.session_state.quiz_start_time = time.time()
st.rerun()
with c2:
if st.button("π Study This Topic", use_container_width=True):
st.session_state.page = "study"
st.session_state.submitted = False
st.rerun()
with c3:
if st.button("π Flashcard Revision", use_container_width=True):
st.session_state.fc_topic = quiz["topic"]
st.session_state.fc_level = quiz["difficulty"]
st.session_state.page = "flashcards"
st.session_state.submitted = False
st.rerun()
# PDF Export for quiz results
st.markdown("---")
if st.button("β¬οΈ Download Quiz Results PDF", use_container_width=True):
with st.spinner("Generating PDFβ¦"):
pdf_bytes = export_quiz_results_pdf(quiz, results, st.session_state.answers)
st.download_button(
label="π₯ Click to Download Results PDF",
data=pdf_bytes,
file_name=f"LearnCraft_{quiz['topic'].replace(' ','_')}_Results.pdf",
mime="application/pdf",
use_container_width=True,
)
# ββββββββββββββββββββββ PROGRESS ββββββββββββββββββββββββββββββββββββββββββββ
elif page == "progress":
st.markdown("## π My Learning Progress")
progress = st.session_state.progress
scores = progress.get("scores", [])
sessions = progress.get("sessions", [])
c1, c2, c3, c4 = st.columns(4)
topics_list = list(set(progress.get("topics_studied", [])))
avg = round(sum(scores)/len(scores), 1) if scores else 0
c1.metric("π Topics Studied", len(topics_list))
c2.metric("π Best Score", f"{progress.get('best_score', 0)}%")
c3.metric("π Avg Score", f"{avg}%")
c4.metric("π― Total Quizzes", len(scores))
st.markdown("---")
if sessions:
st.markdown("### π Score History")
df = pd.DataFrame(sessions)
df.index = range(1, len(df) + 1)
df.index.name = "Quiz #"
st.line_chart(df[["score"]].rename(columns={"score": "Score (%)"}), color="#6c47ff")
topic_scores = progress.get("topic_scores", {})
if topic_scores:
st.markdown("### π
Best Score Per Topic")
ts_df = pd.DataFrame([
{"Topic": t, "Best Score (%)": s, "Status": "β
Passing" if s >= 60 else "β οΈ Needs Review"}
for t, s in sorted(topic_scores.items(), key=lambda x: -x[1])
])
st.dataframe(ts_df, use_container_width=True, hide_index=True)
weak = get_weak_topics(progress)
if weak:
st.markdown("### β οΈ Topics to Improve")
for t in weak:
st.markdown(f"""
<div style='background:#fff; border:1px solid #ef444433; border-left:4px solid #ef4444; border-radius:0 12px 12px 0; padding:0.65rem 1.1rem; margin:0.35rem 0; color:#ef4444; font-weight:600;'>
β οΈ {t} β below 60%
</div>
""", unsafe_allow_html=True)
if topics_list:
st.markdown("### ποΈ Topics Covered")
cols = st.columns(3)
for i, t in enumerate(topics_list):
with cols[i % 3]:
best = topic_scores.get(t, 0)
color = "#10b981" if best >= 80 else "#f97316" if best >= 60 else "#ef4444"
st.markdown(f"""
<div style='background:#fff; border:1px solid #e2ddf5; border-radius:10px; padding:0.7rem 1rem; margin:0.3rem 0; display:flex; justify-content:space-between; align-items:center;'>
<div style='color:#1a1523; font-weight:600; font-size:0.9rem;'>π {t}</div>
<div style='color:{color}; font-weight:700; font-size:0.9rem;'>{best}%</div>
</div>
""", unsafe_allow_html=True)
if not topics_list and not scores:
st.markdown("""
<div style='text-align:center; padding:4rem 2rem; color:#6b6880;'>
<div style='font-size:3rem; margin-bottom:1rem;'>π±</div>
<div style='font-size:1.2rem;'>No activity yet. Start learning to see your progress!</div>
</div>
""", unsafe_allow_html=True)
if st.button("π Start Learning Now", use_container_width=True):
st.session_state.page = "study"; st.rerun()
st.markdown("")
if st.button("ποΈ Reset All Progress", type="secondary"):
st.session_state.progress = {"topics_studied": [], "scores": [], "best_score": 0, "sessions": [], "topic_scores": {}}
save_progress(st.session_state.progress)
st.success("Progress reset.")
st.rerun()
# ββββββββββββββββββββββ NOTES βββββββββββββββββββββββββββββββββββββββββββββββ
elif page == "notes":
st.markdown("## π My Notes")
st.markdown("<div style='color:#6b6880; margin-bottom:1rem;'>Notes you've saved while studying.</div>", unsafe_allow_html=True)
notes = load_notes()
if not notes:
st.markdown("""
<div style='text-align:center; padding:4rem 2rem; color:#6b6880;'>
<div style='font-size:3rem; margin-bottom:1rem;'>π</div>
<div style='font-size:1.2rem;'>No notes yet. Save notes from the Study page!</div>
</div>
""", unsafe_allow_html=True)
if st.button("π Go to Study", use_container_width=True):
st.session_state.page = "study"; st.rerun()
else:
# Search filter
search = st.text_input("π Search notes", placeholder="Filter by keywordβ¦")
filtered = [n for n in reversed(notes) if not search or search.lower() in n.get("note","").lower() or search.lower() in n.get("topic","").lower()]
st.markdown(f"**{len(filtered)} note(s)**")
for i, note in enumerate(filtered):
actual_index = notes.index(note) if note in notes else -1
col_note, col_del = st.columns([11, 1])
with col_note:
st.markdown(f"""
<div style='background:#fff; border:1px solid #e2ddf5; border-left:4px solid #6c47ff; border-radius:0 14px 14px 0; padding:1rem 1.5rem; margin:0.5rem 0; box-shadow:0 2px 8px rgba(108,71,255,0.06);'>
<div style='color:#6c47ff; font-size:0.78rem; font-weight:700; margin-bottom:0.4rem;'>π {note.get("topic","Unknown")} Β· {note.get("date","")}</div>
<div style='color:#1a1523; font-size:0.95rem; line-height:1.65;'>{note.get("note","")}</div>
</div>
""", unsafe_allow_html=True)
with col_del:
if st.button("ποΈ", key=f"del_{i}", help="Delete note"):
if actual_index >= 0:
delete_note(actual_index)
st.rerun()
# ββββββββββββββββββββββ AI TUTOR βββββββββββββββββββββββββββββββββββββββββββββ
elif page == "tutor":
st.markdown("## π€ AI Tutor")
st.markdown("<div style='color:#6b6880; margin-bottom:1rem;'>Ask anything about any topic. Your tutor remembers the full conversation.</div>", unsafe_allow_html=True)
# Topic context selector
col_t, col_c = st.columns([3, 1])
with col_t:
tutor_topic = st.text_input(
"π Topic context (optional)",
value=st.session_state.tutor_topic,
placeholder="e.g. Quantum Mechanics β helps the tutor stay focused",
)
st.session_state.tutor_topic = tutor_topic
with col_c:
st.markdown("<div style='height:1.85rem'></div>", unsafe_allow_html=True)
if st.button("ποΈ Clear Chat", use_container_width=True):
st.session_state.tutor_messages = []
st.rerun()
st.markdown("---")
# Render conversation history
msgs = st.session_state.tutor_messages
if not msgs:
st.markdown("""
<div style='text-align:center; padding:3rem 2rem; color:#6b6880;'>
<div style='font-size:3rem; margin-bottom:0.75rem;'>π€</div>
<div style='font-size:1.1rem; font-weight:600; color:#1a1523; margin-bottom:0.4rem;'>Hi! I'm your LearnCraft Tutor.</div>
<div style='font-size:0.95rem;'>Ask me anything about your topic β concepts, examples, quick tests, or explanations.</div>
</div>
""", unsafe_allow_html=True)
# Quick-start prompts
st.markdown("#### π‘ Try asking:")
prompts = [
"Explain this topic like I'm 10 years old",
"Give me 3 real-world examples",
"What are the most common mistakes beginners make?",
"Quiz me with one question",
]
p_cols = st.columns(2)
for i, prompt in enumerate(prompts):
with p_cols[i % 2]:
if st.button(f'"{prompt}"', key=f"prompt_{i}", use_container_width=True):
full_prompt = prompt + (f" about {tutor_topic}" if tutor_topic else "")
st.session_state.tutor_messages.append({"role": "user", "content": full_prompt})
with st.spinner("Thinkingβ¦"):
reply = get_tutor_reply(st.session_state.tutor_messages, tutor_topic)
st.session_state.tutor_messages.append({"role": "assistant", "content": reply})
st.rerun()
else:
for msg in msgs:
if msg["role"] == "user":
st.markdown(f"""
<div style='text-align:right; margin-bottom:0.15rem;'>
<span style='font-size:0.72rem; font-weight:700; color:#6b6880; text-transform:uppercase; letter-spacing:0.05em;'>You</span>
</div>
<div class='chat-user'>{msg['content']}</div>
""", unsafe_allow_html=True)
else:
st.markdown(f"""
<div style='margin-bottom:0.15rem;'>
<span style='font-size:0.72rem; font-weight:700; color:#6c47ff; text-transform:uppercase; letter-spacing:0.05em;'>π€ Tutor</span>
</div>
<div class='chat-ai'>{msg['content']}</div>
""", unsafe_allow_html=True)
# Input box
st.markdown("<div style='height:1rem'></div>", unsafe_allow_html=True)
with st.form("chat_form", clear_on_submit=True):
user_input = st.text_input(
"Your question",
placeholder="Ask your tutor anythingβ¦",
label_visibility="collapsed",
)
submitted = st.form_submit_button("Send β€", use_container_width=True)
if submitted and user_input.strip():
st.session_state.tutor_messages.append({"role": "user", "content": user_input.strip()})
with st.spinner("Tutor is thinkingβ¦"):
reply = get_tutor_reply(st.session_state.tutor_messages, tutor_topic)
st.session_state.tutor_messages.append({"role": "assistant", "content": reply})
st.rerun()
# ββββββββββββββββββββββ ACHIEVEMENTS ββββββββββββββββββββββββββββββββββββββββ
elif page == "achievements":
gami = st.session_state.gami
xp = gami.get("xp", 0)
streak = gami.get("streak", 0)
earned = set(gami.get("badges", []))
level_name, next_level_name, xp_to_next, level_pct = get_level(xp)
st.markdown("## π
Achievements")
st.markdown("<div style='color:#6b6880; margin-bottom:1rem;'>Your XP, level, streak and badges.</div>", unsafe_allow_html=True)
# XP / Level hero card
st.markdown(f"""
<div style='background:linear-gradient(135deg,#6c47ff,#a78bfa,#f97316); border-radius:22px; padding:2.5rem 2rem; text-align:center; margin-bottom:1.5rem; box-shadow:0 8px 40px rgba(108,71,255,0.18);'>
<div style='font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:rgba(255,255,255,0.7); margin-bottom:0.5rem;'>Current Level</div>
<div style='font-family:Fraunces,serif; font-size:2.8rem; font-weight:900; color:#fff; margin-bottom:0.2rem;'>{level_name}</div>
<div style='color:rgba(255,255,255,0.85); font-size:1.1rem; font-weight:600;'>{xp} XP total</div>
{"<div style='color:rgba(255,255,255,0.65); font-size:0.88rem; margin-top:0.3rem;'>" + str(xp_to_next) + " XP to " + str(next_level_name) + "</div>" if next_level_name else "<div style='color:rgba(255,255,255,0.65); font-size:0.88rem; margin-top:0.3rem;'>Maximum level reached! π</div>"}
<div style='background:rgba(255,255,255,0.2); border-radius:99px; height:8px; margin:1rem auto 0; max-width:320px; overflow:hidden;'>
<div style='height:100%; width:{level_pct}%; background:#fff; border-radius:99px;'></div>
</div>
</div>
""", unsafe_allow_html=True)
# Stats row
total_quizzes = gami.get("total_quizzes", 0)
badges_count = len(earned)
s1, s2, s3, s4 = st.columns(4)
for col, icon, val, label in [
(s1, "π₯", f"{streak} days", "Current Streak"),
(s2, "β‘", f"{xp} XP", "Total XP"),
(s3, "π§©", str(total_quizzes), "Quizzes Done"),
(s4, "π
", f"{badges_count}/{len(BADGES)}", "Badges Earned"),
]:
with col:
st.markdown(f"""
<div style='background:#fff; border:1.5px solid #e2ddf5; border-radius:16px; padding:1.2rem 0.8rem; text-align:center; box-shadow:0 2px 10px rgba(108,71,255,0.07);'>
<div style='font-size:1.6rem; margin-bottom:0.3rem;'>{icon}</div>
<div style='font-family:Fraunces,serif; font-size:1.4rem; font-weight:700; color:#1a1523;'>{val}</div>
<div style='font-size:0.75rem; color:#6b6880; font-weight:600;'>{label}</div>
</div>
""", unsafe_allow_html=True)
st.markdown("---")
st.markdown("### π
Badge Collection")
# Filter tabs
filter_tab1, filter_tab2 = st.tabs(["All Badges", "Earned Only"])
def render_badges(badge_list):
cols = st.columns(4)
for i, (key, badge) in enumerate(badge_list):
is_earned = key in earned
card_class = "badge-card earned" if is_earned else "badge-card locked"
lock_icon = badge["icon"] if is_earned else "π"
opacity = "1" if is_earned else "0.5"
with cols[i % 4]:
st.markdown(f"""
<div class='{card_class}' style='opacity:{opacity};'>
<div style='font-size:2rem; margin-bottom:0.4rem;'>{lock_icon}</div>
<div style='font-weight:700; font-size:0.88rem; color:#1a1523; margin-bottom:0.2rem;'>{badge["name"]}</div>
<div style='font-size:0.76rem; color:#6b6880; line-height:1.4;'>{badge["desc"]}</div>
{"<div style='margin-top:0.4rem; font-size:0.7rem; font-weight:700; color:#6c47ff; text-transform:uppercase; letter-spacing:0.05em;'>β Earned</div>" if is_earned else ""}
</div>
""", unsafe_allow_html=True)
with filter_tab1:
render_badges(list(BADGES.items()))
with filter_tab2:
earned_list = [(k, v) for k, v in BADGES.items() if k in earned]
if earned_list:
render_badges(earned_list)
else:
st.markdown("""
<div style='text-align:center; padding:3rem; color:#6b6880;'>
<div style='font-size:2.5rem; margin-bottom:0.75rem;'>π</div>
<div>No badges yet β complete quizzes and study sessions to earn them!</div>
</div>
""", unsafe_allow_html=True)
# How to earn XP guide
st.markdown("---")
st.markdown("### β‘ How to Earn XP")
xp_guide = [
("π", "Study session", "+10 XP"),
("π", "Flashcard deck", "+10 XP"),
("π§©", "Complete a quiz", "+20 XP"),
("π―", "Score β₯ 60%", "+15 XP"),
("π", "Score β₯ 80%", "+30 XP"),
("π―", "Perfect score 100%","+50 XP"),
]
xp_cols = st.columns(3)
for i, (icon, action, xp_val) in enumerate(xp_guide):
with xp_cols[i % 3]:
st.markdown(f"""
<div style='background:#fff; border:1px solid #e2ddf5; border-radius:12px; padding:0.8rem 1rem; margin:0.3rem 0; display:flex; justify-content:space-between; align-items:center; box-shadow:0 1px 6px rgba(108,71,255,0.05);'>
<div style='font-size:0.9rem; color:#1a1523;'>{icon} {action}</div>
<div style='font-weight:700; color:#6c47ff; font-size:0.9rem;'>{xp_val}</div>
</div>
""", unsafe_allow_html=True)
|