Major Features: • Smart vocabulary dependency analysis - only learn words needed for next content • Discovered vs Mastered word tracking with self-assessment (Again/Hard/Good/Easy) • Vocabulary Knowledge interface connected to DRS PrerequisiteEngine (not flashcard games) • Smart Guide UI adaptation for vocabulary override with clear explanations • Real PrerequisiteEngine with full method support replacing basic fallbacks Technical Implementation: • VocabularyModule: Added discovered words tracking + self-assessment scoring • UnifiedDRS: Vocabulary override detection with Smart Guide signaling • Vocabulary Knowledge: Reads from DRS only, shows discovered vs mastered stats • Smart Guide: Adaptive UI showing "Vocabulary Practice (N words needed)" when overridden • PrerequisiteEngine: Full initialization with analyzeChapter() method Architecture Documentation: • Added comprehensive "Intelligent Content Dependency System" to CLAUDE.md • Content-driven vocabulary acquisition instead of arbitrary percentage-based forcing • Complete implementation plan for smart content analysis and targeted learning 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
80 lines
2.2 KiB
HTML
80 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>🧪 Tests DRS - Class Generator</title>
|
|
<link rel="stylesheet" href="src/styles/base.css">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 20px;
|
|
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.page-header {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
color: #333;
|
|
}
|
|
|
|
.page-header h1 {
|
|
font-size: 2.5em;
|
|
margin-bottom: 10px;
|
|
background: linear-gradient(135deg, #667eea, #764ba2);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.back-link {
|
|
position: fixed;
|
|
top: 20px;
|
|
left: 20px;
|
|
background: white;
|
|
color: #667eea;
|
|
text-decoration: none;
|
|
padding: 10px 20px;
|
|
border-radius: 25px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
transition: all 0.3s ease;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.back-link:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
#test-container {
|
|
/* Le container sera stylé par DRSTestRunner */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<a href="/" class="back-link">← Retour à l'application</a>
|
|
|
|
<div class="page-header">
|
|
<h1>🧪 Interface de Tests DRS</h1>
|
|
<p>Validation complète du système DRS (Dynamic Response System)</p>
|
|
</div>
|
|
|
|
<div id="test-container">
|
|
<!-- Le DRSTestRunner va s'initialiser ici -->
|
|
</div>
|
|
|
|
<script type="module">
|
|
import DRSTestRunner from './src/DRS/DRSTestRunner.js';
|
|
|
|
// Initialiser l'interface de tests DRS
|
|
const testRunner = new DRSTestRunner();
|
|
const container = document.getElementById('test-container');
|
|
|
|
testRunner.init(container);
|
|
|
|
console.log('🧪 Interface de tests DRS initialisée');
|
|
console.log('Accès via: http://localhost:8081/test-drs-interface.html');
|
|
</script>
|
|
</body>
|
|
</html> |