WIP lk select dialog

This commit is contained in:
Elias Müller 2024-03-29 17:29:31 +01:00
parent 6237a2e9cf
commit 25d901d093
13 changed files with 283 additions and 140 deletions

View File

@ -29,6 +29,7 @@ import 'storage/base/settingsProvider.dart';
import 'theming/darkAppTheme.dart'; import 'theming/darkAppTheme.dart';
import 'theming/lightAppTheme.dart'; import 'theming/lightAppTheme.dart';
import 'view/login/login.dart'; import 'view/login/login.dart';
import 'view/pages/more/abiturCalculator/models/abiturCalculatorModel.dart';
import 'widget/placeholderView.dart'; import 'widget/placeholderView.dart';
Future<void> main() async { Future<void> main() async {
@ -68,6 +69,8 @@ Future<void> main() async {
ChangeNotifierProvider(create: (context) => MessageProps()), ChangeNotifierProvider(create: (context) => MessageProps()),
ChangeNotifierProvider(create: (context) => HolidaysProps()), ChangeNotifierProvider(create: (context) => HolidaysProps()),
ChangeNotifierProvider(create: (context) => AbiturCalculatorModel()),
], ],
child: const Main(), child: const Main(),
) )

View File

@ -0,0 +1,74 @@
import 'package:flutter/material.dart';
import 'package:marianum_mobile/view/pages/more/abiturCalculator/models/abiturCalculatorModel.dart';
import 'package:marianum_mobile/view/pages/more/abiturCalculator/models/subject.dart';
import 'package:marianum_mobile/view/pages/more/abiturCalculator/steps/resultStep.dart';
import 'package:marianum_mobile/view/pages/more/abiturCalculator/steps/selectGkStep.dart';
import 'package:marianum_mobile/view/pages/more/abiturCalculator/steps/selectLkStep.dart';
import 'package:marianum_mobile/view/pages/more/abiturCalculator/steps/selectPfStep.dart';
import 'package:marianum_mobile/view/pages/more/abiturCalculator/steps/welcomeStep.dart';
import 'package:provider/provider.dart';
class AbiturCalculatorView extends StatelessWidget {
const AbiturCalculatorView({super.key});
static RichText listSubjects(List<Subject> subjects) {
return RichText(
textAlign: TextAlign.center,
text: TextSpan(
children: subjects.map((subject) {
return List<InlineSpan>.from([
WidgetSpan(child: Icon(subject.icon, size: 15)),
const WidgetSpan(child: SizedBox(width: 3)),
TextSpan(text: subject.displayName),
if(subjects.last != subject) const WidgetSpan(child: SizedBox(width: 10)),
]);
}).expand((e) => e).toList(),
),
);
}
@override
Widget build(BuildContext context) {
return Consumer<AbiturCalculatorModel>(builder: (context, state, child) {
return Scaffold(
appBar: AppBar(
title: const Text("Abitur Notenrechner"),
),
body: Stepper(
type: StepperType.vertical,
steps: [
const WelcomeStep(),
SelectLkStep(),
SelectGkStep(),
SelectPfStep(),
const ResultStep(),
],
currentStep: state.getStep,
onStepTapped: (step) => state.setStep = step,
stepIconBuilder: (stepIndex, stepState) => _stepIconBuilder(context, stepIndex, stepState),
controlsBuilder: _controlsBuilder,
)
);
});
}
Widget _stepIconBuilder(BuildContext context, int stepIndex, StepState stepState) {
return Consumer<AbiturCalculatorModel>(builder: (context, state, child) {
return Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
color: state.getStep == stepIndex
? Theme.of(context).primaryColor
: Theme.of(context).colorScheme.surface,
),
child: Center(
child: Text((++stepIndex).toString()),
),
);
});
}
Widget _controlsBuilder(BuildContext context, details) {
return const Row(children: [SizedBox.shrink()]);
}
}

View File

@ -0,0 +1,56 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'subject.dart';
class AbiturCalculatorModel extends ChangeNotifier {
static SubjectCollection subjects = SubjectCollection([
Subject(displayName: "Deutsch", icon: Icons.translate_outlined, lkApplicable: true),
Subject(displayName: "Erste Fremdsprache", icon: Icons.translate_outlined, lkApplicable: true),
Subject(displayName: "Zweite Fremdsprache", icon: Icons.translate_outlined, lkApplicable: true),
Subject(displayName: "Zweite Fremdsprache ab Kl. 11", icon: Icons.translate_outlined, lkApplicable: false),
Subject(displayName: "Kunst", icon: Icons.brush_outlined, lkApplicable: true),
Subject(displayName: "Musik", icon: Icons.music_note_outlined, lkApplicable: true),
Subject(displayName: "Darstellendes Spiel", icon: Icons.theater_comedy_outlined, lkApplicable: false),
Subject(displayName: "PoWi", icon: Icons.book_outlined, lkApplicable: true),
Subject(displayName: "Geschichte", icon: Icons.history_outlined, lkApplicable: true),
Subject(displayName: "Religion", icon: Icons.church_outlined, lkApplicable: true),
Subject(displayName: "Erdkunde", icon: Icons.map_outlined, lkApplicable: true),
Subject(displayName: "Mathematik", icon: Icons.calculate_outlined, lkApplicable: true),
Subject(displayName: "Erste Naturwissenschaft", icon: Icons.science_outlined, lkApplicable: true),
Subject(displayName: "Zweite Naturwissenschaft", icon: Icons.science_outlined, lkApplicable: true),
Subject(displayName: "Dritte Naturwissenschaft", icon: Icons.science_outlined, lkApplicable: true),
Subject(displayName: "Biochemie", icon: Icons.biotech_outlined, lkApplicable: false),
Subject(displayName: "Informatik", icon: Icons.code_outlined, lkApplicable: true),
Subject(displayName: "Sport", icon: Icons.sports_basketball_outlined, lkApplicable: true),
]);
static AbiturCalculatorModel get(BuildContext context) {
return Provider.of<AbiturCalculatorModel>(context, listen: false);
}
late SubjectCollection _collection;
int _currentStep = 0;
SubjectCollection get getSubjects => _collection;
void updateSubjects(void Function(SubjectCollection collection) callback) {
callback(_collection);
notifyListeners();
}
int get getStep => _currentStep;
set setStep(int step) {
_currentStep = step;
notifyListeners();
}
void reset() {
_currentStep = 0;
_collection = subjects;
notifyListeners();
}
AbiturCalculatorModel() {
reset();
}
}

View File

@ -1,5 +1,5 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:marianum_mobile/widget/centeredLeading.dart';
enum SubjectState { enum SubjectState {
none, none,
@ -13,36 +13,30 @@ class HighEduGraduationConstants {
} }
class SubjectCollection { class SubjectCollection {
List<Subject> subjects; List<Subject> collection;
SubjectCollection(this.subjects); SubjectCollection(this.collection);
} }
class Subject { class Subject {
String displayName; String displayName;
IconData icon;
bool lkApplicable; bool lkApplicable;
SubjectState _subjectState = SubjectState.none; SubjectState _subjectState = SubjectState.none;
bool isLk() => _subjectState == SubjectState.isLk; bool isLk() => _subjectState == SubjectState.isLk;
bool isGk() => _subjectState == SubjectState.isGk; bool isGk() => _subjectState == SubjectState.isGk;
bool canLk(List<Subject> other) => lkApplicable && other.where((s) => s.isLk()).length < HighEduGraduationConstants.maxLks; bool canLk(List<Subject> other) => lkApplicable && !isGk() && other.where((s) => s.isLk()).length < HighEduGraduationConstants.maxLks;
bool canGk(List<Subject> other) => !isLk() && other.where((s) => s.isGk()).length < HighEduGraduationConstants.maxGks; bool canGk(List<Subject> other) => !isLk() && other.where((s) => s.isGk()).length < HighEduGraduationConstants.maxGks;
set unsafeSubjectSet(SubjectState newState) => _subjectState = newState; set unsafeSubjectSet(SubjectState newState) => _subjectState = newState;
set unsafeLkToggle(bool isLk) { set unsafeLkToggle(bool isLk) {
_subjectState = isLk ? SubjectState.isLk : SubjectState.none; _subjectState = isLk ? SubjectState.isLk : SubjectState.none;
} }
set unsafeGkToggle(bool isGk) {
_subjectState = isGk ? SubjectState.isGk : SubjectState.none;
}
ListTile get asTile => ListTile( Subject({required this.displayName, required this.icon, required this.lkApplicable});
leading: const CenteredLeading(Icon(Icons.subject_outlined)),
title: Text(displayName),
trailing: Checkbox(
value: isGk(),
onChanged: (e) => {},
),
);
Subject({required this.displayName, required this.lkApplicable});
} }

View File

@ -0,0 +1,8 @@
import 'package:flutter/material.dart';
class ResultStep extends Step {
const ResultStep() : super(
title: const Text("Ergebnis"),
content: const SizedBox.shrink(),
);
}

View File

@ -0,0 +1,29 @@
import 'package:flutter/material.dart';
import 'package:marianum_mobile/view/pages/more/abiturCalculator/abiturCalculatorView.dart';
import '../models/abiturCalculatorModel.dart';
class SelectGkStep extends Step {
SelectGkStep() : super(
title: const Text("Grundkurse"),
content: Builder(builder: (context) {
var gkSubjects = AbiturCalculatorModel.get(context).getSubjects.collection.where((e) => e.isGk()).toList();
return Column(
children: [
AbiturCalculatorView.listSubjects(gkSubjects),
TextButton(
onPressed: () {
// showDialog(
// context: context,
// barrierDismissible: false,
// builder: (context) => const SelectGkDialog(),
// );
},
child: Text(
"Grundkurse ${gkSubjects.isEmpty ? "auswählen" : "ändern"}"),
),
],
);
}),
);
}

View File

@ -0,0 +1,66 @@
import 'package:flutter/material.dart';
import 'package:marianum_mobile/widget/providerBridge.dart';
import '../../../../../widget/centeredLeading.dart';
import '../abiturCalculatorView.dart';
import '../models/abiturCalculatorModel.dart';
class SelectLkStep extends Step {
SelectLkStep() : super(
title: const Text("Leistungskurse"),
content: StatefulBuilder(builder: (context, setState) {
var model = AbiturCalculatorModel.get(context);
var lkSubjects = model.getSubjects.collection.where((e) => e.isLk()).toList();
return Column(
children: [
AbiturCalculatorView.listSubjects(lkSubjects),
TextButton(
onPressed: () {
ProviderBridge.toDialog(context, model, (context, value) {
return AlertDialog(
title: const Text("Leistungskurse"),
content: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.min,
children: model.getSubjects.collection.map((e) {
return ListTile(
leading: CenteredLeading(Icon(e.icon)),
title: Text(e.displayName),
trailing: Checkbox(
value: e.isLk(),
onChanged: e.isLk() || e.canLk(model.getSubjects.collection) ? (value) {
model.updateSubjects((collection) {
e.unsafeLkToggle = value!;
});
} : null,
),
);
}).toList(),
),
),
actions: [
TextButton(
onPressed: () {
Navigator.of(context).pop();
},
child: const Text("Fertig"),
)
],
);
});
},
child: Text("Leistungskurse ${lkSubjects.isEmpty ? "auswählen" : "ändern"}"),
),
],
);
}),
);
}
class SelectLkStepTest extends StatelessWidget {
const SelectLkStepTest({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}

View File

@ -0,0 +1,8 @@
import 'package:flutter/material.dart';
class SelectPfStep extends Step {
const SelectPfStep() : super(
title: const Text("Prüfungsfächer"),
content: const SizedBox.shrink(),
);
}

View File

@ -0,0 +1,8 @@
import 'package:flutter/material.dart';
class WelcomeStep extends Step {
const WelcomeStep() : super(
title: const Text("Willkommen"),
content: const Text("In den folgenden Schritten werden alle nötigen Informationen zur Ermittlung deiner Abiturzulassung abgefragt.")
);
}

View File

@ -1,75 +0,0 @@
import 'package:flutter/material.dart';
import 'package:marianum_mobile/view/pages/more/highEduGraduationCalculator/models/subject.dart';
import 'package:marianum_mobile/view/pages/more/highEduGraduationCalculator/selectLkView.dart';
class HighEduGraduationCalculator extends StatefulWidget {
const HighEduGraduationCalculator({super.key});
@override
State<HighEduGraduationCalculator> createState() => _HighEduGraduationCalculatorState();
}
class _HighEduGraduationCalculatorState extends State<HighEduGraduationCalculator> {
SubjectCollection allSubjects = SubjectCollection([
Subject(displayName: "Mathe", lkApplicable: true),
Subject(displayName: "Physik", lkApplicable: true),
Subject(displayName: "Chemie", lkApplicable: true),
Subject(displayName: "Biologie", lkApplicable: true),
Subject(displayName: "Englisch", lkApplicable: true),
Subject(displayName: "Latein", lkApplicable: true),
]);
SubjectCollection? lkSubjects;
int currentStep = 0;
List<Step> steps() => [
Step(title: const Text("Willkommen"), content: Text("test")),
Step(title: const Text("Leistungskurse wählen"), content: lkSubjectsStep()),
const Step(title: Text("Grundkurse wählen"), content: Text("Test")),
const Step(title: Text("Prüfungsfächer wählen"), content: Text("Test")),
const Step(title: Text("Ergebnis auswerten"), content: Text("Test")),
];
Widget lkSubjectsStep() {
return Column(
children: [
Text(lkSubjects?.subjects.where((e) => e.isLk()).map((e) => e.displayName).join(", ") ?? "Keine Auswahl"),
TextButton(
onPressed: () {
showDialog(context: context, builder: (context) => SelectLkView(all: allSubjects, update: () => setState(() => { })));
},
child: const Text("Ändern"),
),
],
);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Abitur Notenrechner"),
),
body: Stepper(
type: StepperType.vertical,
steps: steps(),
currentStep: currentStep,
onStepContinue: () {
setState(() {
currentStep++;
});
},
controlsBuilder: (context, details) {
return Row(
children: [
TextButton(
onPressed: () => details.onStepContinue,
child: const Text("Weiter"),
)
],
);
},
)
);
}
}

View File

@ -1,47 +0,0 @@
import 'package:flutter/material.dart';
import 'package:marianum_mobile/view/pages/more/highEduGraduationCalculator/models/subject.dart';
import 'package:marianum_mobile/widget/centeredLeading.dart';
class SelectLkView extends StatefulWidget {
final SubjectCollection all;
final void Function() update;
const SelectLkView({required this.all, required this.update, super.key});
@override
State<SelectLkView> createState() => _SelectLkViewState();
}
class _SelectLkViewState extends State<SelectLkView> {
@override
Widget build(BuildContext context) {
return AlertDialog(
title: const Text("Leistungskurse"),
content: Column(
mainAxisSize: MainAxisSize.min,
children: widget.all.subjects.map((e) {
return ListTile(
leading: const CenteredLeading(Icon(Icons.subject_outlined)),
title: Text(e.displayName),
trailing: Checkbox(
value: e.isLk(),
onChanged: e.isLk() || e.canLk(widget.all.subjects) ? (value) {
setState(() {
e.unsafeLkToggle = value!;
});
} : null,
),
);
}).toList(),
),
actions: [
TextButton(
onPressed: () {
widget.update();
Navigator.of(context).pop();
},
child: const Text("Fertig"),
)
],
);
}
}

View File

@ -4,13 +4,13 @@ import 'dart:io';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:in_app_review/in_app_review.dart'; import 'package:in_app_review/in_app_review.dart';
import 'package:marianum_mobile/extensions/renderNotNull.dart'; import 'package:marianum_mobile/extensions/renderNotNull.dart';
import 'package:marianum_mobile/view/pages/more/highEduGraduationCalculator/highEduGraduationCalculator.dart'; import 'package:persistent_bottom_nav_bar_v2/persistent_bottom_nav_bar_v2.dart';
import 'package:persistent_bottom_nav_bar_v2/persistent-tab-view.dart';
import '../../widget/ListItem.dart'; import '../../widget/ListItem.dart';
import '../../widget/centeredLeading.dart'; import '../../widget/centeredLeading.dart';
import '../../widget/infoDialog.dart'; import '../../widget/infoDialog.dart';
import '../settings/settings.dart'; import '../settings/settings.dart';
import 'more/abiturCalculator/abiturCalculatorView.dart';
import 'more/feedback/feedbackDialog.dart'; import 'more/feedback/feedbackDialog.dart';
import 'more/gradeAverages/gradeAverage.dart'; import 'more/gradeAverages/gradeAverage.dart';
import 'more/holidays/holidays.dart'; import 'more/holidays/holidays.dart';
@ -36,7 +36,7 @@ class Overhang extends StatelessWidget {
const ListItemNavigator(icon: Icons.newspaper, text: "Marianum Message", target: Message()), const ListItemNavigator(icon: Icons.newspaper, text: "Marianum Message", target: Message()),
const ListItemNavigator(icon: Icons.room, text: "Raumplan", target: Roomplan()), const ListItemNavigator(icon: Icons.room, text: "Raumplan", target: Roomplan()),
const ListItemNavigator(icon: Icons.calculate, text: "Notendurschnittsrechner", target: GradeAverage()), const ListItemNavigator(icon: Icons.calculate, text: "Notendurschnittsrechner", target: GradeAverage()),
const ListItemNavigator(icon: Icons.backup_table_outlined, text: "Abirechner", target: HighEduGraduationCalculator()), const ListItemNavigator(icon: Icons.school_outlined, text: "Abiturrechner", target: AbiturCalculatorView()),
const ListItemNavigator(icon: Icons.calendar_month, text: "Schulferien", target: Holidays()), const ListItemNavigator(icon: Icons.calendar_month, text: "Schulferien", target: Holidays()),
const Divider(), const Divider(),
ListTile( ListTile(

View File

@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
class ProviderBridge {
static void toDialog<T extends ChangeNotifier>(BuildContext context, T data, Widget Function(BuildContext context, T value) builder) {
showDialog(
context: context,
builder: (context) {
return ChangeNotifierProvider.value(
value: data,
builder: (context, child) {
return Consumer<T>(builder: (context, value, child) => builder(context, value));
},
);
},
);
}
}