Compare commits

..

No commits in common. "c38305d38c19d61dc413f21f621a7cc968f7b0c7" and "62019663605cc6a52a32c58432358bd831a3f8f5" have entirely different histories.

3 changed files with 72 additions and 242 deletions

View file

@ -1,38 +0,0 @@
{
"name": "example",
"questions": [
{
"quest": "Q1",
"answers": [
"A",
"B",
"C",
"D"
],
"correct": 0,
"explanation": "not close"
},
{
"quest": "Q2",
"answers": [
"A",
"B",
"C",
"D"
],
"correct": 0,
"explanation": "not close"
},
{
"quest": "Q3",
"answers": [
"A",
"B",
"C",
"D"
],
"correct": 0,
"explanation": "not close"
}
]
}

View file

@ -3,69 +3,46 @@ import 'package:ju_learn/main.dart';
class QuizPage extends StatefulWidget { class QuizPage extends StatefulWidget {
Vault v; Vault v;
Function saveState; QuizPage(this.v, {super.key});
QuizPage(this.v, this.saveState, {super.key});
@override @override
// ignore: no_logic_in_create_state, library_private_types_in_public_api // ignore: no_logic_in_create_state, library_private_types_in_public_api
_QuizPageState createState() => _QuizPageState(v, saveState); _QuizPageState createState() {
v.randomize();
return _QuizPageState(v);
}
} }
class _QuizPageState extends State<QuizPage> { class _QuizPageState extends State<QuizPage> {
int run = 0; int _currentQuestionIndex = 0;
Question _currentQuestion = Question("Dummy", ["Dummy aws"], 0, "dummy"); int ask_state = -1;
int askState = -1; int _score = 0;
Vault v; Vault v;
Function saveState; _QuizPageState(this.v);
_QuizPageState(this.v, this.saveState) {
_currentQuestion.drawer = 0x0fffffff;
v.softReset();
_nextQuestion();
}
void _checkAnswer(int selectedIndex) { void _checkAnswer(int selectedIndex) {
if (selectedIndex == _currentQuestion.correct) { //if (selectedIndex == v.questions[_currentQuestionIndex].correct) {
_currentQuestion.drawer++; // setState(() {
} else { // _score++;
_currentQuestion.drawer = 0; // });
} //}
_currentQuestion.lastInRun = run;
saveState();
setState(() { setState(() {
askState = selectedIndex; ask_state = selectedIndex;
}); });
} }
void _nextQuestion() { void _nextQuestion() {
Question lowestQ = _currentQuestion;
for (var a in v.questions) {
if (a == _currentQuestion) continue;
int i = a.drawer - lowestQ.drawer;
if (i > 1) {
continue;
}
if (i < -1) {
lowestQ = a;
continue;
}
if ((run - a.lastInRun - 10).abs() -
(run - lowestQ.lastInRun - 10).abs() <
0) {
lowestQ = a;
}
}
if (mounted) {
setState(() { setState(() {
_currentQuestion = lowestQ; if (_currentQuestionIndex < v.questions.length - 1) {
askState = -1; ask_state = -1;
}); _currentQuestionIndex++;
} else { } else {
_currentQuestion = lowestQ; _showResultDialog();
} }
run++; });
} }
/*void _showResultDialog() { void _showResultDialog() {
showDialog( showDialog(
context: context, context: context,
builder: (BuildContext context) { builder: (BuildContext context) {
@ -87,7 +64,7 @@ class _QuizPageState extends State<QuizPage> {
); );
}, },
); );
}*/ }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
@ -101,38 +78,40 @@ class _QuizPageState extends State<QuizPage> {
crossAxisAlignment: CrossAxisAlignment.stretch, crossAxisAlignment: CrossAxisAlignment.stretch,
children: [ children: [
Text( Text(
_currentQuestion.quest, v.questions[_currentQuestionIndex].quest,
style: const TextStyle( style: const TextStyle(
fontSize: 20.0, fontSize: 20.0,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
), ),
), ),
const SizedBox(height: 20.0), const SizedBox(height: 20.0),
..._currentQuestion.answers.map( ...v.questions[_currentQuestionIndex].answers.map(
(option) { (option) {
return Container( return Container(
margin: const EdgeInsets.symmetric(vertical: 8.0), margin: const EdgeInsets.symmetric(vertical: 8.0),
child: FilledButton( child: FilledButton(
onPressed: () => askState == -1 onPressed: () => ask_state == -1
? _checkAnswer( ? _checkAnswer(
_currentQuestion.answers.indexOf(option), v.questions[_currentQuestionIndex].answers
.indexOf(option),
) )
: _nextQuestion(), : _nextQuestion(),
style: FilledButton.styleFrom( style: FilledButton.styleFrom(
padding: const EdgeInsets.all(16.0), padding: const EdgeInsets.all(16.0),
backgroundColor: askState == -1 backgroundColor: ask_state == -1
? null ? null
: (_currentQuestion.correct == : (v.questions[_currentQuestionIndex].correct ==
_currentQuestion.answers.indexOf(option) v.questions[_currentQuestionIndex].answers
.indexOf(option)
? Colors.green ? Colors.green
: Colors.red), : Colors.red),
), ),
child: Text(option))); child: Text(option)));
}, },
), ),
if (askState != -1) if (ask_state != -1)
Text( Text(
_currentQuestion.explanation, v.questions[_currentQuestionIndex].explanation,
style: const TextStyle( style: const TextStyle(
fontSize: 15.0, fontSize: 15.0,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,

View file

@ -28,37 +28,21 @@ class MainPage extends StatefulWidget {
const MainPage({super.key}); const MainPage({super.key});
@override @override
MainPageState createState() => MainPageState(); _MainPageState createState() => _MainPageState();
} }
class MainPageState extends State<MainPage> { class _MainPageState extends State<MainPage> {
List<Vault> _vaults = []; List<Vault> _vaults = [];
MainPageState() { _MainPageState() {
loadList(); loadList();
} }
Vault? getByName(String name) {
for (var v in _vaults) {
if (v.name == name) return v;
}
return null;
}
loadList() async { loadList() async {
final prefs = await SharedPreferences.getInstance(); final prefs = await SharedPreferences.getInstance();
List<String>? json = prefs.getStringList("vaults"); List<String>? json = prefs.getStringList("vaults");
List<String>? jsonState = prefs.getStringList("vaultStates");
if (json == null) return; if (json == null) return;
setState(() { setState(() {
_vaults = json.map((e) => Vault.fromJson(jsonDecode(e))).toList(); _vaults = json.map((e) => Vault.fromJson(jsonDecode(e))).toList();
}); });
if (jsonState == null) return;
for (var s in jsonState) {
var sMap = jsonDecode(s);
Vault? v = getByName(sMap["name"]);
if (v == null) continue;
v.loadState(sMap);
}
} }
saveList() async { saveList() async {
@ -67,73 +51,13 @@ class MainPageState extends State<MainPage> {
"vaults", _vaults.map((e) => jsonEncode(e.toJson())).toList()); "vaults", _vaults.map((e) => jsonEncode(e.toJson())).toList());
} }
saveStateList() async { askToDeleteVault(Vault v) async {
final prefs = await SharedPreferences.getInstance();
prefs.setStringList("vaultStates",
_vaults.map((e) => jsonEncode(e.toStateJson())).toList());
}
_vaultMenu(Vault v) async {
showModalBottomSheet(
context: context,
builder: (context) => BottomSheet(
builder: (context) => Column(children: [
Padding(
padding: const EdgeInsets.all(8),
child: Text(v.name,
style: const TextStyle(
fontSize: 20.0,
fontWeight: FontWeight.bold,
))),
ListTile(
leading: const Icon(Icons.restore),
title: const Text("Reset Vault"),
subtitle: const Text("Reset Vault learn Data to default."),
trailing: const Icon(Icons.chevron_right),
onTap: () {
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: const Text('Reset Vault'),
content:
Text('Do you want to reset „${v.name}“ Vault?'),
actions: [
TextButton(
child: const Text('Reset'),
onPressed: () {
setState(() {
v.reset();
});
saveStateList();
Navigator.of(context).pop();
Navigator.of(context).pop();
},
),
TextButton(
onPressed: () {
Navigator.of(context).pop();
},
child: const Text('Cancle'))
],
);
},
);
},
),
ListTile(
leading: const Icon(Icons.delete),
title: const Text("Vault löschen"),
subtitle: Text('Do you want to delete „${v.name}“ Vault?'),
trailing: const Icon(Icons.chevron_right),
onTap: () async {
showDialog( showDialog(
context: context, context: context,
builder: (BuildContext context) { builder: (BuildContext context) {
return AlertDialog( return AlertDialog(
title: const Text('Delete Vault'), title: const Text('Delete Vault'),
content: Text( content: Text('Do you want to delete „${v.name}“ Vault?'),
'Do you want to delete „${v.name}“ Vault?'),
actions: [ actions: [
TextButton( TextButton(
child: const Text('Delete'), child: const Text('Delete'),
@ -142,8 +66,6 @@ class MainPageState extends State<MainPage> {
_vaults.remove(v); _vaults.remove(v);
}); });
saveList(); saveList();
saveStateList();
Navigator.of(context).pop();
Navigator.of(context).pop(); Navigator.of(context).pop();
}, },
), ),
@ -156,10 +78,6 @@ class MainPageState extends State<MainPage> {
); );
}, },
); );
})
]),
onClosing: () {},
));
} }
_pickFile() async { _pickFile() async {
@ -177,8 +95,9 @@ class MainPageState extends State<MainPage> {
}); });
saveList(); saveList();
} catch (e) { } catch (e) {
if (kDebugMode) {
print(e); print(e);
}
AlertDialog( AlertDialog(
title: const Text('Error'), title: const Text('Error'),
content: const Text('An error has occurred.'), content: const Text('An error has occurred.'),
@ -195,8 +114,6 @@ class MainPageState extends State<MainPage> {
} }
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
@ -213,11 +130,11 @@ class MainPageState extends State<MainPage> {
onPressed: () { onPressed: () {
Navigator.push( Navigator.push(
context, context,
MaterialPageRoute(builder: (context) => QuizPage(e, saveStateList)), MaterialPageRoute(builder: (context) => QuizPage(e)),
); );
}, },
onLongPress: () { onLongPress: () {
_vaultMenu(e); askToDeleteVault(e);
}, },
child: Text(e.name), child: Text(e.name),
))) )))
@ -236,8 +153,6 @@ class Question {
List<String> answers; List<String> answers;
int correct; int correct;
String explanation; String explanation;
int drawer = 0;
int lastInRun = 0;
Question(this.quest, this.answers, this.correct, this.explanation); Question(this.quest, this.answers, this.correct, this.explanation);
@ -286,21 +201,8 @@ class Vault {
}; };
} }
Map<String, dynamic> toStateJson() { void randomize() {
return {"name": name, "drawers": questions.map((d) => d.drawer).toList()}; questions.shuffle(Random());
}
void reset() {
for (var q in questions) {
q.drawer = 0;
q.lastInRun = 0;
}
}
void softReset() {
for (var q in questions) {
q.lastInRun = 0;
}
} }
factory Vault.fromJson(Map<String, dynamic> json) { factory Vault.fromJson(Map<String, dynamic> json) {
@ -317,17 +219,4 @@ class Vault {
.toList(), .toList(),
); );
} }
loadState(Map<String, dynamic> json) {
if (json["name"] != name) throw ErrorDescription("Wrong Vault Error");
if (json["drawers"] is! List<dynamic>) {
throw ErrorDescription("fromJSON Error: questions");
}
var stateList = json["drawers"];
for (var i = 0; i < stateList.length; i++) {
var q = questions.elementAtOrNull(i);
if (q != null) {
q.drawer = stateList[i] as int;
}
}
}
} }