-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor/exams page #818
Closed
Closed
Refactor/exams page #818
Changes from 3 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
d3e75bb
Refactor exams page
rubuy-74 d010780
Merge branch 'develop' into refactor/exams-page
rubuy-74 53da109
Change the filtered exams list state globally
rubuy-74 7f304dc
Change filteredExamTypes type
rubuy-74 039eb19
Merge branch 'develop' into refactor/exams-page
bdmendes 89192c6
Extract exam provider updates
bdmendes 9a8e989
Merge branch 'develop' into refactor/exams-page
rubuy-74 7ccf9a5
Merge branch 'develop' into refactor/exams-page
rubuy-74 6acbca6
Merge branch 'develop' into refactor/exams-page
rubuy-74 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,25 @@ import 'package:uni/model/providers/lazy/exam_provider.dart'; | |
|
||
class ExamFilterForm extends StatefulWidget { | ||
const ExamFilterForm(this.filteredExamsTypes, {super.key}); | ||
|
||
final Map<String, bool> filteredExamsTypes; | ||
|
||
Map<String, bool> get filteredExamTypes => | ||
Map<String, bool>.from(filteredExamsTypes) | ||
..removeWhere((key, value) => !Exam.types.containsKey(key)); | ||
|
||
@override | ||
ExamFilterFormState createState() => ExamFilterFormState(); | ||
} | ||
|
||
class ExamFilterFormState extends State<ExamFilterForm> { | ||
void _changeFilteredExamList(String key, {bool? value}) { | ||
setState(() { | ||
widget.filteredExamsTypes[key] = value!; | ||
Provider.of<ExamProvider>(context, listen: false) | ||
.setFilteredExams(widget.filteredExamsTypes); | ||
}); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You seem to still be modifying the widget prop. Perhaps I could be of help sometime in the next few days so that you get what I was saying? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay. |
||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return AlertDialog( | ||
|
@@ -36,21 +47,34 @@ class ExamFilterFormState extends State<ExamFilterForm> { | |
.setFilteredExams(widget.filteredExamsTypes); | ||
Navigator.pop(context); | ||
}, | ||
) | ||
), | ||
], | ||
content: SizedBox( | ||
height: 230, | ||
width: 200, | ||
child: getExamCheckboxes(widget.filteredExamsTypes, context), | ||
child: FilteredExamList( | ||
widget.filteredExamsTypes, | ||
_changeFilteredExamList, | ||
context, | ||
), | ||
), | ||
); | ||
} | ||
} | ||
|
||
class FilteredExamList extends StatelessWidget { | ||
const FilteredExamList( | ||
this.filteredExams, | ||
this.changeFilteredExamList, | ||
this.context, { | ||
super.key, | ||
}); | ||
final Map<String, bool> filteredExams; | ||
final void Function(String, {bool? value}) changeFilteredExamList; | ||
final BuildContext context; | ||
|
||
Widget getExamCheckboxes( | ||
Map<String, bool> filteredExams, | ||
BuildContext context, | ||
) { | ||
filteredExams.removeWhere((key, value) => !Exam.types.containsKey(key)); | ||
@override | ||
Widget build(BuildContext context) { | ||
return ListView( | ||
children: List.generate(filteredExams.length, (i) { | ||
final key = filteredExams.keys.elementAt(i); | ||
|
@@ -65,11 +89,7 @@ class ExamFilterFormState extends State<ExamFilterForm> { | |
), | ||
key: Key('ExamCheck$key'), | ||
value: filteredExams[key], | ||
onChanged: (value) { | ||
setState(() { | ||
filteredExams[key] = value!; | ||
}); | ||
}, | ||
onChanged: (value) => {changeFilteredExamList(key, value: value)}, | ||
); | ||
}), | ||
); | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now make this list an immutable view and create a local version of it in the state class.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't the widget.filteredExamTypes already a local version of the immutable view?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The widget is receiving a
Map
object that is a pointer to a collection of key-value structures probably on the heap. This means that it is mutable.Consider using UnmodifiableMapView from the
collections
package. This ensures that you need to create a copy of that map as a member of the state class, which is the best way to do it in my opinion.Tldr don't modify any widget prop in its lifecycle