## 独立词库 理解词原先只能跟着课程单元走,学完 A0 十课词汇量只增加约 22 个实词, 不足以解决"记不住单词"。新增一份独立词库 assets/words/wordbank.json (2748 词,A1–B1),挂进 receptiveWordRegistry 的合成单元 bank-A1/A2/B1, 完全复用理解词已有的状态机,不依赖课程进度,第一天就能用。 数据来源、许可与合成规则记在 tool/words/DATA-NOTE.md:CEFR-J 定等级、 公开词书提供音标、AI 重写全部释义并生成例句、OpenSubtitles 提供口语词频。 词书部分为 CC BY-NC-SA 4.0 且上游权利不明,仅供个人非商用; 若要分发或上架,须替换音标那一列。 ## 背单词机制 - 间隔阶梯 1/3/7/15/30/60/120 天,连续答对上一级,答错回第一级。 原先首次答对后要等 7 天才复习,正是"第二天就忘"的成因。 - 每日新词上限(10 分钟 8 个 / 20 分钟 15 个 / 30 分钟 20 个)。 阶梯第一级是次日,今天引入的新词就是明天的工作量。 - 新词按口语频率发放,不再按字母序 —— A1 从 a.m./ability 变成 no/not/know/just。 - 三个方向按层级轮转:看词(英→中)→ 听词(音→中)→ 想词(中→英)。 想词题仍是选择题,不要求产出,理解词定位不变,不进升级分母。 - 单词页独立成 tab,首页今日任务卡下方给一张认词入口卡。 ## 用法对照 课程 JSON 增加 usage 字段(when/reply/swap/confuse):一个句型用在什么场合、 对方通常怎么答、还能怎么说、跟哪个学过的句型容易混。 知道 How are you? 的意思,不等于知道它不是用来问名字的。 ## 复习流 - 当日快闪(recap)独立成队列,不占复习预算,也不计入积压。 - 只发放当日预算内的量,其余保持到期状态等下次,不悄悄丢弃或改期。 - 答错的项隔几题后回来,而不是立刻重问。 测试 296 通过,flutter analyze 干净。 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
283 lines
8.8 KiB
Dart
283 lines
8.8 KiB
Dart
import "package:flutter/material.dart";
|
|
|
|
import "../../core/app_state.dart";
|
|
import "../../core/app_theme.dart";
|
|
import "../../core/models.dart";
|
|
import "../../core/courses/courses.dart";
|
|
import "../dialogue/dialogue_flow.dart";
|
|
import "../assessment/assessment_page.dart";
|
|
import "../home/home_page.dart";
|
|
import "../lesson/lesson_flow.dart";
|
|
import "../profile/profile_page.dart";
|
|
import "../review/review_page.dart";
|
|
import "../words/words_page.dart";
|
|
|
|
class LearningShell extends StatefulWidget {
|
|
const LearningShell({super.key, required this.state});
|
|
final AppState state;
|
|
|
|
@override
|
|
State<LearningShell> createState() => _LearningShellState();
|
|
}
|
|
|
|
class _LearningShellState extends State<LearningShell> {
|
|
AppTab tab = AppTab.learn;
|
|
var route = _ShellRoute.tab;
|
|
_ShellRoute? previousRoute;
|
|
bool dialogueInLesson = false;
|
|
String sceneId = 'a0-meet';
|
|
AssessmentPack? assessmentPack;
|
|
DialogueSummaryData? dialogueSummary;
|
|
|
|
void showTab(AppTab value) => setState(() {
|
|
tab = value;
|
|
route = _ShellRoute.tab;
|
|
previousRoute = null;
|
|
});
|
|
|
|
void showLesson() => setState(() {
|
|
previousRoute = route;
|
|
route = _ShellRoute.lesson;
|
|
});
|
|
|
|
void showDialogue({bool inLesson = false, String? scene}) => setState(() {
|
|
previousRoute = route;
|
|
dialogueInLesson = inLesson;
|
|
if (scene != null) sceneId = scene;
|
|
route = _ShellRoute.dialogue;
|
|
});
|
|
|
|
void showSummary(DialogueSummaryData summary) => setState(() {
|
|
previousRoute = route;
|
|
dialogueSummary = summary;
|
|
route = _ShellRoute.summary;
|
|
});
|
|
|
|
void showAssessment(AssessmentPack pack) => setState(() {
|
|
previousRoute = route;
|
|
assessmentPack = pack;
|
|
route = _ShellRoute.assessmentPreparation;
|
|
});
|
|
|
|
void startAssessment() => setState(() {
|
|
previousRoute = route;
|
|
route = _ShellRoute.assessment;
|
|
});
|
|
|
|
void showAdaptiveLesson() => setState(() {
|
|
previousRoute = route;
|
|
route = _ShellRoute.adaptiveLesson;
|
|
});
|
|
|
|
void handleBack() {
|
|
switch (route) {
|
|
case _ShellRoute.lesson:
|
|
if (widget.state.lessonStep == LessonStep.complete) {
|
|
widget.state.finishCurrentLessonSegment();
|
|
}
|
|
showTab(tab);
|
|
case _ShellRoute.dialogue:
|
|
if (dialogueInLesson) {
|
|
showLesson();
|
|
} else {
|
|
showTab(tab);
|
|
}
|
|
case _ShellRoute.summary:
|
|
showTab(tab);
|
|
case _ShellRoute.adaptiveLesson:
|
|
showTab(AppTab.review);
|
|
case _ShellRoute.assessmentPreparation:
|
|
showTab(AppTab.profile);
|
|
case _ShellRoute.assessment:
|
|
if (assessmentPack != null) {
|
|
showAssessment(assessmentPack!);
|
|
} else {
|
|
showTab(AppTab.profile);
|
|
}
|
|
case _ShellRoute.tab:
|
|
if (tab != AppTab.learn) {
|
|
showTab(AppTab.learn);
|
|
}
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return PopScope(
|
|
canPop: route == _ShellRoute.tab && tab == AppTab.learn,
|
|
onPopInvokedWithResult: (didPop, _) {
|
|
if (!didPop) {
|
|
handleBack();
|
|
}
|
|
},
|
|
child: AnimatedBuilder(
|
|
animation: widget.state,
|
|
builder: (context, _) {
|
|
final Widget body;
|
|
switch (route) {
|
|
case _ShellRoute.lesson:
|
|
body = LessonFlow(
|
|
// 换课或换段时重建,避免上一段的听力选择和播放状态沿用过来。
|
|
key: ValueKey(
|
|
'${widget.state.activeLessonId}-'
|
|
'${widget.state.activeSegmentIndexFor(widget.state.activeLessonId)}',
|
|
),
|
|
state: widget.state,
|
|
onOpenDialogue: () => showDialogue(inLesson: true),
|
|
onFinish: () => showTab(tab),
|
|
);
|
|
case _ShellRoute.dialogue:
|
|
body = DialoguePage(
|
|
key: ValueKey(dialogueInLesson ? 'lesson' : 'scene-$sceneId'),
|
|
state: widget.state,
|
|
isLessonDialogue: dialogueInLesson,
|
|
sceneId: sceneId,
|
|
onFinished: (summary) {
|
|
if (dialogueInLesson) {
|
|
showLesson();
|
|
} else if (summary != null) {
|
|
showSummary(summary);
|
|
} else {
|
|
handleBack();
|
|
}
|
|
},
|
|
);
|
|
case _ShellRoute.summary:
|
|
body = DialogueSummaryPage(
|
|
summary: dialogueSummary!,
|
|
onHome: () => showTab(AppTab.learn),
|
|
onLesson: showLesson,
|
|
onRetry: () => showDialogue(scene: sceneId),
|
|
onBack: () => showTab(tab),
|
|
);
|
|
case _ShellRoute.adaptiveLesson:
|
|
body = AdaptiveLessonPage(
|
|
state: widget.state,
|
|
onFinished: () => showTab(AppTab.review),
|
|
);
|
|
case _ShellRoute.assessment:
|
|
body = AssessmentPage(
|
|
state: widget.state,
|
|
pack: assessmentPack!,
|
|
onFinished: () => showTab(AppTab.profile),
|
|
onStartReplacement: showAssessment,
|
|
);
|
|
case _ShellRoute.assessmentPreparation:
|
|
body = AssessmentPreparationPage(
|
|
state: widget.state,
|
|
pack: assessmentPack!,
|
|
onStart: startAssessment,
|
|
onBack: () => showTab(AppTab.profile),
|
|
);
|
|
case _ShellRoute.tab:
|
|
body = _tabContent();
|
|
}
|
|
|
|
return Scaffold(
|
|
body: body,
|
|
bottomNavigationBar: route == _ShellRoute.tab
|
|
? NavigationBar(
|
|
selectedIndex: tab.index,
|
|
height: 70,
|
|
indicatorColor: AppColors.softGreen,
|
|
onDestinationSelected: (index) =>
|
|
showTab(AppTab.values[index]),
|
|
destinations: const [
|
|
NavigationDestination(
|
|
icon: Icon(Icons.menu_book_outlined),
|
|
selectedIcon: Icon(Icons.menu_book),
|
|
label: "学习",
|
|
),
|
|
NavigationDestination(
|
|
icon: Icon(Icons.chat_bubble_outline),
|
|
selectedIcon: Icon(Icons.chat_bubble),
|
|
label: "对话",
|
|
),
|
|
NavigationDestination(
|
|
icon: Icon(Icons.refresh_outlined),
|
|
selectedIcon: Icon(Icons.refresh),
|
|
label: "复习",
|
|
),
|
|
NavigationDestination(
|
|
icon: Icon(Icons.abc_outlined),
|
|
selectedIcon: Icon(Icons.abc),
|
|
label: "单词",
|
|
),
|
|
NavigationDestination(
|
|
icon: Icon(Icons.person_outline),
|
|
selectedIcon: Icon(Icons.person),
|
|
label: "我的",
|
|
),
|
|
],
|
|
)
|
|
: null,
|
|
);
|
|
},
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _tabContent() {
|
|
switch (tab) {
|
|
case AppTab.learn:
|
|
return HomePage(
|
|
state: widget.state,
|
|
onStartLesson: () {
|
|
if (widget.state.completedLessonIds
|
|
.contains(widget.state.activeLessonId)) {
|
|
final next = widget.state.nextIncompleteLessonId;
|
|
if (next != null) widget.state.openLesson(next);
|
|
}
|
|
showLesson();
|
|
},
|
|
onOpenLesson: (id) {
|
|
widget.state.openLesson(id);
|
|
showLesson();
|
|
},
|
|
onStartReview: () => showTab(AppTab.review),
|
|
onResumeLessonDialogue: () => showDialogue(inLesson: true),
|
|
onStartReinforcement: () {
|
|
widget.state.scheduleA0Reinforcement();
|
|
showTab(AppTab.review);
|
|
},
|
|
onOpenAssessment: (packId) {
|
|
final pack = a0AssessmentPacks
|
|
.where((item) => item.id == packId)
|
|
.firstOrNull;
|
|
if (pack != null) showAssessment(pack);
|
|
},
|
|
onOpenWords: () => showTab(AppTab.words),
|
|
);
|
|
case AppTab.dialogue:
|
|
return DialogueScenePage(
|
|
state: widget.state,
|
|
onStart: (id) => showDialogue(scene: id),
|
|
);
|
|
case AppTab.review:
|
|
return ReviewPage(
|
|
state: widget.state,
|
|
onFinished: () => showTab(AppTab.learn),
|
|
onOpenAdaptiveLesson: showAdaptiveLesson,
|
|
);
|
|
case AppTab.words:
|
|
return WordsPage(state: widget.state);
|
|
case AppTab.profile:
|
|
return ProfilePage(
|
|
state: widget.state,
|
|
onOpenAssessment: showAssessment,
|
|
onOpenReview: () => showTab(AppTab.review),
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
enum _ShellRoute {
|
|
tab,
|
|
lesson,
|
|
dialogue,
|
|
summary,
|
|
adaptiveLesson,
|
|
assessmentPreparation,
|
|
assessment,
|
|
}
|