Compare commits
5 Commits
de3501c3e4
...
v3.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5f1b9ba12e | ||
|
|
16da0f04ac | ||
|
|
e9f115a32a | ||
|
|
d5ff5eb12f | ||
| 732408997d |
Binary file not shown.
BIN
assets/sfx/correct.wav
Normal file
BIN
assets/sfx/correct.wav
Normal file
Binary file not shown.
BIN
assets/sfx/incorrect.wav
Normal file
BIN
assets/sfx/incorrect.wav
Normal file
Binary file not shown.
@@ -5,12 +5,12 @@ import 'package:provider/provider.dart';
|
||||
import 'package:flutter_dotenv/flutter_dotenv.dart';
|
||||
import 'src/services/deck_repository.dart';
|
||||
import 'src/screens/start_screen.dart';
|
||||
import 'src/services/tts_service.dart';
|
||||
|
||||
void main() async {
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
try {
|
||||
await dotenv.load(fileName: ".env");
|
||||
// No need to catch because the file is only needed for dev
|
||||
} catch (_) {}
|
||||
|
||||
runApp(
|
||||
@@ -19,6 +19,14 @@ void main() async {
|
||||
Provider<DeckRepository>(create: (_) => DeckRepository()),
|
||||
Provider<VocabDeckRepository>(create: (_) => VocabDeckRepository()),
|
||||
ChangeNotifierProvider<ThemeModel>(create: (_) => ThemeModel()),
|
||||
Provider<TtsService>(
|
||||
create: (_) {
|
||||
final ttsService = TtsService();
|
||||
ttsService.initTts();
|
||||
return ttsService;
|
||||
},
|
||||
dispose: (_, ttsService) => ttsService.dispose(),
|
||||
),
|
||||
],
|
||||
child: const WkApp(),
|
||||
),
|
||||
|
||||
@@ -88,6 +88,7 @@ class WkClient {
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
static Subject createSubjectFromMap(Map<String, dynamic> map) {
|
||||
final String object = map['object'];
|
||||
if (object == 'kanji') {
|
||||
|
||||
@@ -6,6 +6,7 @@ class SrsItem {
|
||||
final String? readingType;
|
||||
int srsStage;
|
||||
DateTime lastAsked;
|
||||
bool disabled;
|
||||
|
||||
SrsItem({
|
||||
required this.subjectId,
|
||||
@@ -13,5 +14,6 @@ class SrsItem {
|
||||
this.readingType,
|
||||
this.srsStage = 0,
|
||||
DateTime? lastAsked,
|
||||
this.disabled = false,
|
||||
}) : lastAsked = lastAsked ?? DateTime.now();
|
||||
}
|
||||
|
||||
@@ -35,4 +35,4 @@ abstract class Subject {
|
||||
'data': data,
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,11 +18,14 @@ class _AddCardScreenState extends State<AddCardScreen> {
|
||||
final _kanaKit = const KanaKit();
|
||||
final _deckRepository = CustomDeckRepository();
|
||||
bool _useInterval = false;
|
||||
late FocusNode _japaneseFocusNode;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_japaneseController.addListener(_convertToKana);
|
||||
_japaneseFocusNode = FocusNode();
|
||||
_japaneseFocusNode.addListener(_onJapaneseFocusChange);
|
||||
}
|
||||
|
||||
@override
|
||||
@@ -31,13 +34,24 @@ class _AddCardScreenState extends State<AddCardScreen> {
|
||||
_japaneseController.dispose();
|
||||
_englishController.dispose();
|
||||
_kanjiController.dispose();
|
||||
_japaneseFocusNode.removeListener(_onJapaneseFocusChange);
|
||||
_japaneseFocusNode.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
void _convertToKana() {
|
||||
final text = _japaneseController.text;
|
||||
final selection = _japaneseController.selection;
|
||||
final offset = selection.baseOffset;
|
||||
|
||||
if ((offset > 1 && text[offset - 1] == 'n' && text[offset - 2] != 'n') ||
|
||||
(offset == 1 && text[offset - 1] == 'n')) {
|
||||
return;
|
||||
}
|
||||
|
||||
final converted = _kanaKit.toKana(text);
|
||||
if (text != converted) {
|
||||
|
||||
if (converted != text) {
|
||||
_japaneseController.value = _japaneseController.value.copyWith(
|
||||
text: converted,
|
||||
selection: TextSelection.fromPosition(
|
||||
@@ -47,6 +61,21 @@ class _AddCardScreenState extends State<AddCardScreen> {
|
||||
}
|
||||
}
|
||||
|
||||
void _onJapaneseFocusChange() {
|
||||
if (!_japaneseFocusNode.hasFocus) {
|
||||
_forceNConversion();
|
||||
}
|
||||
}
|
||||
|
||||
void _forceNConversion() {
|
||||
final text = _japaneseController.text;
|
||||
if (text.isNotEmpty &&
|
||||
text.endsWith('n') &&
|
||||
_kanaKit.toKana(text) != text) {
|
||||
_japaneseController.text = _kanaKit.toKana(text);
|
||||
}
|
||||
}
|
||||
|
||||
void _saveCard() {
|
||||
if (_formKey.currentState!.validate()) {
|
||||
final srsData = _useInterval
|
||||
@@ -83,6 +112,7 @@ class _AddCardScreenState extends State<AddCardScreen> {
|
||||
children: [
|
||||
TextFormField(
|
||||
controller: _japaneseController,
|
||||
focusNode: _japaneseFocusNode,
|
||||
decoration: const InputDecoration(
|
||||
labelText: 'Japanese (Kana)',
|
||||
hintText: 'Enter Japanese vocabulary or kanji',
|
||||
|
||||
@@ -123,9 +123,14 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
CircularProgressIndicator(color: Theme.of(context).colorScheme.primary),
|
||||
CircularProgressIndicator(
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
Text(_status, style: TextStyle(color: Theme.of(context).colorScheme.onSurface)),
|
||||
Text(
|
||||
_status,
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
@@ -151,6 +156,7 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
List<int> sortedLevels,
|
||||
PageController pageController,
|
||||
Widget Function(List<dynamic>) buildPageContent,
|
||||
dynamic repository,
|
||||
) {
|
||||
if (sortedLevels.isEmpty) {
|
||||
return Center(
|
||||
@@ -167,18 +173,34 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
itemBuilder: (context, index) {
|
||||
final level = sortedLevels[index];
|
||||
final levelItems = groupedItems[level]!;
|
||||
final bool isDisabled = levelItems.every(
|
||||
(item) => (item as dynamic).srsItems.values.every(
|
||||
(srs) => (srs as SrsItem).disabled,
|
||||
),
|
||||
);
|
||||
|
||||
return Column(
|
||||
children: [
|
||||
Padding(
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
child: Text(
|
||||
'Level $level',
|
||||
style: TextStyle(
|
||||
fontSize: 24,
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Text(
|
||||
'Level $level',
|
||||
style: TextStyle(
|
||||
fontSize: 24,
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
Checkbox(
|
||||
value: !isDisabled,
|
||||
onChanged: (value) {
|
||||
_toggleLevelExclusion(level, repository);
|
||||
},
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
Expanded(child: buildPageContent(levelItems)),
|
||||
@@ -199,37 +221,60 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
return Container(
|
||||
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
||||
color: Theme.of(context).colorScheme.surfaceContainer,
|
||||
height: 60,
|
||||
child: SingleChildScrollView(
|
||||
scrollDirection: Axis.horizontal,
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: List.generate(levels.length, (index) {
|
||||
final level = levels[index];
|
||||
final isSelected = index == currentPage;
|
||||
return Padding(
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
children: List.generate(levels.length, (index) {
|
||||
final level = levels[index];
|
||||
final isSelected = index == currentPage;
|
||||
final items = isKanji ? _kanjiByLevel[level] : _vocabByLevel[level];
|
||||
final bool isDisabled =
|
||||
items?.every(
|
||||
(item) => (item as dynamic).srsItems.values.every(
|
||||
(srs) => (srs as SrsItem).disabled,
|
||||
),
|
||||
) ??
|
||||
false;
|
||||
|
||||
return Expanded(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 4.0),
|
||||
|
||||
child: ElevatedButton(
|
||||
onPressed: () {
|
||||
controller.animateToPage(
|
||||
index,
|
||||
|
||||
duration: const Duration(milliseconds: 300),
|
||||
|
||||
curve: Curves.easeInOut,
|
||||
);
|
||||
},
|
||||
|
||||
style: ElevatedButton.styleFrom(
|
||||
backgroundColor: isSelected
|
||||
? Theme.of(context).colorScheme.primary
|
||||
: isDisabled
|
||||
? Theme.of(context).colorScheme.surfaceContainerHighest
|
||||
: Theme.of(context).colorScheme.surfaceContainerHighest,
|
||||
foregroundColor: Theme.of(context).colorScheme.onPrimary,
|
||||
shape: const CircleBorder(),
|
||||
|
||||
foregroundColor: isSelected
|
||||
? Theme.of(context).colorScheme.onPrimary
|
||||
: isDisabled
|
||||
? Theme.of(context).colorScheme.onSurfaceVariant
|
||||
: Theme.of(context).colorScheme.onSurface,
|
||||
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
),
|
||||
|
||||
padding: const EdgeInsets.all(12),
|
||||
),
|
||||
|
||||
child: Text(level.toString()),
|
||||
),
|
||||
);
|
||||
}),
|
||||
),
|
||||
),
|
||||
);
|
||||
}),
|
||||
),
|
||||
);
|
||||
}
|
||||
@@ -296,7 +341,10 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
Expanded(
|
||||
child: Text(
|
||||
item.characters,
|
||||
style: TextStyle(fontSize: 24, color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(
|
||||
fontSize: 24,
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 16),
|
||||
@@ -307,7 +355,9 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
children: [
|
||||
Text(
|
||||
item.meanings.join(', '),
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurfaceVariant),
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||
),
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
@@ -356,7 +406,10 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
children: [
|
||||
Text(
|
||||
item.characters,
|
||||
style: TextStyle(fontSize: 32, color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(
|
||||
fontSize: 32,
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
@@ -376,7 +429,9 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
height: 10,
|
||||
child: LinearProgressIndicator(
|
||||
value: level / 9.0,
|
||||
backgroundColor: Theme.of(context).colorScheme.surfaceContainerHighest,
|
||||
backgroundColor: Theme.of(
|
||||
context,
|
||||
).colorScheme.surfaceContainerHighest,
|
||||
valueColor: AlwaysStoppedAnimation<Color>(
|
||||
_getColorForSrsLevel(level),
|
||||
),
|
||||
@@ -445,29 +500,39 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
children: [
|
||||
Text(
|
||||
'Level: ${kanji.level}',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
if (kanji.meanings.isNotEmpty)
|
||||
Text(
|
||||
'Meanings: ${kanji.meanings.join(', ')}',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
if (kanji.onyomi.isNotEmpty)
|
||||
Text(
|
||||
'On\'yomi: ${kanji.onyomi.join(', ')}',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
if (kanji.kunyomi.isNotEmpty)
|
||||
Text(
|
||||
'Kun\'yomi: ${kanji.kunyomi.join(', ')}',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
if (kanji.onyomi.isEmpty && kanji.kunyomi.isEmpty)
|
||||
Text(
|
||||
'No readings available.',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
Divider(color: Theme.of(context).colorScheme.onSurfaceVariant),
|
||||
@@ -482,7 +547,9 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
...srsScores.entries.map(
|
||||
(entry) => Text(
|
||||
' ${entry.key}: ${entry.value}',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
@@ -569,6 +636,42 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
_vocabSortedLevels = _vocabByLevel.keys.toList()..sort();
|
||||
}
|
||||
|
||||
Future<void> _toggleLevelExclusion(int level, dynamic repository) async {
|
||||
final List<SrsItem> itemsToUpdate = [];
|
||||
final bool currentlyDisabled;
|
||||
|
||||
if (repository is DeckRepository) {
|
||||
final items = _kanjiByLevel[level] ?? [];
|
||||
currentlyDisabled = items.every(
|
||||
(item) => item.srsItems.values.every((srs) => srs.disabled),
|
||||
);
|
||||
for (final item in items) {
|
||||
for (final srsItem in item.srsItems.values) {
|
||||
itemsToUpdate.add(srsItem);
|
||||
}
|
||||
}
|
||||
} else if (repository is VocabDeckRepository) {
|
||||
final items = _vocabByLevel[level] ?? [];
|
||||
currentlyDisabled = items.every(
|
||||
(item) => item.srsItems.values.every((srs) => srs.disabled),
|
||||
);
|
||||
for (final item in items) {
|
||||
for (final srsItem in item.srsItems.values) {
|
||||
itemsToUpdate.add(srsItem);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
||||
for (final item in itemsToUpdate) {
|
||||
item.disabled = !currentlyDisabled;
|
||||
}
|
||||
|
||||
await repository.updateSrsItems(itemsToUpdate);
|
||||
_loadDecks();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
@@ -587,6 +690,7 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
_kanjiSortedLevels,
|
||||
_kanjiPageController,
|
||||
(items) => _buildGridView(items.cast<KanjiItem>()),
|
||||
Provider.of<DeckRepository>(context, listen: false),
|
||||
),
|
||||
),
|
||||
_buildWaniKaniTab(
|
||||
@@ -595,6 +699,7 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
_vocabSortedLevels,
|
||||
_vocabPageController,
|
||||
(items) => _buildListView(items.cast<VocabularyItem>()),
|
||||
Provider.of<VocabDeckRepository>(context, listen: false),
|
||||
),
|
||||
),
|
||||
_buildCustomSrsTab(),
|
||||
@@ -674,8 +779,7 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
setState(() {
|
||||
if (_selectedItems.length == _customDeck.length) {
|
||||
_selectedItems.clear();
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
_selectedItems = List.from(_customDeck);
|
||||
}
|
||||
});
|
||||
@@ -800,12 +904,17 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
child: Card(
|
||||
shape: RoundedRectangleBorder(
|
||||
side: isSelected
|
||||
? BorderSide(color: Theme.of(context).colorScheme.primary, width: 2.0)
|
||||
? BorderSide(
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
width: 2.0,
|
||||
)
|
||||
: BorderSide.none,
|
||||
borderRadius: BorderRadius.circular(12.0),
|
||||
),
|
||||
color: isSelected
|
||||
? Theme.of(context).colorScheme.primary.withAlpha((255 * 0.5).round())
|
||||
? Theme.of(
|
||||
context,
|
||||
).colorScheme.primary.withAlpha((255 * 0.5).round())
|
||||
: Theme.of(context).colorScheme.surfaceContainer,
|
||||
child: Stack(
|
||||
children: [
|
||||
@@ -855,7 +964,11 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
Positioned(
|
||||
top: 4,
|
||||
right: 4,
|
||||
child: Icon(Icons.timer, color: Theme.of(context).colorScheme.tertiary, size: 16),
|
||||
child: Icon(
|
||||
Icons.timer,
|
||||
color: Theme.of(context).colorScheme.tertiary,
|
||||
size: 16,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
@@ -869,8 +982,9 @@ class _BrowseScreenState extends State<BrowseScreen>
|
||||
|
||||
class _VocabDetailsDialog extends StatefulWidget {
|
||||
final VocabularyItem vocab;
|
||||
final ThemeData theme;
|
||||
|
||||
const _VocabDetailsDialog({required this.vocab});
|
||||
const _VocabDetailsDialog({required this.vocab, required this.theme});
|
||||
|
||||
@override
|
||||
State<_VocabDetailsDialog> createState() => _VocabDetailsDialogState();
|
||||
@@ -886,7 +1000,6 @@ class _VocabDetailsDialogState extends State<_VocabDetailsDialog> {
|
||||
}
|
||||
|
||||
Future<void> _fetchExampleSentences() async {
|
||||
final theme = Theme.of(context);
|
||||
try {
|
||||
final uri = Uri.parse(
|
||||
'https://jisho.org/api/v1/search/words?keyword=${Uri.encodeComponent(widget.vocab.characters)}',
|
||||
@@ -913,11 +1026,15 @@ class _VocabDetailsDialogState extends State<_VocabDetailsDialog> {
|
||||
children: [
|
||||
Text(
|
||||
japaneseWord,
|
||||
style: TextStyle(color: theme.colorScheme.onSurface),
|
||||
style: TextStyle(
|
||||
color: widget.theme.colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
Text(
|
||||
englishDefinition,
|
||||
style: TextStyle(color: theme.colorScheme.onSurfaceVariant),
|
||||
style: TextStyle(
|
||||
color: widget.theme.colorScheme.onSurfaceVariant,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
],
|
||||
@@ -931,7 +1048,7 @@ class _VocabDetailsDialogState extends State<_VocabDetailsDialog> {
|
||||
sentences.add(
|
||||
Text(
|
||||
'No example sentences found.',
|
||||
style: TextStyle(color: theme.colorScheme.onSurface),
|
||||
style: TextStyle(color: widget.theme.colorScheme.onSurface),
|
||||
),
|
||||
);
|
||||
}
|
||||
@@ -946,7 +1063,7 @@ class _VocabDetailsDialogState extends State<_VocabDetailsDialog> {
|
||||
_exampleSentences = [
|
||||
Text(
|
||||
'Failed to load example sentences.',
|
||||
style: TextStyle(color: theme.colorScheme.error),
|
||||
style: TextStyle(color: widget.theme.colorScheme.error),
|
||||
),
|
||||
];
|
||||
});
|
||||
@@ -958,7 +1075,7 @@ class _VocabDetailsDialogState extends State<_VocabDetailsDialog> {
|
||||
_exampleSentences = [
|
||||
Text(
|
||||
'Error loading example sentences.',
|
||||
style: TextStyle(color: theme.colorScheme.error),
|
||||
style: TextStyle(color: widget.theme.colorScheme.error),
|
||||
),
|
||||
];
|
||||
});
|
||||
@@ -994,39 +1111,45 @@ class _VocabDetailsDialogState extends State<_VocabDetailsDialog> {
|
||||
children: [
|
||||
Text(
|
||||
'Level: ${widget.vocab.level}',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(color: widget.theme.colorScheme.onSurface),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
if (widget.vocab.meanings.isNotEmpty)
|
||||
Text(
|
||||
'Meanings: ${widget.vocab.meanings.join(', ')}',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(color: widget.theme.colorScheme.onSurface),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
if (widget.vocab.readings.isNotEmpty)
|
||||
Text(
|
||||
'Readings: ${widget.vocab.readings.join(', ')}',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(color: widget.theme.colorScheme.onSurface),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
Divider(color: Theme.of(context).colorScheme.onSurfaceVariant),
|
||||
Divider(color: widget.theme.colorScheme.onSurfaceVariant),
|
||||
const SizedBox(height: 16),
|
||||
Text(
|
||||
'SRS Scores:',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface, fontWeight: FontWeight.bold),
|
||||
style: TextStyle(
|
||||
color: widget.theme.colorScheme.onSurface,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
...srsScores.entries.map(
|
||||
(entry) => Text(
|
||||
' ${entry.key}: ${entry.value}',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(color: widget.theme.colorScheme.onSurface),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
Divider(color: Theme.of(context).colorScheme.onSurfaceVariant),
|
||||
Divider(color: widget.theme.colorScheme.onSurfaceVariant),
|
||||
const SizedBox(height: 16),
|
||||
Text(
|
||||
'Example Sentences:',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface, fontWeight: FontWeight.bold),
|
||||
style: TextStyle(
|
||||
color: widget.theme.colorScheme.onSurface,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
..._exampleSentences,
|
||||
],
|
||||
@@ -1036,22 +1159,23 @@ class _VocabDetailsDialogState extends State<_VocabDetailsDialog> {
|
||||
}
|
||||
|
||||
void _showVocabDetailsDialog(BuildContext context, VocabularyItem vocab) {
|
||||
final currentTheme = Theme.of(context);
|
||||
showDialog(
|
||||
context: context,
|
||||
builder: (dialogContext) {
|
||||
return AlertDialog(
|
||||
backgroundColor: Theme.of(context).colorScheme.surfaceContainer,
|
||||
backgroundColor: currentTheme.colorScheme.surfaceContainer,
|
||||
title: Text(
|
||||
'Details for ${vocab.characters}',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
style: TextStyle(color: currentTheme.colorScheme.onSurface),
|
||||
),
|
||||
content: _VocabDetailsDialog(vocab: vocab),
|
||||
content: _VocabDetailsDialog(vocab: vocab, theme: currentTheme),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(dialogContext).pop(),
|
||||
child: Text(
|
||||
'Close',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.primary),
|
||||
style: TextStyle(color: currentTheme.colorScheme.primary),
|
||||
),
|
||||
),
|
||||
],
|
||||
@@ -1059,4 +1183,3 @@ void _showVocabDetailsDialog(BuildContext context, VocabularyItem vocab) {
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'dart:math';
|
||||
import 'package:flutter_tts/flutter_tts.dart';
|
||||
import '../models/custom_kanji_item.dart';
|
||||
import '../widgets/options_grid.dart';
|
||||
import '../widgets/kanji_card.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import '../services/tts_service.dart';
|
||||
import 'package:shared_preferences/shared_preferences.dart';
|
||||
import 'package:audioplayers/audioplayers.dart';
|
||||
|
||||
enum CustomQuizMode {
|
||||
japaneseToEnglish,
|
||||
@@ -31,27 +34,37 @@ class CustomQuizScreen extends StatefulWidget {
|
||||
State<CustomQuizScreen> createState() => CustomQuizScreenState();
|
||||
}
|
||||
|
||||
class _CustomQuizState {
|
||||
CustomKanjiItem? current;
|
||||
List<String> options = [];
|
||||
List<String> correctAnswers = [];
|
||||
int score = 0;
|
||||
int asked = 0;
|
||||
Key key = UniqueKey();
|
||||
String? selectedOption;
|
||||
bool showResult = false;
|
||||
Set<String> wrongItems = {};
|
||||
}
|
||||
|
||||
class CustomQuizScreenState extends State<CustomQuizScreen>
|
||||
with TickerProviderStateMixin {
|
||||
int _currentIndex = 0;
|
||||
final _quizState = _CustomQuizState();
|
||||
List<CustomKanjiItem> _shuffledDeck = [];
|
||||
List<String> _options = [];
|
||||
bool _answered = false;
|
||||
bool? _correct;
|
||||
late FlutterTts _flutterTts;
|
||||
int _sessionDeckSize = 0;
|
||||
bool _isAnswering = false;
|
||||
late AnimationController _shakeController;
|
||||
late Animation<double> _shakeAnimation;
|
||||
final List<String> _incorrectlyAnsweredItems = [];
|
||||
final _audioPlayer = AudioPlayer();
|
||||
|
||||
bool _playIncorrectSound = true;
|
||||
bool _playCorrectSound = true;
|
||||
bool _playNarrator = true;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_shuffledDeck = widget.deck.toList()..shuffle();
|
||||
_initTts();
|
||||
if (_shuffledDeck.isNotEmpty) {
|
||||
_generateOptions();
|
||||
}
|
||||
|
||||
_sessionDeckSize = _shuffledDeck.length;
|
||||
_shakeController = AnimationController(
|
||||
duration: const Duration(milliseconds: 500),
|
||||
vsync: this,
|
||||
@@ -59,168 +72,83 @@ class CustomQuizScreenState extends State<CustomQuizScreen>
|
||||
_shakeAnimation = Tween<double>(begin: 0, end: 1).animate(
|
||||
CurvedAnimation(parent: _shakeController, curve: Curves.elasticIn),
|
||||
);
|
||||
_loadSettings();
|
||||
_nextQuestion();
|
||||
}
|
||||
|
||||
Future<void> _loadSettings() async {
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
setState(() {
|
||||
_playIncorrectSound = prefs.getBool('playIncorrectSound') ?? true;
|
||||
_playCorrectSound = prefs.getBool('playCorrectSound') ?? true;
|
||||
_playNarrator = prefs.getBool('playNarrator') ?? true;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
void didChangeDependencies() {
|
||||
super.didChangeDependencies();
|
||||
}
|
||||
|
||||
@override
|
||||
void didUpdateWidget(CustomQuizScreen oldWidget) {
|
||||
super.didUpdateWidget(oldWidget);
|
||||
if (widget.deck != oldWidget.deck && !widget.isActive) {
|
||||
setState(() {
|
||||
_shuffledDeck = widget.deck.toList()..shuffle();
|
||||
_currentIndex = 0;
|
||||
_answered = false;
|
||||
_correct = null;
|
||||
if (_shuffledDeck.isNotEmpty) {
|
||||
_generateOptions();
|
||||
}
|
||||
});
|
||||
_shuffledDeck = widget.deck.toList()..shuffle();
|
||||
_sessionDeckSize = _shuffledDeck.length;
|
||||
_nextQuestion();
|
||||
}
|
||||
if (widget.useKanji != oldWidget.useKanji) {
|
||||
setState(() {
|
||||
_generateOptions();
|
||||
});
|
||||
_nextQuestion();
|
||||
}
|
||||
}
|
||||
|
||||
void playAudio() {
|
||||
void playAudio() async {
|
||||
final quizState = _quizState;
|
||||
if (widget.quizMode == CustomQuizMode.listeningComprehension &&
|
||||
_currentIndex < _shuffledDeck.length) {
|
||||
_speak(_shuffledDeck[_currentIndex].characters);
|
||||
quizState.current != null &&
|
||||
_playNarrator) {
|
||||
final ttsService = Provider.of<TtsService>(context, listen: false);
|
||||
await ttsService.speak(quizState.current!.characters);
|
||||
}
|
||||
}
|
||||
|
||||
void _initTts() async {
|
||||
_flutterTts = FlutterTts();
|
||||
await _flutterTts.setLanguage("ja-JP");
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_flutterTts.stop();
|
||||
_shakeController.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
void _generateOptions() {
|
||||
final currentItem = _shuffledDeck[_currentIndex];
|
||||
if (widget.quizMode == CustomQuizMode.listeningComprehension ||
|
||||
widget.quizMode == CustomQuizMode.japaneseToEnglish) {
|
||||
_options = [currentItem.meaning];
|
||||
} else {
|
||||
_options = [
|
||||
widget.useKanji && currentItem.kanji != null
|
||||
? currentItem.kanji!
|
||||
: currentItem.characters,
|
||||
];
|
||||
}
|
||||
final otherItems = widget.deck
|
||||
.where((item) => item.characters != currentItem.characters)
|
||||
.toList();
|
||||
otherItems.shuffle();
|
||||
for (var i = 0; i < min(3, otherItems.length); i++) {
|
||||
if (widget.quizMode == CustomQuizMode.listeningComprehension ||
|
||||
widget.quizMode == CustomQuizMode.japaneseToEnglish) {
|
||||
_options.add(otherItems[i].meaning);
|
||||
} else {
|
||||
_options.add(
|
||||
widget.useKanji && otherItems[i].kanji != null
|
||||
? otherItems[i].kanji!
|
||||
: otherItems[i].characters,
|
||||
);
|
||||
}
|
||||
}
|
||||
_options.shuffle();
|
||||
}
|
||||
void _answer(String option) async {
|
||||
final quizState = _quizState;
|
||||
final current = quizState.current!;
|
||||
final isCorrect = quizState.correctAnswers
|
||||
.map((a) => a.toLowerCase().trim())
|
||||
.contains(option.toLowerCase().trim());
|
||||
|
||||
void _checkAnswer(String answer) async {
|
||||
final currentItem = _shuffledDeck[_currentIndex];
|
||||
final correctAnswer = (widget.quizMode == CustomQuizMode.englishToJapanese)
|
||||
? (widget.useKanji && currentItem.kanji != null
|
||||
? currentItem.kanji!
|
||||
: currentItem.characters)
|
||||
: currentItem.meaning;
|
||||
final isCorrect = answer == correctAnswer;
|
||||
setState(() {
|
||||
quizState.selectedOption = option;
|
||||
quizState.showResult = true;
|
||||
_isAnswering = true;
|
||||
});
|
||||
|
||||
if (currentItem.useInterval) {
|
||||
int currentSrsLevel;
|
||||
switch (widget.quizMode) {
|
||||
case CustomQuizMode.japaneseToEnglish:
|
||||
currentSrsLevel = currentItem.srsData.japaneseToEnglish;
|
||||
break;
|
||||
case CustomQuizMode.englishToJapanese:
|
||||
currentSrsLevel = currentItem.srsData.englishToJapanese;
|
||||
break;
|
||||
case CustomQuizMode.listeningComprehension:
|
||||
currentSrsLevel = currentItem.srsData.listeningComprehension;
|
||||
break;
|
||||
}
|
||||
|
||||
if (isCorrect) {
|
||||
if (_incorrectlyAnsweredItems.contains(currentItem.characters)) {
|
||||
_incorrectlyAnsweredItems.remove(currentItem.characters);
|
||||
} else {
|
||||
currentSrsLevel++;
|
||||
}
|
||||
final interval = pow(2, currentSrsLevel).toInt();
|
||||
final newNextReview = DateTime.now().add(Duration(hours: interval));
|
||||
switch (widget.quizMode) {
|
||||
case CustomQuizMode.japaneseToEnglish:
|
||||
currentItem.srsData.japaneseToEnglishNextReview = newNextReview;
|
||||
break;
|
||||
case CustomQuizMode.englishToJapanese:
|
||||
currentItem.srsData.englishToJapaneseNextReview = newNextReview;
|
||||
break;
|
||||
case CustomQuizMode.listeningComprehension:
|
||||
currentItem.srsData.listeningComprehensionNextReview =
|
||||
newNextReview;
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
if (!_incorrectlyAnsweredItems.contains(currentItem.characters)) {
|
||||
_incorrectlyAnsweredItems.add(currentItem.characters);
|
||||
}
|
||||
currentSrsLevel = max(0, currentSrsLevel - 1);
|
||||
final newNextReview = DateTime.now().add(const Duration(hours: 1));
|
||||
switch (widget.quizMode) {
|
||||
case CustomQuizMode.japaneseToEnglish:
|
||||
currentItem.srsData.japaneseToEnglishNextReview = newNextReview;
|
||||
break;
|
||||
case CustomQuizMode.englishToJapanese:
|
||||
currentItem.srsData.englishToJapaneseNextReview = newNextReview;
|
||||
break;
|
||||
case CustomQuizMode.listeningComprehension:
|
||||
currentItem.srsData.listeningComprehensionNextReview =
|
||||
newNextReview;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
switch (widget.quizMode) {
|
||||
case CustomQuizMode.japaneseToEnglish:
|
||||
currentItem.srsData.japaneseToEnglish = currentSrsLevel;
|
||||
break;
|
||||
case CustomQuizMode.englishToJapanese:
|
||||
currentItem.srsData.englishToJapanese = currentSrsLevel;
|
||||
break;
|
||||
case CustomQuizMode.listeningComprehension:
|
||||
currentItem.srsData.listeningComprehension = currentSrsLevel;
|
||||
break;
|
||||
}
|
||||
|
||||
widget.onCardReviewed(currentItem);
|
||||
if (current.useInterval) {
|
||||
_updateSrsLevel(current, isCorrect);
|
||||
}
|
||||
|
||||
final correctDisplay = (widget.quizMode == CustomQuizMode.englishToJapanese)
|
||||
? (widget.useKanji && currentItem.kanji != null
|
||||
? currentItem.kanji!
|
||||
: currentItem.characters)
|
||||
: currentItem.meaning;
|
||||
? (widget.useKanji && current.kanji != null
|
||||
? current.kanji!
|
||||
: current.characters)
|
||||
: current.meaning;
|
||||
|
||||
final snack = SnackBar(
|
||||
content: Text(
|
||||
isCorrect ? 'Correct!' : 'Wrong — correct: $correctDisplay',
|
||||
style: TextStyle(
|
||||
color: isCorrect ? Theme.of(context).colorScheme.tertiary : Theme.of(context).colorScheme.error,
|
||||
color: isCorrect
|
||||
? Theme.of(context).colorScheme.secondary
|
||||
: Theme.of(context).colorScheme.error,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
@@ -232,76 +160,249 @@ class CustomQuizScreenState extends State<CustomQuizScreen>
|
||||
}
|
||||
|
||||
if (isCorrect) {
|
||||
if (widget.quizMode == CustomQuizMode.japaneseToEnglish) {
|
||||
await _speak(currentItem.characters);
|
||||
quizState.asked += 1;
|
||||
if (!quizState.wrongItems.contains(current.characters)) {
|
||||
quizState.score += 1;
|
||||
}
|
||||
if (_playCorrectSound && !_playNarrator) {
|
||||
await _audioPlayer.play(AssetSource('sfx/correct.wav'));
|
||||
} else if (_playNarrator) {
|
||||
if (widget.quizMode == CustomQuizMode.japaneseToEnglish ||
|
||||
widget.quizMode == CustomQuizMode.englishToJapanese) {
|
||||
await _speak(current.characters);
|
||||
}
|
||||
}
|
||||
await Future.delayed(const Duration(milliseconds: 500));
|
||||
} else {
|
||||
quizState.wrongItems.add(current.characters);
|
||||
_shuffledDeck.add(current);
|
||||
_shuffledDeck.shuffle();
|
||||
if (_playIncorrectSound) {
|
||||
await _audioPlayer.play(AssetSource('sfx/incorrect.wav'));
|
||||
}
|
||||
_shakeController.forward(from: 0);
|
||||
await Future.delayed(const Duration(milliseconds: 900));
|
||||
}
|
||||
|
||||
_nextQuestion();
|
||||
}
|
||||
|
||||
void _nextQuestion() {
|
||||
setState(() {
|
||||
_currentIndex++;
|
||||
_answered = false;
|
||||
_correct = null;
|
||||
if (_currentIndex < _shuffledDeck.length) {
|
||||
_generateOptions();
|
||||
if (widget.quizMode == CustomQuizMode.listeningComprehension) {
|
||||
_speak(_shuffledDeck[_currentIndex].characters);
|
||||
}
|
||||
Future.delayed(const Duration(milliseconds: 900), () {
|
||||
if (mounted) {
|
||||
_nextQuestion();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
void _updateSrsLevel(CustomKanjiItem item, bool isCorrect) {
|
||||
int currentSrsLevel = 0;
|
||||
switch (widget.quizMode) {
|
||||
case CustomQuizMode.japaneseToEnglish:
|
||||
currentSrsLevel = item.srsData.japaneseToEnglish;
|
||||
break;
|
||||
case CustomQuizMode.englishToJapanese:
|
||||
currentSrsLevel = item.srsData.englishToJapanese;
|
||||
break;
|
||||
case CustomQuizMode.listeningComprehension:
|
||||
currentSrsLevel = item.srsData.listeningComprehension;
|
||||
break;
|
||||
}
|
||||
|
||||
if (isCorrect) {
|
||||
currentSrsLevel++;
|
||||
final interval = pow(2, currentSrsLevel).toInt();
|
||||
final newNextReview = DateTime.now().add(Duration(hours: interval));
|
||||
switch (widget.quizMode) {
|
||||
case CustomQuizMode.japaneseToEnglish:
|
||||
item.srsData.japaneseToEnglishNextReview = newNextReview;
|
||||
break;
|
||||
case CustomQuizMode.englishToJapanese:
|
||||
item.srsData.englishToJapaneseNextReview = newNextReview;
|
||||
break;
|
||||
case CustomQuizMode.listeningComprehension:
|
||||
item.srsData.listeningComprehensionNextReview = newNextReview;
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
currentSrsLevel = max(0, currentSrsLevel - 1);
|
||||
final newNextReview = DateTime.now().add(const Duration(hours: 1));
|
||||
switch (widget.quizMode) {
|
||||
case CustomQuizMode.japaneseToEnglish:
|
||||
item.srsData.japaneseToEnglishNextReview = newNextReview;
|
||||
break;
|
||||
case CustomQuizMode.englishToJapanese:
|
||||
item.srsData.englishToJapaneseNextReview = newNextReview;
|
||||
break;
|
||||
case CustomQuizMode.listeningComprehension:
|
||||
item.srsData.listeningComprehensionNextReview = newNextReview;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
switch (widget.quizMode) {
|
||||
case CustomQuizMode.japaneseToEnglish:
|
||||
item.srsData.japaneseToEnglish = currentSrsLevel;
|
||||
break;
|
||||
case CustomQuizMode.englishToJapanese:
|
||||
item.srsData.englishToJapanese = currentSrsLevel;
|
||||
break;
|
||||
case CustomQuizMode.listeningComprehension:
|
||||
item.srsData.listeningComprehension = currentSrsLevel;
|
||||
break;
|
||||
}
|
||||
|
||||
widget.onCardReviewed(item);
|
||||
}
|
||||
|
||||
void _nextQuestion() {
|
||||
final quizState = _quizState;
|
||||
|
||||
if (_shuffledDeck.isEmpty) {
|
||||
setState(() {
|
||||
quizState.current = null;
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
quizState.current = _shuffledDeck.removeAt(0);
|
||||
quizState.key = UniqueKey();
|
||||
|
||||
quizState.correctAnswers = [];
|
||||
quizState.options = [];
|
||||
quizState.selectedOption = null;
|
||||
quizState.showResult = false;
|
||||
|
||||
if (widget.quizMode == CustomQuizMode.japaneseToEnglish ||
|
||||
widget.quizMode == CustomQuizMode.listeningComprehension) {
|
||||
quizState.correctAnswers = [quizState.current!.meaning];
|
||||
quizState.options = [quizState.correctAnswers.first];
|
||||
} else {
|
||||
quizState.correctAnswers = [
|
||||
widget.useKanji && quizState.current!.kanji != null
|
||||
? quizState.current!.kanji!
|
||||
: quizState.current!.characters,
|
||||
];
|
||||
quizState.options = [quizState.correctAnswers.first];
|
||||
}
|
||||
|
||||
final otherItems = widget.deck
|
||||
.where((item) => item.characters != quizState.current!.characters)
|
||||
.toList();
|
||||
otherItems.shuffle();
|
||||
|
||||
for (var i = 0; i < min(3, otherItems.length); i++) {
|
||||
if (widget.quizMode == CustomQuizMode.japaneseToEnglish ||
|
||||
widget.quizMode == CustomQuizMode.listeningComprehension) {
|
||||
quizState.options.add(otherItems[i].meaning);
|
||||
} else {
|
||||
quizState.options.add(
|
||||
widget.useKanji && otherItems[i].kanji != null
|
||||
? otherItems[i].kanji!
|
||||
: otherItems[i].characters,
|
||||
);
|
||||
}
|
||||
}
|
||||
while (quizState.options.length < 4) {
|
||||
quizState.options.add('---');
|
||||
}
|
||||
quizState.options.shuffle();
|
||||
|
||||
setState(() {
|
||||
_isAnswering = false;
|
||||
});
|
||||
|
||||
if (widget.quizMode == CustomQuizMode.listeningComprehension) {
|
||||
_speak(quizState.current!.characters);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _speak(String text) async {
|
||||
await _flutterTts.speak(text);
|
||||
final ttsService = Provider.of<TtsService>(context, listen: false);
|
||||
await ttsService.speak(text);
|
||||
}
|
||||
|
||||
void _onOptionSelected(String option) {
|
||||
if (!(_answered && _correct!)) {
|
||||
_checkAnswer(option);
|
||||
if (!_isAnswering) {
|
||||
_answer(option);
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (_shuffledDeck.isEmpty || _currentIndex >= _shuffledDeck.length) {
|
||||
return Center(child: Text('Review session complete!', style: TextStyle(color: Theme.of(context).colorScheme.onSurface)));
|
||||
final quizState = _quizState;
|
||||
|
||||
if (quizState.current == null) {
|
||||
return Center(
|
||||
child: Text(
|
||||
'Review session complete!',
|
||||
style: TextStyle(color: Theme.of(context).colorScheme.onSurface),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
final currentItem = _shuffledDeck[_currentIndex];
|
||||
final question = (widget.quizMode == CustomQuizMode.englishToJapanese)
|
||||
? currentItem.meaning
|
||||
: (widget.useKanji && currentItem.kanji != null
|
||||
? currentItem.kanji!
|
||||
: currentItem.characters);
|
||||
final currentItem = quizState.current!;
|
||||
|
||||
Widget promptWidget;
|
||||
String subtitle = '';
|
||||
|
||||
if (widget.quizMode == CustomQuizMode.listeningComprehension) {
|
||||
promptWidget = IconButton(
|
||||
icon: const Icon(Icons.volume_up, size: 64),
|
||||
onPressed: () => _speak(currentItem.characters),
|
||||
);
|
||||
} else if (widget.quizMode == CustomQuizMode.englishToJapanese) {
|
||||
promptWidget = Text(
|
||||
currentItem.meaning,
|
||||
style: TextStyle(
|
||||
fontSize: 48,
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
textAlign: TextAlign.center,
|
||||
);
|
||||
} else {
|
||||
final promptText = widget.useKanji && currentItem.kanji != null
|
||||
? currentItem.kanji!
|
||||
: currentItem.characters;
|
||||
promptWidget = GestureDetector(
|
||||
onTap: () => _speak(question),
|
||||
onTap: () => _speak(promptText),
|
||||
child: Text(
|
||||
question,
|
||||
style: TextStyle(fontSize: 48, color: Theme.of(context).colorScheme.onSurface),
|
||||
promptText,
|
||||
style: TextStyle(
|
||||
fontSize: 48,
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
return Padding(
|
||||
key: quizState.key,
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
child: Column(
|
||||
children: [
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
'${quizState.asked} / $_sessionDeckSize',
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
fontSize: 18,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 4),
|
||||
LinearProgressIndicator(
|
||||
value: _sessionDeckSize > 0
|
||||
? quizState.asked / _sessionDeckSize
|
||||
: 0,
|
||||
backgroundColor: Theme.of(
|
||||
context,
|
||||
).colorScheme.surfaceContainerHighest,
|
||||
valueColor: AlwaysStoppedAnimation<Color>(
|
||||
Theme.of(context).colorScheme.primary,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 18),
|
||||
Expanded(
|
||||
flex: 3,
|
||||
@@ -312,7 +413,10 @@ class CustomQuizScreenState extends State<CustomQuizScreen>
|
||||
maxWidth: 500,
|
||||
minHeight: 150,
|
||||
),
|
||||
child: KanjiCard(characterWidget: promptWidget, subtitle: ''),
|
||||
child: KanjiCard(
|
||||
characterWidget: promptWidget,
|
||||
subtitle: subtitle,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
@@ -330,11 +434,18 @@ class CustomQuizScreenState extends State<CustomQuizScreen>
|
||||
);
|
||||
},
|
||||
child: OptionsGrid(
|
||||
options: _options,
|
||||
onSelected: _onOptionSelected,
|
||||
correctAnswers: [],
|
||||
showResult: false,
|
||||
isDisabled: false,
|
||||
options: quizState.options,
|
||||
onSelected: _isAnswering ? (option) {} : _onOptionSelected,
|
||||
selectedOption: quizState.selectedOption,
|
||||
correctAnswers: quizState.correctAnswers,
|
||||
showResult: quizState.showResult,
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Text(
|
||||
'Score: ${quizState.score} / ${quizState.asked}',
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
],
|
||||
|
||||
@@ -29,6 +29,7 @@ class _QuizState {
|
||||
Key key = UniqueKey();
|
||||
String? selectedOption;
|
||||
bool showResult = false;
|
||||
Set<int> wrongItems = {};
|
||||
}
|
||||
|
||||
class HomeScreen extends StatefulWidget {
|
||||
@@ -52,8 +53,11 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
final _audioPlayer = AudioPlayer();
|
||||
|
||||
final _quizStates = [_QuizState(), _QuizState(), _QuizState()];
|
||||
final _sessionDecks = <int, List<KanjiItem>>{};
|
||||
final _sessionDeckSizes = <int, int>{};
|
||||
_QuizState get _currentQuizState => _quizStates[_tabController.index];
|
||||
|
||||
bool _playIncorrectSound = true;
|
||||
bool _playCorrectSound = true;
|
||||
bool _apiKeyMissing = false;
|
||||
|
||||
@@ -78,6 +82,7 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
Future<void> _loadSettings() async {
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
setState(() {
|
||||
_playIncorrectSound = prefs.getBool('playIncorrectSound') ?? true;
|
||||
_playCorrectSound = prefs.getBool('playCorrectSound') ?? true;
|
||||
});
|
||||
}
|
||||
@@ -116,6 +121,49 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
_apiKeyMissing = false;
|
||||
});
|
||||
|
||||
final disabledLevels = <int>{};
|
||||
final itemsByLevel = <int, List<KanjiItem>>{};
|
||||
for (final item in _deck) {
|
||||
(itemsByLevel[item.level] ??= []).add(item);
|
||||
}
|
||||
|
||||
itemsByLevel.forEach((level, items) {
|
||||
final allSrsItems = items
|
||||
.expand((item) => item.srsItems.values)
|
||||
.toList();
|
||||
if (allSrsItems.isNotEmpty &&
|
||||
allSrsItems.every((srs) => srs.disabled)) {
|
||||
disabledLevels.add(level);
|
||||
}
|
||||
});
|
||||
|
||||
for (var i = 0; i < _tabController.length; i++) {
|
||||
final mode = _modeForIndex(i);
|
||||
final filteredDeck = _deck.where((item) {
|
||||
if (disabledLevels.contains(item.level)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (mode == QuizMode.reading) {
|
||||
final onyomiSrs = item.srsItems['${QuizMode.reading}onyomi'];
|
||||
final kunyomiSrs = item.srsItems['${QuizMode.reading}kunyomi'];
|
||||
final hasOnyomi =
|
||||
item.onyomi.isNotEmpty &&
|
||||
(onyomiSrs == null || !onyomiSrs.disabled);
|
||||
final hasKunyomi =
|
||||
item.kunyomi.isNotEmpty &&
|
||||
(kunyomiSrs == null || !kunyomiSrs.disabled);
|
||||
return hasOnyomi || hasKunyomi;
|
||||
}
|
||||
final srsItem = item.srsItems[mode.toString()];
|
||||
return srsItem == null || !srsItem.disabled;
|
||||
}).toList();
|
||||
|
||||
filteredDeck.shuffle(_random);
|
||||
_sessionDecks[i] = filteredDeck;
|
||||
_sessionDeckSizes[i] = filteredDeck.length;
|
||||
}
|
||||
|
||||
for (var i = 0; i < _tabController.length; i++) {
|
||||
_nextQuestion(i);
|
||||
}
|
||||
@@ -162,61 +210,20 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
}
|
||||
|
||||
void _nextQuestion([int? index]) {
|
||||
if (_deck.isEmpty) return;
|
||||
final tabIndex = index ?? _tabController.index;
|
||||
final quizState = _quizStates[tabIndex];
|
||||
final sessionDeck = _sessionDecks[tabIndex];
|
||||
final mode = _modeForIndex(tabIndex);
|
||||
|
||||
final quizState = _quizStates[index ?? _tabController.index];
|
||||
final mode = _modeForIndex(index ?? _tabController.index);
|
||||
if (sessionDeck == null || sessionDeck.isEmpty) {
|
||||
setState(() {
|
||||
quizState.current = null;
|
||||
_status = 'Quiz complete!';
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
_deck.sort((a, b) {
|
||||
int getSrsStage(KanjiItem item) {
|
||||
if (mode == QuizMode.reading) {
|
||||
final onyomiStage =
|
||||
item.srsItems['${QuizMode.reading}onyomi']?.srsStage;
|
||||
final kunyomiStage =
|
||||
item.srsItems['${QuizMode.reading}kunyomi']?.srsStage;
|
||||
|
||||
if (onyomiStage != null && kunyomiStage != null) {
|
||||
return min(onyomiStage, kunyomiStage);
|
||||
}
|
||||
return onyomiStage ?? kunyomiStage ?? 0;
|
||||
}
|
||||
return item.srsItems[mode.toString()]?.srsStage ?? 0;
|
||||
}
|
||||
|
||||
DateTime getLastAsked(KanjiItem item) {
|
||||
if (mode == QuizMode.reading) {
|
||||
final onyomiLastAsked =
|
||||
item.srsItems['${QuizMode.reading}onyomi']?.lastAsked;
|
||||
final kunyomiLastAsked =
|
||||
item.srsItems['${QuizMode.reading}kunyomi']?.lastAsked;
|
||||
|
||||
if (onyomiLastAsked != null && kunyomiLastAsked != null) {
|
||||
return onyomiLastAsked.isBefore(kunyomiLastAsked)
|
||||
? onyomiLastAsked
|
||||
: kunyomiLastAsked;
|
||||
}
|
||||
return onyomiLastAsked ??
|
||||
kunyomiLastAsked ??
|
||||
DateTime.fromMillisecondsSinceEpoch(0);
|
||||
}
|
||||
return item.srsItems[mode.toString()]?.lastAsked ??
|
||||
DateTime.fromMillisecondsSinceEpoch(0);
|
||||
}
|
||||
|
||||
final aStage = getSrsStage(a);
|
||||
final bStage = getSrsStage(b);
|
||||
|
||||
if (aStage != bStage) {
|
||||
return aStage.compareTo(bStage);
|
||||
}
|
||||
|
||||
final aLastAsked = getLastAsked(a);
|
||||
final bLastAsked = getLastAsked(b);
|
||||
|
||||
return aLastAsked.compareTo(bLastAsked);
|
||||
});
|
||||
|
||||
quizState.current = _deck.first;
|
||||
quizState.current = sessionDeck.removeAt(0);
|
||||
quizState.key = UniqueKey();
|
||||
|
||||
quizState.correctAnswers = [];
|
||||
@@ -265,8 +272,6 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
])..shuffle();
|
||||
break;
|
||||
default:
|
||||
// Handle other QuizMode cases if necessary, or throw an error
|
||||
// if these modes are not expected in this context.
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -284,6 +289,8 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
|
||||
final repo = Provider.of<DeckRepository>(context, listen: false);
|
||||
final current = quizState.current!;
|
||||
final tabIndex = _tabController.index;
|
||||
final sessionDeck = _sessionDecks[tabIndex]!;
|
||||
|
||||
String readingType = '';
|
||||
if (mode == QuizMode.reading) {
|
||||
@@ -301,8 +308,6 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
readingType: readingType,
|
||||
);
|
||||
|
||||
quizState.asked += 1;
|
||||
|
||||
quizState.selectedOption = option;
|
||||
|
||||
quizState.showResult = true;
|
||||
@@ -310,13 +315,22 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
setState(() {});
|
||||
|
||||
if (isCorrect) {
|
||||
quizState.score += 1;
|
||||
quizState.asked += 1;
|
||||
if (!quizState.wrongItems.contains(current.id)) {
|
||||
quizState.score += 1;
|
||||
}
|
||||
srsItemForUpdate.srsStage += 1;
|
||||
if (_playCorrectSound) {
|
||||
_audioPlayer.play(AssetSource('sfx/confirm.mp3'));
|
||||
_audioPlayer.play(AssetSource('sfx/correct.wav'));
|
||||
}
|
||||
} else {
|
||||
srsItemForUpdate.srsStage = max(0, srsItemForUpdate.srsStage - 1);
|
||||
sessionDeck.add(current);
|
||||
sessionDeck.shuffle(_random);
|
||||
quizState.wrongItems.add(current.id);
|
||||
if (_playIncorrectSound) {
|
||||
_audioPlayer.play(AssetSource('sfx/incorrect.wav'));
|
||||
}
|
||||
}
|
||||
srsItemForUpdate.lastAsked = DateTime.now();
|
||||
current.srsItems[srsKey] = srsItemForUpdate;
|
||||
@@ -395,6 +409,23 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
);
|
||||
}
|
||||
|
||||
if (_loading) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('Kanji Quiz'),
|
||||
bottom: TabBar(
|
||||
controller: _tabController,
|
||||
tabs: const [
|
||||
Tab(text: 'Kanji→English'),
|
||||
Tab(text: 'English→Kanji'),
|
||||
Tab(text: 'Reading'),
|
||||
],
|
||||
),
|
||||
),
|
||||
body: const Center(child: CircularProgressIndicator()),
|
||||
);
|
||||
}
|
||||
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('Kanji Quiz'),
|
||||
@@ -419,6 +450,18 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
final quizState = _quizStates[index];
|
||||
final mode = _modeForIndex(index);
|
||||
|
||||
if (quizState.current == null) {
|
||||
return Center(
|
||||
child: Text(
|
||||
_status,
|
||||
style: TextStyle(
|
||||
fontSize: 24,
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
String prompt = '';
|
||||
String subtitle = '';
|
||||
|
||||
@@ -435,8 +478,6 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
subtitle = quizState.readingHint;
|
||||
break;
|
||||
default:
|
||||
// Handle other QuizMode cases if necessary, or throw an error
|
||||
// if these modes are not expected in this context.
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -446,20 +487,29 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
child: Column(
|
||||
children: [
|
||||
Row(
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Expanded(
|
||||
child: Text(
|
||||
_status,
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
Text(
|
||||
'${quizState.asked} / ${_sessionDeckSizes[index] ?? 0}',
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
fontSize: 18,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
if (_loading)
|
||||
CircularProgressIndicator(
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
const SizedBox(height: 4),
|
||||
LinearProgressIndicator(
|
||||
value: (_sessionDeckSizes[index] ?? 0) > 0
|
||||
? quizState.asked / (_sessionDeckSizes[index] ?? 1)
|
||||
: 0,
|
||||
backgroundColor: Theme.of(
|
||||
context,
|
||||
).colorScheme.surfaceContainerHighest,
|
||||
valueColor: AlwaysStoppedAnimation<Color>(
|
||||
Theme.of(context).colorScheme.primary,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 18),
|
||||
@@ -489,10 +539,9 @@ class _HomeScreenState extends State<HomeScreen>
|
||||
OptionsGrid(
|
||||
options: quizState.options,
|
||||
onSelected: _isAnswering ? (option) {} : _answer,
|
||||
isDisabled: false,
|
||||
selectedOption: null,
|
||||
correctAnswers: [],
|
||||
showResult: false,
|
||||
showResult: quizState.showResult,
|
||||
selectedOption: quizState.selectedOption,
|
||||
correctAnswers: quizState.correctAnswers,
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Text(
|
||||
|
||||
@@ -15,8 +15,9 @@ class SettingsScreen extends StatefulWidget {
|
||||
|
||||
class _SettingsScreenState extends State<SettingsScreen> {
|
||||
final TextEditingController _apiKeyController = TextEditingController();
|
||||
bool _playAudio = true;
|
||||
bool _playIncorrectSound = true;
|
||||
bool _playCorrectSound = true;
|
||||
bool _playNarrator = true;
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
@@ -39,8 +40,9 @@ class _SettingsScreenState extends State<SettingsScreen> {
|
||||
Future<void> _loadSettings() async {
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
setState(() {
|
||||
_playAudio = prefs.getBool('playAudio') ?? true;
|
||||
_playIncorrectSound = prefs.getBool('playIncorrectSound') ?? true;
|
||||
_playCorrectSound = prefs.getBool('playCorrectSound') ?? true;
|
||||
_playNarrator = prefs.getBool('playNarrator') ?? true;
|
||||
});
|
||||
}
|
||||
|
||||
@@ -108,17 +110,17 @@ class _SettingsScreenState extends State<SettingsScreen> {
|
||||
const SizedBox(height: 24),
|
||||
SwitchListTile(
|
||||
title: Text(
|
||||
'Play audio for vocabulary',
|
||||
'Play incorrect sound',
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
value: _playAudio,
|
||||
value: _playIncorrectSound,
|
||||
onChanged: (value) async {
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
prefs.setBool('playAudio', value);
|
||||
prefs.setBool('playIncorrectSound', value);
|
||||
setState(() {
|
||||
_playAudio = value;
|
||||
_playIncorrectSound = value;
|
||||
});
|
||||
},
|
||||
activeThumbColor: Theme.of(context).colorScheme.primary,
|
||||
@@ -133,7 +135,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
|
||||
const SizedBox(height: 12),
|
||||
SwitchListTile(
|
||||
title: Text(
|
||||
'Play sound on correct answer',
|
||||
'Play correct sound',
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
@@ -156,6 +158,31 @@ class _SettingsScreenState extends State<SettingsScreen> {
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
SwitchListTile(
|
||||
title: Text(
|
||||
'Play narrator (TTS)',
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
value: _playNarrator,
|
||||
onChanged: (value) async {
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
prefs.setBool('playNarrator', value);
|
||||
setState(() {
|
||||
_playNarrator = value;
|
||||
});
|
||||
},
|
||||
activeThumbColor: Theme.of(context).colorScheme.primary,
|
||||
inactiveThumbColor: Theme.of(
|
||||
context,
|
||||
).colorScheme.onSurfaceVariant,
|
||||
tileColor: Theme.of(context).colorScheme.surfaceContainer,
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(6),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 12),
|
||||
ListTile(
|
||||
title: Text(
|
||||
'Theme',
|
||||
|
||||
@@ -17,9 +17,9 @@ class StartScreen extends StatelessWidget {
|
||||
IconButton(
|
||||
icon: const Icon(Icons.settings),
|
||||
onPressed: () {
|
||||
Navigator.of(context).push(
|
||||
MaterialPageRoute(builder: (_) => const SettingsScreen()),
|
||||
);
|
||||
Navigator.of(
|
||||
context,
|
||||
).push(MaterialPageRoute(builder: (_) => const SettingsScreen()));
|
||||
},
|
||||
),
|
||||
],
|
||||
@@ -48,9 +48,9 @@ class StartScreen extends StatelessWidget {
|
||||
icon: Icons.extension,
|
||||
description: 'Test your knowledge of kanji characters.',
|
||||
onTap: () {
|
||||
Navigator.of(context).push(
|
||||
MaterialPageRoute(builder: (_) => const HomeScreen()),
|
||||
);
|
||||
Navigator.of(
|
||||
context,
|
||||
).push(MaterialPageRoute(builder: (_) => const HomeScreen()));
|
||||
},
|
||||
),
|
||||
_buildModeCard(
|
||||
@@ -59,9 +59,9 @@ class StartScreen extends StatelessWidget {
|
||||
icon: Icons.school,
|
||||
description: 'Practice vocabulary from your WaniKani deck.',
|
||||
onTap: () {
|
||||
Navigator.of(context).push(
|
||||
MaterialPageRoute(builder: (_) => const VocabScreen()),
|
||||
);
|
||||
Navigator.of(
|
||||
context,
|
||||
).push(MaterialPageRoute(builder: (_) => const VocabScreen()));
|
||||
},
|
||||
),
|
||||
_buildModeCard(
|
||||
@@ -70,9 +70,9 @@ class StartScreen extends StatelessWidget {
|
||||
icon: Icons.grid_view,
|
||||
description: 'Look through your kanji and vocabulary decks.',
|
||||
onTap: () {
|
||||
Navigator.of(context).push(
|
||||
MaterialPageRoute(builder: (_) => const BrowseScreen()),
|
||||
);
|
||||
Navigator.of(
|
||||
context,
|
||||
).push(MaterialPageRoute(builder: (_) => const BrowseScreen()));
|
||||
},
|
||||
),
|
||||
_buildModeCard(
|
||||
@@ -92,7 +92,8 @@ class StartScreen extends StatelessWidget {
|
||||
);
|
||||
}
|
||||
|
||||
Widget _buildModeCard(BuildContext context, {
|
||||
Widget _buildModeCard(
|
||||
BuildContext context, {
|
||||
required String title,
|
||||
required IconData icon,
|
||||
required String description,
|
||||
@@ -109,13 +110,17 @@ class StartScreen extends StatelessWidget {
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Icon(icon, size: 48, color: Theme.of(context).colorScheme.primary),
|
||||
Icon(
|
||||
icon,
|
||||
size: 48,
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
),
|
||||
const SizedBox(height: 16),
|
||||
Text(
|
||||
title,
|
||||
style: Theme.of(context).textTheme.titleMedium?.copyWith(
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
style: Theme.of(
|
||||
context,
|
||||
).textTheme.titleMedium?.copyWith(fontWeight: FontWeight.bold),
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
@@ -135,4 +140,4 @@ class StartScreen extends StatelessWidget {
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,8 +21,7 @@ class _QuizState {
|
||||
Key key = UniqueKey();
|
||||
String? selectedOption;
|
||||
bool showResult = false;
|
||||
List<VocabularyItem> shuffledDeck = [];
|
||||
int currentIndex = 0;
|
||||
Set<int> wrongItems = {};
|
||||
}
|
||||
|
||||
class VocabScreen extends StatefulWidget {
|
||||
@@ -40,13 +39,17 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
bool _isAnswering = false;
|
||||
String _status = 'Loading deck...';
|
||||
final DistractorGenerator _dg = DistractorGenerator();
|
||||
final Random _random = Random();
|
||||
final _audioPlayer = AudioPlayer();
|
||||
|
||||
final _quizStates = [_QuizState(), _QuizState(), _QuizState()];
|
||||
_QuizState get _currentQuizState => _quizStates[_tabController.index];
|
||||
final _sessionDecks = <int, List<VocabularyItem>>{};
|
||||
final _sessionDeckSizes = <int, int>{};
|
||||
|
||||
bool _playAudio = true;
|
||||
bool _playIncorrectSound = true;
|
||||
bool _playCorrectSound = true;
|
||||
bool _playNarrator = true;
|
||||
bool _apiKeyMissing = false;
|
||||
|
||||
@override
|
||||
@@ -54,6 +57,9 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
super.initState();
|
||||
_tabController = TabController(length: 3, vsync: this);
|
||||
_tabController.addListener(() {
|
||||
if (_tabController.index == 2 && !_tabController.indexIsChanging) {
|
||||
_playCurrentAudio();
|
||||
}
|
||||
setState(() {});
|
||||
});
|
||||
_loadSettings();
|
||||
@@ -69,8 +75,9 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
Future<void> _loadSettings() async {
|
||||
final prefs = await SharedPreferences.getInstance();
|
||||
setState(() {
|
||||
_playAudio = prefs.getBool('playAudio') ?? true;
|
||||
_playIncorrectSound = prefs.getBool('playIncorrectSound') ?? true;
|
||||
_playCorrectSound = prefs.getBool('playCorrectSound') ?? true;
|
||||
_playNarrator = prefs.getBool('playNarrator') ?? true;
|
||||
});
|
||||
}
|
||||
|
||||
@@ -109,6 +116,43 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
_apiKeyMissing = false;
|
||||
});
|
||||
|
||||
final disabledLevels = <int>{};
|
||||
final itemsByLevel = <int, List<VocabularyItem>>{};
|
||||
for (final item in _deck) {
|
||||
(itemsByLevel[item.level] ??= []).add(item);
|
||||
}
|
||||
|
||||
itemsByLevel.forEach((level, items) {
|
||||
final allSrsItems = items
|
||||
.expand((item) => item.srsItems.values)
|
||||
.toList();
|
||||
if (allSrsItems.isNotEmpty &&
|
||||
allSrsItems.every((srs) => srs.disabled)) {
|
||||
disabledLevels.add(level);
|
||||
}
|
||||
});
|
||||
|
||||
for (var i = 0; i < _tabController.length; i++) {
|
||||
final mode = _modeForIndex(i);
|
||||
var filteredDeck = _deck.where((item) {
|
||||
if (disabledLevels.contains(item.level)) {
|
||||
return false;
|
||||
}
|
||||
final srsItem = item.srsItems[mode.toString()];
|
||||
return srsItem == null || !srsItem.disabled;
|
||||
}).toList();
|
||||
|
||||
if (mode == QuizMode.audioToEnglish) {
|
||||
filteredDeck = filteredDeck
|
||||
.where((item) => item.pronunciationAudios.isNotEmpty)
|
||||
.toList();
|
||||
}
|
||||
|
||||
filteredDeck.shuffle(_random);
|
||||
_sessionDecks[i] = filteredDeck;
|
||||
_sessionDeckSizes[i] = filteredDeck.length;
|
||||
}
|
||||
|
||||
for (var i = 0; i < _tabController.length; i++) {
|
||||
_nextQuestion(i);
|
||||
}
|
||||
@@ -142,47 +186,20 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
}
|
||||
|
||||
void _nextQuestion([int? index]) {
|
||||
if (_deck.isEmpty) return;
|
||||
final tabIndex = index ?? _tabController.index;
|
||||
final quizState = _quizStates[tabIndex];
|
||||
final sessionDeck = _sessionDecks[tabIndex];
|
||||
final mode = _modeForIndex(tabIndex);
|
||||
|
||||
final quizState = _quizStates[index ?? _tabController.index];
|
||||
final mode = _modeForIndex(index ?? _tabController.index);
|
||||
|
||||
List<VocabularyItem> currentDeckForMode = _deck;
|
||||
if (mode == QuizMode.audioToEnglish) {
|
||||
currentDeckForMode = _deck
|
||||
.where((item) => item.pronunciationAudios.isNotEmpty)
|
||||
.toList();
|
||||
if (currentDeckForMode.isEmpty) {
|
||||
setState(() {
|
||||
_status = 'No vocabulary with audio found.';
|
||||
quizState.current = null;
|
||||
});
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (quizState.shuffledDeck.isEmpty ||
|
||||
quizState.currentIndex >= quizState.shuffledDeck.length) {
|
||||
quizState.shuffledDeck = currentDeckForMode.toList();
|
||||
quizState.shuffledDeck.sort((a, b) {
|
||||
final aSrsItem =
|
||||
a.srsItems[mode.toString()] ??
|
||||
SrsItem(subjectId: a.id, quizMode: mode);
|
||||
final bSrsItem =
|
||||
b.srsItems[mode.toString()] ??
|
||||
SrsItem(subjectId: b.id, quizMode: mode);
|
||||
final stageComparison = aSrsItem.srsStage.compareTo(bSrsItem.srsStage);
|
||||
if (stageComparison != 0) {
|
||||
return stageComparison;
|
||||
}
|
||||
return aSrsItem.lastAsked.compareTo(bSrsItem.lastAsked);
|
||||
if (sessionDeck == null || sessionDeck.isEmpty) {
|
||||
setState(() {
|
||||
quizState.current = null;
|
||||
_status = 'Quiz complete!';
|
||||
});
|
||||
quizState.currentIndex = 0;
|
||||
return;
|
||||
}
|
||||
|
||||
quizState.current = quizState.shuffledDeck[quizState.currentIndex];
|
||||
quizState.currentIndex++;
|
||||
|
||||
quizState.current = sessionDeck.removeAt(0);
|
||||
quizState.key = UniqueKey();
|
||||
quizState.correctAnswers = [];
|
||||
quizState.options = [];
|
||||
@@ -213,13 +230,17 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
setState(() {
|
||||
_isAnswering = false;
|
||||
});
|
||||
|
||||
if (mode == QuizMode.audioToEnglish) {
|
||||
_playCurrentAudio(playOnLoad: true);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> _playCurrentAudio({bool playOnLoad = false}) async {
|
||||
final current = _currentQuizState.current;
|
||||
if (current == null || current.pronunciationAudios.isEmpty) return;
|
||||
|
||||
if (playOnLoad && !_playAudio) return;
|
||||
if (playOnLoad && !_playNarrator) return;
|
||||
|
||||
final maleAudios = current.pronunciationAudios.where(
|
||||
(a) => a.gender == 'male',
|
||||
@@ -242,6 +263,8 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
|
||||
final repo = Provider.of<VocabDeckRepository>(context, listen: false);
|
||||
final current = quizState.current!;
|
||||
final tabIndex = _tabController.index;
|
||||
final sessionDeck = _sessionDecks[tabIndex]!;
|
||||
|
||||
final srsKey = mode.toString();
|
||||
|
||||
@@ -250,16 +273,24 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
final srsItem =
|
||||
srsItemNullable ?? SrsItem(subjectId: current.id, quizMode: mode);
|
||||
|
||||
quizState.asked += 1;
|
||||
quizState.selectedOption = option;
|
||||
quizState.showResult = true;
|
||||
setState(() {});
|
||||
|
||||
if (isCorrect) {
|
||||
quizState.score += 1;
|
||||
quizState.asked += 1;
|
||||
if (!quizState.wrongItems.contains(current.id)) {
|
||||
quizState.score += 1;
|
||||
}
|
||||
srsItem.srsStage += 1;
|
||||
} else {
|
||||
srsItem.srsStage = max(0, srsItem.srsStage - 1);
|
||||
sessionDeck.add(current);
|
||||
sessionDeck.shuffle(_random);
|
||||
quizState.wrongItems.add(current.id);
|
||||
if (_playIncorrectSound) {
|
||||
await _audioPlayer.play(AssetSource('sfx/incorrect.wav'));
|
||||
}
|
||||
}
|
||||
srsItem.lastAsked = DateTime.now();
|
||||
current.srsItems[srsKey] = srsItem;
|
||||
@@ -291,10 +322,9 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
ScaffoldMessenger.of(context).showSnackBar(snack);
|
||||
|
||||
if (isCorrect) {
|
||||
if (_playCorrectSound) {
|
||||
await _audioPlayer.play(AssetSource('sfx/confirm.mp3'));
|
||||
}
|
||||
if (_playAudio) {
|
||||
if (_playCorrectSound && !_playNarrator) {
|
||||
await _audioPlayer.play(AssetSource('sfx/correct.wav'));
|
||||
} else if (_playNarrator) {
|
||||
final maleAudios = current.pronunciationAudios.where(
|
||||
(a) => a.gender == 'male',
|
||||
);
|
||||
@@ -318,7 +348,11 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
_isAnswering = true;
|
||||
});
|
||||
|
||||
_nextQuestion();
|
||||
Future.delayed(const Duration(milliseconds: 900), () {
|
||||
if (mounted) {
|
||||
_nextQuestion();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
@@ -353,6 +387,23 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
);
|
||||
}
|
||||
|
||||
if (_loading) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('Vocabulary Quiz'),
|
||||
bottom: TabBar(
|
||||
controller: _tabController,
|
||||
tabs: const [
|
||||
Tab(text: 'Vocab→English'),
|
||||
Tab(text: 'English→Vocab'),
|
||||
Tab(text: 'Listening'),
|
||||
],
|
||||
),
|
||||
),
|
||||
body: const Center(child: CircularProgressIndicator()),
|
||||
);
|
||||
}
|
||||
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('Vocabulary Quiz'),
|
||||
@@ -376,6 +427,18 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
final quizState = _quizStates[index];
|
||||
final mode = _modeForIndex(index);
|
||||
|
||||
if (quizState.current == null) {
|
||||
return Center(
|
||||
child: Text(
|
||||
_status,
|
||||
style: TextStyle(
|
||||
fontSize: 24,
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget promptWidget;
|
||||
|
||||
if (quizState.current == null) {
|
||||
@@ -417,20 +480,29 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
child: Column(
|
||||
children: [
|
||||
Row(
|
||||
Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Expanded(
|
||||
child: Text(
|
||||
_status,
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
),
|
||||
Text(
|
||||
'${quizState.asked} / ${_sessionDeckSizes[index] ?? 0}',
|
||||
style: TextStyle(
|
||||
color: Theme.of(context).colorScheme.onSurface,
|
||||
fontSize: 18,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
if (_loading)
|
||||
CircularProgressIndicator(
|
||||
color: Theme.of(context).colorScheme.primary,
|
||||
const SizedBox(height: 4),
|
||||
LinearProgressIndicator(
|
||||
value: (_sessionDeckSizes[index] ?? 0) > 0
|
||||
? quizState.asked / (_sessionDeckSizes[index] ?? 1)
|
||||
: 0,
|
||||
backgroundColor: Theme.of(
|
||||
context,
|
||||
).colorScheme.surfaceContainerHighest,
|
||||
valueColor: AlwaysStoppedAnimation<Color>(
|
||||
Theme.of(context).colorScheme.primary,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 18),
|
||||
@@ -455,10 +527,9 @@ class _VocabScreenState extends State<VocabScreen>
|
||||
OptionsGrid(
|
||||
options: quizState.options,
|
||||
onSelected: _isAnswering ? (option) {} : _answer,
|
||||
isDisabled: false,
|
||||
selectedOption: null,
|
||||
correctAnswers: [],
|
||||
showResult: false,
|
||||
showResult: quizState.showResult,
|
||||
selectedOption: quizState.selectedOption,
|
||||
correctAnswers: quizState.correctAnswers,
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
Text(
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
import 'dart:convert';
|
||||
import 'package:shared_preferences/shared_preferences.dart';
|
||||
import '../models/custom_kanji_item.dart';
|
||||
@@ -29,7 +28,9 @@ class CustomDeckRepository {
|
||||
Future<void> updateCards(List<CustomKanjiItem> itemsToUpdate) async {
|
||||
final deck = await getCustomDeck();
|
||||
for (var item in itemsToUpdate) {
|
||||
final index = deck.indexWhere((element) => element.characters == item.characters);
|
||||
final index = deck.indexWhere(
|
||||
(element) => element.characters == item.characters,
|
||||
);
|
||||
if (index != -1) {
|
||||
deck[index] = item;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
class DbConstants {
|
||||
static const String settingsTable = 'settings';
|
||||
static const String kanjiTable = 'kanji';
|
||||
@@ -24,4 +23,5 @@ class DbConstants {
|
||||
static const String readingTypeColumn = 'readingType';
|
||||
static const String srsStageColumn = 'srsStage';
|
||||
static const String lastAskedColumn = 'lastAsked';
|
||||
static const String disabledColumn = 'disabled';
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@ class DatabaseHelper {
|
||||
|
||||
return openDatabase(
|
||||
path,
|
||||
version: 7,
|
||||
version: 8,
|
||||
onCreate: (db, version) async {
|
||||
await db.execute(
|
||||
'''CREATE TABLE ${DbConstants.kanjiTable} (${DbConstants.idColumn} INTEGER PRIMARY KEY, ${DbConstants.levelColumn} INTEGER, ${DbConstants.charactersColumn} TEXT, ${DbConstants.meaningsColumn} TEXT, ${DbConstants.onyomiColumn} TEXT, ${DbConstants.kunyomiColumn} TEXT)''',
|
||||
@@ -41,51 +41,24 @@ class DatabaseHelper {
|
||||
'''CREATE TABLE ${DbConstants.settingsTable} (${DbConstants.keyColumn} TEXT PRIMARY KEY, ${DbConstants.valueColumn} TEXT)''',
|
||||
);
|
||||
await db.execute(
|
||||
'''CREATE TABLE ${DbConstants.srsItemsTable} (${DbConstants.kanjiIdColumn} INTEGER, ${DbConstants.quizModeColumn} TEXT, ${DbConstants.readingTypeColumn} TEXT, ${DbConstants.srsStageColumn} INTEGER, ${DbConstants.lastAskedColumn} TEXT, PRIMARY KEY (${DbConstants.kanjiIdColumn}, ${DbConstants.quizModeColumn}, ${DbConstants.readingTypeColumn}))''',
|
||||
'''CREATE TABLE ${DbConstants.srsItemsTable} (${DbConstants.kanjiIdColumn} INTEGER, ${DbConstants.quizModeColumn} TEXT, ${DbConstants.readingTypeColumn} TEXT, ${DbConstants.srsStageColumn} INTEGER, ${DbConstants.lastAskedColumn} TEXT, ${DbConstants.disabledColumn} INTEGER DEFAULT 0, PRIMARY KEY (${DbConstants.kanjiIdColumn}, ${DbConstants.quizModeColumn}, ${DbConstants.readingTypeColumn}))''',
|
||||
);
|
||||
await db.execute(
|
||||
'''CREATE TABLE ${DbConstants.vocabularyTable} (${DbConstants.idColumn} INTEGER PRIMARY KEY, ${DbConstants.levelColumn} INTEGER, ${DbConstants.charactersColumn} TEXT, ${DbConstants.meaningsColumn} TEXT, ${DbConstants.readingsColumn} TEXT, ${DbConstants.pronunciationAudiosColumn} TEXT)''',
|
||||
);
|
||||
await db.execute(
|
||||
'''CREATE TABLE ${DbConstants.srsVocabItemsTable} (${DbConstants.vocabIdColumn} INTEGER, ${DbConstants.quizModeColumn} TEXT, ${DbConstants.srsStageColumn} INTEGER, ${DbConstants.lastAskedColumn} TEXT, PRIMARY KEY (${DbConstants.vocabIdColumn}, ${DbConstants.quizModeColumn}))''',
|
||||
'''CREATE TABLE ${DbConstants.srsVocabItemsTable} (${DbConstants.vocabIdColumn} INTEGER, ${DbConstants.quizModeColumn} TEXT, ${DbConstants.srsStageColumn} INTEGER, ${DbConstants.lastAskedColumn} TEXT, ${DbConstants.disabledColumn} INTEGER DEFAULT 0, PRIMARY KEY (${DbConstants.vocabIdColumn}, ${DbConstants.quizModeColumn}))''',
|
||||
);
|
||||
},
|
||||
onUpgrade: (db, oldVersion, newVersion) async {
|
||||
if (oldVersion < 2) {
|
||||
if (oldVersion < 8) {
|
||||
await db.execute(
|
||||
'''CREATE TABLE IF NOT EXISTS ${DbConstants.settingsTable} (${DbConstants.keyColumn} TEXT PRIMARY KEY, ${DbConstants.valueColumn} TEXT)''',
|
||||
);
|
||||
}
|
||||
if (oldVersion < 4) {
|
||||
await db.execute(
|
||||
'''CREATE TABLE IF NOT EXISTS ${DbConstants.srsItemsTable} (${DbConstants.kanjiIdColumn} INTEGER, ${DbConstants.quizModeColumn} TEXT, ${DbConstants.readingTypeColumn} TEXT, ${DbConstants.srsStageColumn} INTEGER, ${DbConstants.lastAskedColumn} TEXT, PRIMARY KEY (${DbConstants.kanjiIdColumn}, ${DbConstants.quizModeColumn}, ${DbConstants.readingTypeColumn}))''',
|
||||
);
|
||||
}
|
||||
if (oldVersion < 5) {
|
||||
await db.execute(
|
||||
'''CREATE TABLE IF NOT EXISTS ${DbConstants.vocabularyTable} (${DbConstants.idColumn} INTEGER PRIMARY KEY, ${DbConstants.charactersColumn} TEXT, ${DbConstants.meaningsColumn} TEXT, ${DbConstants.readingsColumn} TEXT)''',
|
||||
'ALTER TABLE ${DbConstants.srsItemsTable} ADD COLUMN ${DbConstants.disabledColumn} INTEGER DEFAULT 0',
|
||||
);
|
||||
await db.execute(
|
||||
'''CREATE TABLE IF NOT EXISTS ${DbConstants.srsVocabItemsTable} (${DbConstants.vocabIdColumn} INTEGER, ${DbConstants.quizModeColumn} TEXT, ${DbConstants.srsStageColumn} INTEGER, ${DbConstants.lastAskedColumn} TEXT, PRIMARY KEY (${DbConstants.vocabIdColumn}, ${DbConstants.quizModeColumn}))''',
|
||||
'ALTER TABLE ${DbConstants.srsVocabItemsTable} ADD COLUMN ${DbConstants.disabledColumn} INTEGER DEFAULT 0',
|
||||
);
|
||||
}
|
||||
if (oldVersion < 6) {
|
||||
try {
|
||||
await db.execute(
|
||||
'ALTER TABLE ${DbConstants.vocabularyTable} ADD COLUMN ${DbConstants.pronunciationAudiosColumn} TEXT',
|
||||
);
|
||||
} catch (_) {
|
||||
// Ignore error, column might already exist
|
||||
}
|
||||
}
|
||||
if (oldVersion < 7) {
|
||||
try {
|
||||
await db.execute('ALTER TABLE ${DbConstants.kanjiTable} ADD COLUMN ${DbConstants.levelColumn} INTEGER');
|
||||
await db.execute('ALTER TABLE ${DbConstants.vocabularyTable} ADD COLUMN ${DbConstants.levelColumn} INTEGER');
|
||||
} catch (_) {
|
||||
// Ignore error, column might already exist
|
||||
}
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
@@ -46,9 +46,7 @@ class DeckRepository {
|
||||
_apiKey = envApiKey;
|
||||
return _apiKey;
|
||||
}
|
||||
} catch (e) {
|
||||
// dotenv is not initialized
|
||||
}
|
||||
} catch (_) {}
|
||||
|
||||
return null;
|
||||
}
|
||||
@@ -105,6 +103,7 @@ class DeckRepository {
|
||||
readingType: r[DbConstants.readingTypeColumn] as String?,
|
||||
srsStage: r[DbConstants.srsStageColumn] as int,
|
||||
lastAsked: DateTime.parse(r[DbConstants.lastAskedColumn] as String),
|
||||
disabled: (r[DbConstants.disabledColumn] as int? ?? 0) == 1,
|
||||
);
|
||||
srsItemsByKanjiId.putIfAbsent(srsItem.subjectId, () => []).add(srsItem);
|
||||
}
|
||||
@@ -120,16 +119,55 @@ class DeckRepository {
|
||||
return kanjiItems;
|
||||
}
|
||||
|
||||
Future<void> updateSrsItems(List<SrsItem> items) async {
|
||||
final db = await DatabaseHelper().db;
|
||||
final batch = db.batch();
|
||||
for (final item in items) {
|
||||
var where =
|
||||
'${DbConstants.kanjiIdColumn} = ? AND ${DbConstants.quizModeColumn} = ?';
|
||||
final whereArgs = [item.subjectId, item.quizMode.toString()];
|
||||
if (item.readingType != null) {
|
||||
where += ' AND ${DbConstants.readingTypeColumn} = ?';
|
||||
whereArgs.add(item.readingType!);
|
||||
} else {
|
||||
where += ' AND ${DbConstants.readingTypeColumn} IS NULL';
|
||||
}
|
||||
|
||||
batch.update(
|
||||
DbConstants.srsItemsTable,
|
||||
{
|
||||
DbConstants.srsStageColumn: item.srsStage,
|
||||
DbConstants.lastAskedColumn: item.lastAsked.toIso8601String(),
|
||||
DbConstants.disabledColumn: item.disabled ? 1 : 0,
|
||||
},
|
||||
where: where,
|
||||
whereArgs: whereArgs,
|
||||
);
|
||||
}
|
||||
await batch.commit(noResult: true);
|
||||
}
|
||||
|
||||
Future<void> updateSrsItem(SrsItem item) async {
|
||||
final db = await DatabaseHelper().db;
|
||||
var where =
|
||||
'${DbConstants.kanjiIdColumn} = ? AND ${DbConstants.quizModeColumn} = ?';
|
||||
final whereArgs = [item.subjectId, item.quizMode.toString()];
|
||||
if (item.readingType != null) {
|
||||
where += ' AND ${DbConstants.readingTypeColumn} = ?';
|
||||
whereArgs.add(item.readingType!);
|
||||
} else {
|
||||
where += ' AND ${DbConstants.readingTypeColumn} IS NULL';
|
||||
}
|
||||
|
||||
await db.update(
|
||||
DbConstants.srsItemsTable,
|
||||
{
|
||||
DbConstants.srsStageColumn: item.srsStage,
|
||||
DbConstants.lastAskedColumn: item.lastAsked.toIso8601String(),
|
||||
DbConstants.disabledColumn: item.disabled ? 1 : 0,
|
||||
},
|
||||
where: '${DbConstants.kanjiIdColumn} = ? AND ${DbConstants.quizModeColumn} = ? AND ${DbConstants.readingTypeColumn} = ?',
|
||||
whereArgs: [item.subjectId, item.quizMode.toString(), item.readingType],
|
||||
where: where,
|
||||
whereArgs: whereArgs,
|
||||
);
|
||||
}
|
||||
|
||||
@@ -141,6 +179,7 @@ class DeckRepository {
|
||||
DbConstants.readingTypeColumn: item.readingType,
|
||||
DbConstants.srsStageColumn: item.srsStage,
|
||||
DbConstants.lastAskedColumn: item.lastAsked.toIso8601String(),
|
||||
DbConstants.disabledColumn: item.disabled ? 1 : 0,
|
||||
}, conflictAlgorithm: ConflictAlgorithm.replace);
|
||||
}
|
||||
|
||||
|
||||
@@ -5,14 +5,26 @@ import 'dart:math';
|
||||
class DistractorGenerator {
|
||||
final Random _rnd = Random();
|
||||
|
||||
List<String> generateMeanings(KanjiItem correct, List<KanjiItem> pool, int needed) {
|
||||
List<String> generateMeanings(
|
||||
KanjiItem correct,
|
||||
List<KanjiItem> pool,
|
||||
int needed,
|
||||
) {
|
||||
final correctMeaning = correct.meanings.first;
|
||||
final tokens = correctMeaning.split(RegExp(r'\s+')).map((s) => s.trim()).where((s) => s.isNotEmpty).toSet();
|
||||
final tokens = correctMeaning
|
||||
.split(RegExp(r'\s+'))
|
||||
.map((s) => s.trim())
|
||||
.where((s) => s.isNotEmpty)
|
||||
.toSet();
|
||||
final candidates = <String>[];
|
||||
for (final k in pool) {
|
||||
if (k.id == correct.id) continue;
|
||||
for (final m in k.meanings) {
|
||||
final mTokens = m.split(RegExp(r'\s+')).map((s) => s.trim()).where((s) => s.isNotEmpty).toSet();
|
||||
final mTokens = m
|
||||
.split(RegExp(r'\s+'))
|
||||
.map((s) => s.trim())
|
||||
.where((s) => s.isNotEmpty)
|
||||
.toSet();
|
||||
if (mTokens.intersection(tokens).isNotEmpty) {
|
||||
candidates.add(m);
|
||||
}
|
||||
@@ -39,8 +51,15 @@ class DistractorGenerator {
|
||||
return out;
|
||||
}
|
||||
|
||||
List<String> generateKanji(KanjiItem correct, List<KanjiItem> pool, int needed) {
|
||||
final others = pool.map((k) => k.characters).where((c) => c != correct.characters).toList();
|
||||
List<String> generateKanji(
|
||||
KanjiItem correct,
|
||||
List<KanjiItem> pool,
|
||||
int needed,
|
||||
) {
|
||||
final others = pool
|
||||
.map((k) => k.characters)
|
||||
.where((c) => c != correct.characters)
|
||||
.toList();
|
||||
others.shuffle(_rnd);
|
||||
final out = <String>[];
|
||||
for (final o in others) {
|
||||
@@ -53,7 +72,11 @@ class DistractorGenerator {
|
||||
return out;
|
||||
}
|
||||
|
||||
List<String> generateReadings(String correct, List<KanjiItem> pool, int needed) {
|
||||
List<String> generateReadings(
|
||||
String correct,
|
||||
List<KanjiItem> pool,
|
||||
int needed,
|
||||
) {
|
||||
final poolReadings = <String>[];
|
||||
for (final k in pool) {
|
||||
poolReadings.addAll(k.onyomi);
|
||||
@@ -72,14 +95,26 @@ class DistractorGenerator {
|
||||
return out;
|
||||
}
|
||||
|
||||
List<String> generateVocabMeanings(VocabularyItem correct, List<VocabularyItem> pool, int needed) {
|
||||
List<String> generateVocabMeanings(
|
||||
VocabularyItem correct,
|
||||
List<VocabularyItem> pool,
|
||||
int needed,
|
||||
) {
|
||||
final correctMeaning = correct.meanings.first;
|
||||
final tokens = correctMeaning.split(RegExp(r'\s+')).map((s) => s.trim()).where((s) => s.isNotEmpty).toSet();
|
||||
final tokens = correctMeaning
|
||||
.split(RegExp(r'\s+'))
|
||||
.map((s) => s.trim())
|
||||
.where((s) => s.isNotEmpty)
|
||||
.toSet();
|
||||
final candidates = <String>[];
|
||||
for (final k in pool) {
|
||||
if (k.id == correct.id) continue;
|
||||
for (final m in k.meanings) {
|
||||
final mTokens = m.split(RegExp(r'\s+')).map((s) => s.trim()).where((s) => s.isNotEmpty).toSet();
|
||||
final mTokens = m
|
||||
.split(RegExp(r'\s+'))
|
||||
.map((s) => s.trim())
|
||||
.where((s) => s.isNotEmpty)
|
||||
.toSet();
|
||||
if (mTokens.intersection(tokens).isNotEmpty) {
|
||||
candidates.add(m);
|
||||
}
|
||||
@@ -106,8 +141,15 @@ class DistractorGenerator {
|
||||
return out;
|
||||
}
|
||||
|
||||
List<String> generateVocab(VocabularyItem correct, List<VocabularyItem> pool, int needed) {
|
||||
final others = pool.map((k) => k.characters).where((c) => c != correct.characters).toList();
|
||||
List<String> generateVocab(
|
||||
VocabularyItem correct,
|
||||
List<VocabularyItem> pool,
|
||||
int needed,
|
||||
) {
|
||||
final others = pool
|
||||
.map((k) => k.characters)
|
||||
.where((c) => c != correct.characters)
|
||||
.toList();
|
||||
others.shuffle(_rnd);
|
||||
final out = <String>[];
|
||||
for (final o in others) {
|
||||
@@ -121,4 +163,7 @@ class DistractorGenerator {
|
||||
}
|
||||
}
|
||||
|
||||
String _toTitleCase(String s) => s.split(' ').map((w) => w.isEmpty ? w : (w[0].toUpperCase() + w.substring(1))).join(' ');
|
||||
String _toTitleCase(String s) => s
|
||||
.split(' ')
|
||||
.map((w) => w.isEmpty ? w : (w[0].toUpperCase() + w.substring(1)))
|
||||
.join(' ');
|
||||
|
||||
56
lib/src/services/tts_service.dart
Normal file
56
lib/src/services/tts_service.dart
Normal file
@@ -0,0 +1,56 @@
|
||||
import 'package:flutter_tts/flutter_tts.dart';
|
||||
import 'package:flutter/foundation.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
|
||||
class TtsService {
|
||||
FlutterTts? _flutterTts;
|
||||
bool _isInitialized = false;
|
||||
|
||||
Future<void> initTts() async {
|
||||
if (_isInitialized) return;
|
||||
|
||||
_flutterTts = FlutterTts();
|
||||
if (_flutterTts != null) {
|
||||
final isAvailable = await _flutterTts!.isLanguageAvailable("ja-JP");
|
||||
if (isAvailable == true) {
|
||||
await _flutterTts?.setLanguage("ja-JP");
|
||||
} else {
|
||||
debugPrint('Japanese (ja-JP) TTS language not available.');
|
||||
}
|
||||
}
|
||||
_isInitialized = true;
|
||||
}
|
||||
|
||||
Future<bool> isLanguageAvailable(String language) async {
|
||||
if (_flutterTts == null) {
|
||||
await initTts();
|
||||
}
|
||||
return await _flutterTts?.isLanguageAvailable(language) ?? false;
|
||||
}
|
||||
|
||||
Future<void> speak(String text) async {
|
||||
const int maxRetries = 3;
|
||||
for (int i = 0; i < maxRetries; i++) {
|
||||
try {
|
||||
if (_flutterTts == null || !_isInitialized) {
|
||||
await initTts();
|
||||
}
|
||||
await _flutterTts?.speak(text);
|
||||
return;
|
||||
} on PlatformException catch (_) {
|
||||
debugPrint('TTS speak failed, retrying...');
|
||||
await _flutterTts?.stop();
|
||||
_flutterTts = null;
|
||||
_isInitialized = false;
|
||||
await Future.delayed(const Duration(milliseconds: 500));
|
||||
}
|
||||
}
|
||||
debugPrint('Failed to speak after $maxRetries retries.');
|
||||
}
|
||||
|
||||
void dispose() {
|
||||
_flutterTts?.stop();
|
||||
_flutterTts = null;
|
||||
_isInitialized = false;
|
||||
}
|
||||
}
|
||||
@@ -26,7 +26,6 @@ class VocabDeckRepository {
|
||||
}, conflictAlgorithm: ConflictAlgorithm.replace);
|
||||
}
|
||||
|
||||
|
||||
Future<String?> loadApiKey() async {
|
||||
String? envApiKey;
|
||||
try {
|
||||
@@ -68,10 +67,29 @@ class VocabDeckRepository {
|
||||
),
|
||||
srsStage: r['srsStage'] as int,
|
||||
lastAsked: DateTime.parse(r['lastAsked'] as String),
|
||||
disabled: (r['disabled'] as int? ?? 0) == 1,
|
||||
);
|
||||
}).toList();
|
||||
}
|
||||
|
||||
Future<void> updateSrsItems(List<SrsItem> items) async {
|
||||
final db = await DatabaseHelper().db;
|
||||
final batch = db.batch();
|
||||
for (final item in items) {
|
||||
batch.update(
|
||||
'srs_vocab_items',
|
||||
{
|
||||
'srsStage': item.srsStage,
|
||||
'lastAsked': item.lastAsked.toIso8601String(),
|
||||
'disabled': item.disabled ? 1 : 0,
|
||||
},
|
||||
where: 'vocabId = ? AND quizMode = ?',
|
||||
whereArgs: [item.subjectId, item.quizMode.toString()],
|
||||
);
|
||||
}
|
||||
await batch.commit(noResult: true);
|
||||
}
|
||||
|
||||
Future<void> updateVocabSrsItem(SrsItem item) async {
|
||||
final db = await DatabaseHelper().db;
|
||||
await db.update(
|
||||
@@ -79,6 +97,7 @@ class VocabDeckRepository {
|
||||
{
|
||||
'srsStage': item.srsStage,
|
||||
'lastAsked': item.lastAsked.toIso8601String(),
|
||||
'disabled': item.disabled ? 1 : 0,
|
||||
},
|
||||
where: 'vocabId = ? AND quizMode = ?',
|
||||
whereArgs: [item.subjectId, item.quizMode.toString()],
|
||||
@@ -92,6 +111,7 @@ class VocabDeckRepository {
|
||||
'quizMode': item.quizMode.toString(),
|
||||
'srsStage': item.srsStage,
|
||||
'lastAsked': item.lastAsked.toIso8601String(),
|
||||
'disabled': item.disabled ? 1 : 0,
|
||||
}, conflictAlgorithm: ConflictAlgorithm.replace);
|
||||
}
|
||||
|
||||
|
||||
@@ -38,7 +38,8 @@ extension CustomTheme on ThemeData {
|
||||
level8: Color(0xFF4FC3F7), // light blue
|
||||
level9: Color(0xFF7986CB), // indigo
|
||||
);
|
||||
} else if (colorScheme.primary == const Color(0xFF7B6D53)) { // Nier theme
|
||||
} else if (colorScheme.primary == const Color(0xFF7B6D53)) {
|
||||
// Nier theme
|
||||
return const SrsColors(
|
||||
level1: Color(0xFFB71C1C), // dark red
|
||||
level2: Color(0xFFD84315), // deep orange
|
||||
@@ -50,7 +51,8 @@ extension CustomTheme on ThemeData {
|
||||
level8: Color(0xFF0277BD), // light blue
|
||||
level9: Color(0xFF283593), // indigo
|
||||
);
|
||||
} else { // Light theme
|
||||
} else {
|
||||
// Light theme
|
||||
return const SrsColors(
|
||||
level1: Colors.red,
|
||||
level2: Colors.orange,
|
||||
|
||||
@@ -19,13 +19,19 @@ class KanjiCard extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final theme = Theme.of(context);
|
||||
final bgColor = backgroundColor ?? theme.cardTheme.color ?? theme.colorScheme.surface;
|
||||
final fgColor = textColor ?? theme.textTheme.bodyMedium?.color ?? theme.colorScheme.onSurface;
|
||||
final bgColor =
|
||||
backgroundColor ?? theme.cardTheme.color ?? theme.colorScheme.surface;
|
||||
final fgColor =
|
||||
textColor ??
|
||||
theme.textTheme.bodyMedium?.color ??
|
||||
theme.colorScheme.onSurface;
|
||||
|
||||
return Card(
|
||||
elevation: theme.cardTheme.elevation ?? 12,
|
||||
color: bgColor,
|
||||
shape: theme.cardTheme.shape ?? RoundedRectangleBorder(borderRadius: BorderRadius.circular(16)),
|
||||
shape:
|
||||
theme.cardTheme.shape ??
|
||||
RoundedRectangleBorder(borderRadius: BorderRadius.circular(16)),
|
||||
child: SizedBox(
|
||||
width: 360,
|
||||
height: 240,
|
||||
|
||||
@@ -39,20 +39,24 @@ class OptionsGrid extends StatelessWidget {
|
||||
Color currentTextColor = fg;
|
||||
|
||||
if (showResult) {
|
||||
if (correctAnswers != null && correctAnswers!.contains(o)) {
|
||||
final normalizedOption = o.trim().toLowerCase();
|
||||
if (correctAnswers != null &&
|
||||
correctAnswers!
|
||||
.map((e) => e.trim().toLowerCase())
|
||||
.contains(normalizedOption)) {
|
||||
currentButtonColor = theme.colorScheme.tertiary;
|
||||
} else if (o == selectedOption) {
|
||||
currentButtonColor = theme.colorScheme.error;
|
||||
}
|
||||
}
|
||||
|
||||
return SizedBox(
|
||||
width: 160,
|
||||
child: ElevatedButton(
|
||||
onPressed: isDisabled ? null : () => onSelected(o),
|
||||
onPressed: isDisabled || o == '---' ? null : () => onSelected(o),
|
||||
style: ElevatedButton.styleFrom(
|
||||
backgroundColor: currentButtonColor,
|
||||
foregroundColor: currentTextColor,
|
||||
disabledBackgroundColor:
|
||||
theme.colorScheme.surfaceContainerHighest,
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
),
|
||||
@@ -60,7 +64,9 @@ class OptionsGrid extends StatelessWidget {
|
||||
),
|
||||
child: Text(
|
||||
o,
|
||||
style: theme.textTheme.titleMedium?.copyWith(color: currentTextColor),
|
||||
style: theme.textTheme.titleMedium?.copyWith(
|
||||
color: currentTextColor,
|
||||
),
|
||||
textAlign: TextAlign.center,
|
||||
),
|
||||
),
|
||||
@@ -68,4 +74,4 @@ class OptionsGrid extends StatelessWidget {
|
||||
}).toList(),
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -34,4 +34,5 @@ flutter_icons:
|
||||
flutter:
|
||||
uses-material-design: true
|
||||
assets:
|
||||
- assets/sfx/confirm.mp3
|
||||
- assets/sfx/correct.wav
|
||||
- assets/sfx/incorrect.wav
|
||||
Reference in New Issue
Block a user