617 lines
16 KiB
Python
617 lines
16 KiB
Python
|
|
#!/usr/bin/env python3
|
||
|
|
"""
|
||
|
|
quiXzoom Academy — Lektionsgenerator från JSON
|
||
|
|
Genererar alla HTML-lektioner från academy-lessons-content.json
|
||
|
|
"""
|
||
|
|
|
||
|
|
import json
|
||
|
|
import os
|
||
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
# Ladda innehåll
|
||
|
|
with open('academy-lessons-content.json', 'r', encoding='utf-8') as f:
|
||
|
|
data = json.load(f)
|
||
|
|
|
||
|
|
# HTML-mall
|
||
|
|
HTML_TEMPLATE = '''<!DOCTYPE html>
|
||
|
|
<html lang="sv">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>{title} — quiXzoom Academy</title>
|
||
|
|
<style>
|
||
|
|
:root {{
|
||
|
|
--qx-black: #0a0a0a;
|
||
|
|
--qx-white: #ffffff;
|
||
|
|
--qx-blue: #0066FF;
|
||
|
|
--qx-green: #00C853;
|
||
|
|
--qx-gray: #F5F5F7;
|
||
|
|
--qx-dark-gray: #1a1a1a;
|
||
|
|
--qx-text-muted: #6e6e73;
|
||
|
|
--qx-purple: #7B61FF;
|
||
|
|
--qx-orange: #FF6B35;
|
||
|
|
}}
|
||
|
|
|
||
|
|
* {{ margin: 0; padding: 0; box-sizing: border-box; }}
|
||
|
|
|
||
|
|
body {{
|
||
|
|
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
|
||
|
|
color: var(--qx-black);
|
||
|
|
background: var(--qx-white);
|
||
|
|
line-height: 1.6;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.progress-container {{
|
||
|
|
position: sticky;
|
||
|
|
top: 0;
|
||
|
|
background: white;
|
||
|
|
padding: 12px 20px;
|
||
|
|
border-bottom: 1px solid var(--qx-gray);
|
||
|
|
z-index: 100;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.progress-bar {{
|
||
|
|
max-width: 600px;
|
||
|
|
margin: 0 auto;
|
||
|
|
background: var(--qx-gray);
|
||
|
|
border-radius: 10px;
|
||
|
|
height: 8px;
|
||
|
|
overflow: hidden;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.progress-fill {{
|
||
|
|
background: var(--qx-green);
|
||
|
|
height: 100%;
|
||
|
|
width: 0%;
|
||
|
|
transition: width 0.5s ease;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.lesson-container {{
|
||
|
|
max-width: 800px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 40px 20px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.lesson-header {{
|
||
|
|
margin-bottom: 48px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.lesson-module {{
|
||
|
|
color: var(--qx-blue);
|
||
|
|
font-size: 0.875rem;
|
||
|
|
text-transform: uppercase;
|
||
|
|
letter-spacing: 2px;
|
||
|
|
margin-bottom: 8px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.lesson-title {{
|
||
|
|
font-size: 2.5rem;
|
||
|
|
margin-bottom: 16px;
|
||
|
|
line-height: 1.2;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.lesson-meta {{
|
||
|
|
color: var(--qx-text-muted);
|
||
|
|
font-size: 0.9rem;
|
||
|
|
display: flex;
|
||
|
|
gap: 16px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.content-block {{
|
||
|
|
margin-bottom: 48px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.content-block h2 {{
|
||
|
|
font-size: 1.75rem;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.content-block p {{
|
||
|
|
margin-bottom: 16px;
|
||
|
|
color: #333;
|
||
|
|
font-size: 1.05rem;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.content-block ul {{
|
||
|
|
margin-left: 24px;
|
||
|
|
margin-bottom: 16px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.content-block li {{
|
||
|
|
margin-bottom: 12px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.tip-box {{
|
||
|
|
background: #e8f4fd;
|
||
|
|
border-left: 4px solid var(--qx-blue);
|
||
|
|
padding: 24px;
|
||
|
|
margin: 24px 0;
|
||
|
|
border-radius: 0 12px 12px 0;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.tip-box strong {{
|
||
|
|
color: var(--qx-blue);
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 8px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.warning-box {{
|
||
|
|
background: #fff3cd;
|
||
|
|
border-left: 4px solid var(--qx-orange);
|
||
|
|
padding: 24px;
|
||
|
|
margin: 24px 0;
|
||
|
|
border-radius: 0 12px 12px 0;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.warning-box strong {{
|
||
|
|
color: var(--qx-orange);
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 8px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.example-box {{
|
||
|
|
background: var(--qx-gray);
|
||
|
|
padding: 24px;
|
||
|
|
border-radius: 12px;
|
||
|
|
margin: 24px 0;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.example-box h4 {{
|
||
|
|
margin-bottom: 12px;
|
||
|
|
color: var(--qx-dark-gray);
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-container {{
|
||
|
|
background: var(--qx-gray);
|
||
|
|
padding: 32px;
|
||
|
|
border-radius: 16px;
|
||
|
|
margin: 32px 0;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-question {{
|
||
|
|
font-size: 1.25rem;
|
||
|
|
font-weight: 600;
|
||
|
|
margin-bottom: 24px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-options {{
|
||
|
|
list-style: none;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-option {{
|
||
|
|
background: white;
|
||
|
|
padding: 16px 20px;
|
||
|
|
margin-bottom: 12px;
|
||
|
|
border-radius: 12px;
|
||
|
|
cursor: pointer;
|
||
|
|
transition: all 0.2s;
|
||
|
|
border: 2px solid transparent;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 12px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-option:hover {{
|
||
|
|
border-color: var(--qx-blue);
|
||
|
|
transform: translateX(4px);
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-option.correct {{
|
||
|
|
background: var(--qx-green);
|
||
|
|
color: white;
|
||
|
|
border-color: var(--qx-green);
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-option.wrong {{
|
||
|
|
background: #ff4444;
|
||
|
|
color: white;
|
||
|
|
border-color: #ff4444;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-option.disabled {{
|
||
|
|
pointer-events: none;
|
||
|
|
opacity: 0.7;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-letter {{
|
||
|
|
width: 32px;
|
||
|
|
height: 32px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: var(--qx-gray);
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
font-weight: 600;
|
||
|
|
flex-shrink: 0;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-option:hover .quiz-letter {{
|
||
|
|
background: var(--qx-blue);
|
||
|
|
color: white;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-option.correct .quiz-letter,
|
||
|
|
.quiz-option.wrong .quiz-letter {{
|
||
|
|
background: rgba(255,255,255,0.3);
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-feedback {{
|
||
|
|
margin-top: 20px;
|
||
|
|
padding: 20px;
|
||
|
|
border-radius: 12px;
|
||
|
|
display: none;
|
||
|
|
font-size: 1rem;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.quiz-feedback.show {{
|
||
|
|
display: block;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.lesson-nav {{
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
margin-top: 60px;
|
||
|
|
padding-top: 40px;
|
||
|
|
border-top: 2px solid var(--qx-gray);
|
||
|
|
}}
|
||
|
|
|
||
|
|
.nav-btn {{
|
||
|
|
padding: 14px 28px;
|
||
|
|
border-radius: 10px;
|
||
|
|
text-decoration: none;
|
||
|
|
font-weight: 600;
|
||
|
|
transition: all 0.2s;
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 8px;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.nav-btn.prev {{
|
||
|
|
background: var(--qx-gray);
|
||
|
|
color: var(--qx-black);
|
||
|
|
}}
|
||
|
|
|
||
|
|
.nav-btn.next {{
|
||
|
|
background: var(--qx-blue);
|
||
|
|
color: white;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.nav-btn:hover {{
|
||
|
|
transform: translateY(-2px);
|
||
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
|
||
|
|
}}
|
||
|
|
|
||
|
|
.complete-btn {{
|
||
|
|
display: block;
|
||
|
|
width: 100%;
|
||
|
|
max-width: 400px;
|
||
|
|
margin: 48px auto;
|
||
|
|
padding: 18px 32px;
|
||
|
|
background: var(--qx-green);
|
||
|
|
color: white;
|
||
|
|
border: none;
|
||
|
|
border-radius: 12px;
|
||
|
|
font-size: 1.1rem;
|
||
|
|
font-weight: 600;
|
||
|
|
cursor: pointer;
|
||
|
|
transition: all 0.2s;
|
||
|
|
}}
|
||
|
|
|
||
|
|
.complete-btn:hover {{
|
||
|
|
transform: translateY(-2px);
|
||
|
|
box-shadow: 0 4px 16px rgba(0,200,83,0.3);
|
||
|
|
}}
|
||
|
|
|
||
|
|
.complete-btn.completed {{
|
||
|
|
background: var(--qx-gray);
|
||
|
|
color: var(--qx-text-muted);
|
||
|
|
cursor: default;
|
||
|
|
}}
|
||
|
|
|
||
|
|
@media (max-width: 768px) {{
|
||
|
|
.lesson-title {{ font-size: 1.75rem; }}
|
||
|
|
}}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
|
||
|
|
<div class="progress-container">
|
||
|
|
<div class="progress-bar">
|
||
|
|
<div class="progress-fill" id="lessonProgress" style="width: 0%"></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="lesson-container">
|
||
|
|
<header class="lesson-header">
|
||
|
|
<div class="lesson-module">{module_title}</div>
|
||
|
|
<h1 class="lesson-title">{title}</h1>
|
||
|
|
<div class="lesson-meta">
|
||
|
|
<span>⏱️ {duration}</span>
|
||
|
|
<span>🎯 {level}</span>
|
||
|
|
<span>📚 {type}</span>
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
{content}
|
||
|
|
|
||
|
|
<button class="complete-btn" id="completeBtn" onclick="completeLesson()">
|
||
|
|
✅ Markera lektion som klar
|
||
|
|
</button>
|
||
|
|
|
||
|
|
<nav class="lesson-nav">
|
||
|
|
<a href="{prev_link}" class="nav-btn prev">← {prev_text}</a>
|
||
|
|
<a href="{next_link}" class="nav-btn next">{next_text} →</a>
|
||
|
|
</nav>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
const lessonId = '{lesson_id}';
|
||
|
|
let completedLessons = JSON.parse(localStorage.getItem('academyProgress') || '[]');
|
||
|
|
|
||
|
|
function checkAnswer(element, isCorrect) {{
|
||
|
|
const options = document.querySelectorAll('.quiz-option');
|
||
|
|
const feedback = document.getElementById('quizFeedback');
|
||
|
|
|
||
|
|
options.forEach(opt => opt.classList.add('disabled'));
|
||
|
|
|
||
|
|
if (isCorrect) {{
|
||
|
|
element.classList.add('correct');
|
||
|
|
feedback.innerHTML = '<strong>✅ Rätt!</strong> {correct_feedback}';
|
||
|
|
feedback.style.background = '#d4edda';
|
||
|
|
feedback.style.color = '#155724';
|
||
|
|
}} else {{
|
||
|
|
element.classList.add('wrong');
|
||
|
|
feedback.innerHTML = '<strong>❌ Inte riktigt.</strong> {wrong_feedback}';
|
||
|
|
feedback.style.background = '#f8d7da';
|
||
|
|
feedback.style.color = '#721c24';
|
||
|
|
}}
|
||
|
|
|
||
|
|
feedback.classList.add('show');
|
||
|
|
}}
|
||
|
|
|
||
|
|
function completeLesson() {{
|
||
|
|
if (!completedLessons.includes(lessonId)) {{
|
||
|
|
completedLessons.push(lessonId);
|
||
|
|
localStorage.setItem('academyProgress', JSON.stringify(completedLessons));
|
||
|
|
|
||
|
|
const btn = document.getElementById('completeBtn');
|
||
|
|
btn.textContent = '✅ Lektion klar!';
|
||
|
|
btn.classList.add('completed');
|
||
|
|
btn.disabled = true;
|
||
|
|
|
||
|
|
btn.style.transform = 'scale(1.05)';
|
||
|
|
setTimeout(() => btn.style.transform = 'scale(1)', 200);
|
||
|
|
}}
|
||
|
|
}}
|
||
|
|
|
||
|
|
if (completedLessons.includes(lessonId)) {{
|
||
|
|
const btn = document.getElementById('completeBtn');
|
||
|
|
btn.textContent = '✅ Lektion klar!';
|
||
|
|
btn.classList.add('completed');
|
||
|
|
btn.disabled = true;
|
||
|
|
}}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
'''
|
||
|
|
|
||
|
|
def generate_content_html(lesson_data):
|
||
|
|
"""Generera HTML-innehåll för en lektion"""
|
||
|
|
|
||
|
|
content = lesson_data['content']
|
||
|
|
html_parts = []
|
||
|
|
|
||
|
|
# Intro
|
||
|
|
if 'intro' in content:
|
||
|
|
html_parts.append(f'<div class="content-block">\n<p>{content["intro"]}</p>\n</div>')
|
||
|
|
|
||
|
|
# Tips
|
||
|
|
if 'tips' in content:
|
||
|
|
tips_html = '\n'.join([f'<p>• {tip}</p>' for tip in content['tips']])
|
||
|
|
html_parts.append(f'<div class="tip-box">\n<strong>💡 Tips</strong>\n{tips_html}\n</div>')
|
||
|
|
|
||
|
|
# Requirements
|
||
|
|
if 'requirements' in content:
|
||
|
|
req_html = '\n'.join([f'<li>{req}</li>' for req in content['requirements']])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Vad du behöver</h2>\n<ul>\n{req_html}\n</ul>\n</div>')
|
||
|
|
|
||
|
|
# Steps
|
||
|
|
if 'steps' in content:
|
||
|
|
steps_html = '\n'.join([f'<li><strong>Steg {i+1}:</strong> {step}</li>' for i, step in enumerate(content['steps'])])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Steg för steg</h2>\n<ol>\n{steps_html}\n</ol>\n</div>')
|
||
|
|
|
||
|
|
# Factors
|
||
|
|
if 'factors' in content:
|
||
|
|
factors_html = '\n'.join([f'<li>{factor}</li>' for factor in content['factors']])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Viktiga faktorer</h2>\n<ul>\n{factors_html}\n</ul>\n</div>')
|
||
|
|
|
||
|
|
# Examples
|
||
|
|
if 'examples' in content:
|
||
|
|
examples_html = '\n'.join([f'<p>• {example}</p>' for example in content['examples']])
|
||
|
|
html_parts.append(f'<div class="example-box">\n<h4>Exempel</h4>\n{examples_html}\n</div>')
|
||
|
|
|
||
|
|
# Best practices
|
||
|
|
if 'best_practices' in content:
|
||
|
|
bp_html = '\n'.join([f'<li>{bp}</li>' for bp in content['best_practices']])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Bästa praxis</h2>\n<ul>\n{bp_html}\n</ul>\n</div>')
|
||
|
|
|
||
|
|
# Common errors
|
||
|
|
if 'common_errors' in content:
|
||
|
|
errors_html = '\n'.join([f'<li>{error}</li>' for error in content['common_errors']])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Vanliga fel</h2>\n<ul>\n{errors_html}\n</ul>\n</div>')
|
||
|
|
|
||
|
|
# Solutions
|
||
|
|
if 'solutions' in content:
|
||
|
|
sol_html = '\n'.join([f'<li>{sol}</li>' for sol in content['solutions']])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Lösningar</h2>\n<ul>\n{sol_html}\n</ul>\n</div>')
|
||
|
|
|
||
|
|
# Safety rules
|
||
|
|
if 'safety_rules' in content:
|
||
|
|
rules_html = '\n'.join([f'<li>{rule}</li>' for rule in content['safety_rules']])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Säkerhetsregler</h2>\n<ul>\n{rules_html}\n</ul>\n</div>')
|
||
|
|
|
||
|
|
# Rules
|
||
|
|
if 'rules' in content:
|
||
|
|
rules_html = '\n'.join([f'<li>{rule}</li>' for rule in content['rules']])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Regler</h2>\n<ul>\n{rules_html}\n</ul>\n</div>')
|
||
|
|
|
||
|
|
# Strategies
|
||
|
|
if 'strategies' in content:
|
||
|
|
strat_html = '\n'.join([f'<li>{strat}</li>' for strat in content['strategies']])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Strategier</h2>\n<ul>\n{strat_html}\n</ul>\n</div>')
|
||
|
|
|
||
|
|
# Levels
|
||
|
|
if 'levels' in content:
|
||
|
|
levels_html = '\n'.join([f'<li>{level}</li>' for level in content['levels']])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Nivåer</h2>\n<ul>\n{levels_html}\n</ul>\n</div>')
|
||
|
|
|
||
|
|
# Payment schedule
|
||
|
|
if 'payment_schedule' in content:
|
||
|
|
pay_html = '\n'.join([f'<li>{pay}</li>' for pay in content['payment_schedule']])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Utbetalningar</h2>\n<ul>\n{pay_html}\n</ul>\n</div>')
|
||
|
|
|
||
|
|
# Deductions
|
||
|
|
if 'deductions' in content:
|
||
|
|
ded_html = '\n'.join([f'<li>{ded}</li>' for ded in content['deductions']])
|
||
|
|
html_parts.append(f'<div class="content-block">\n<h2>Avdrag du kan göra</h2>\n<ul>\n{ded_html}\n</ul>\n</div>')
|
||
|
|
|
||
|
|
# Warning
|
||
|
|
if 'warning' in content:
|
||
|
|
html_parts.append(f'<div class="warning-box">\n<strong>⚠️ Viktigt</strong>\n<p>{content["warning"]}</p>\n</div>')
|
||
|
|
|
||
|
|
# Quiz
|
||
|
|
if 'quiz' in content:
|
||
|
|
quiz = content['quiz']
|
||
|
|
options_html = '\n'.join([
|
||
|
|
f'<li class="quiz-option" onclick="checkAnswer(this, {i == quiz["correct"]})">\n<span class="quiz-letter">{chr(65+i)}</span>\n<span>{opt}</span>\n</li>'
|
||
|
|
for i, opt in enumerate(quiz['options'])
|
||
|
|
])
|
||
|
|
|
||
|
|
correct_feedback = "Bra jobbat!"
|
||
|
|
wrong_feedback = "Tänk igenom svaret en gång till."
|
||
|
|
|
||
|
|
html_parts.append(f'''<div class="quiz-container">
|
||
|
|
<div class="quiz-question">{quiz['question']}</div>
|
||
|
|
<ul class="quiz-options">
|
||
|
|
{options_html}
|
||
|
|
</ul>
|
||
|
|
<div class="quiz-feedback" id="quizFeedback"></div>
|
||
|
|
</div>''')
|
||
|
|
|
||
|
|
return '\n\n'.join(html_parts)
|
||
|
|
|
||
|
|
def generate_lesson(module, lesson, prev_lesson, next_lesson):
|
||
|
|
"""Generera en komplett lektion"""
|
||
|
|
|
||
|
|
# Bestäm navigation
|
||
|
|
if prev_lesson:
|
||
|
|
prev_link = f'/academy/{prev_lesson["module_id"]}/{prev_lesson["id"]}'
|
||
|
|
prev_text = 'Föregående'
|
||
|
|
else:
|
||
|
|
prev_link = '/academy'
|
||
|
|
prev_text = 'Tillbaka till Academy'
|
||
|
|
|
||
|
|
if next_lesson:
|
||
|
|
next_link = f'/academy/{next_lesson["module_id"]}/{next_lesson["id"]}'
|
||
|
|
next_text = f'Nästa: {next_lesson["title"]}'
|
||
|
|
else:
|
||
|
|
next_link = '/academy'
|
||
|
|
next_text = 'Tillbaka till Academy'
|
||
|
|
|
||
|
|
# Generera innehåll
|
||
|
|
content_html = generate_content_html(lesson)
|
||
|
|
|
||
|
|
# Fyll i mallen
|
||
|
|
html = HTML_TEMPLATE.format(
|
||
|
|
title=lesson['title'],
|
||
|
|
module_title=f'{module["title"]} — {module["description"]}',
|
||
|
|
duration=lesson['duration'],
|
||
|
|
level=module['level'],
|
||
|
|
type=lesson['type'],
|
||
|
|
content=content_html,
|
||
|
|
lesson_id=lesson['id'],
|
||
|
|
prev_link=prev_link,
|
||
|
|
prev_text=prev_text,
|
||
|
|
next_link=next_link,
|
||
|
|
next_text=next_text,
|
||
|
|
correct_feedback="Bra jobbat!",
|
||
|
|
wrong_feedback="Tänk igenom svaret en gång till."
|
||
|
|
)
|
||
|
|
|
||
|
|
return html
|
||
|
|
|
||
|
|
def main():
|
||
|
|
"""Generera alla lektioner"""
|
||
|
|
|
||
|
|
print("🚀 Genererar quiXzoom Academy-lektioner...")
|
||
|
|
print("=" * 60)
|
||
|
|
|
||
|
|
# Skapa output-mapp
|
||
|
|
output_dir = Path('academy-output')
|
||
|
|
output_dir.mkdir(exist_ok=True)
|
||
|
|
|
||
|
|
total_lessons = 0
|
||
|
|
|
||
|
|
# Gå igenom alla moduler och lektioner
|
||
|
|
for module_idx, module in enumerate(data['modules']):
|
||
|
|
module_dir = output_dir / module['id']
|
||
|
|
module_dir.mkdir(exist_ok=True)
|
||
|
|
|
||
|
|
print(f"\n📚 {module['title']}")
|
||
|
|
|
||
|
|
for lesson_idx, lesson in enumerate(module['lessons']):
|
||
|
|
lesson_dir = module_dir / lesson['id']
|
||
|
|
lesson_dir.mkdir(exist_ok=True)
|
||
|
|
|
||
|
|
# Bestäm föregående och nästa lektion
|
||
|
|
prev_lesson = None
|
||
|
|
next_lesson = None
|
||
|
|
|
||
|
|
if lesson_idx > 0:
|
||
|
|
prev_lesson = {
|
||
|
|
'module_id': module['id'],
|
||
|
|
'id': module['lessons'][lesson_idx - 1]['id'],
|
||
|
|
'title': module['lessons'][lesson_idx - 1]['title']
|
||
|
|
}
|
||
|
|
elif module_idx > 0:
|
||
|
|
prev_module = data['modules'][module_idx - 1]
|
||
|
|
prev_lesson = {
|
||
|
|
'module_id': prev_module['id'],
|
||
|
|
'id': prev_module['lessons'][-1]['id'],
|
||
|
|
'title': prev_module['lessons'][-1]['title']
|
||
|
|
}
|
||
|
|
|
||
|
|
if lesson_idx < len(module['lessons']) - 1:
|
||
|
|
next_lesson = {
|
||
|
|
'module_id': module['id'],
|
||
|
|
'id': module['lessons'][lesson_idx + 1]['id'],
|
||
|
|
'title': module['lessons'][lesson_idx + 1]['title']
|
||
|
|
}
|
||
|
|
elif module_idx < len(data['modules']) - 1:
|
||
|
|
next_module = data['modules'][module_idx + 1]
|
||
|
|
next_lesson = {
|
||
|
|
'module_id': next_module['id'],
|
||
|
|
'id': next_module['lessons'][0]['id'],
|
||
|
|
'title': next_module['lessons'][0]['title']
|
||
|
|
}
|
||
|
|
|
||
|
|
# Generera lektion
|
||
|
|
html = generate_lesson(module, lesson, prev_lesson, next_lesson)
|
||
|
|
|
||
|
|
# Spara
|
||
|
|
with open(lesson_dir / 'index.html', 'w', encoding='utf-8') as f:
|
||
|
|
f.write(html)
|
||
|
|
|
||
|
|
total_lessons += 1
|
||
|
|
print(f" ✅ {lesson['id']}: {lesson['title']}")
|
||
|
|
|
||
|
|
print(f"\n{'=' * 60}")
|
||
|
|
print(f"✅ {total_lessons} lektioner genererade!")
|
||
|
|
print(f"📁 Sparade i academy-output/")
|
||
|
|
|
||
|
|
return total_lessons
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|