@@ -4,7 +4,7 @@ import 'package:provider/provider.dart';
4
4
5
5
import '../../../authentication/service/auth_provider.dart' ;
6
6
import '../../../generated/l10n.dart' ;
7
- import '../../../resources/remote_config .dart' ;
7
+ import '../../../resources/utils .dart' ;
8
8
import '../../../widgets/class_icon.dart' ;
9
9
import '../../../widgets/error_page.dart' ;
10
10
import '../../../widgets/icon_text.dart' ;
@@ -34,9 +34,9 @@ class _ClassesPageState extends State<ClassesPage> {
34
34
}
35
35
36
36
final ClassProvider classProvider =
37
- Provider .of <ClassProvider >(context, listen: false );
37
+ Provider .of <ClassProvider >(context, listen: false );
38
38
final AuthProvider authProvider =
39
- Provider .of <AuthProvider >(context, listen: false );
39
+ Provider .of <AuthProvider >(context, listen: false );
40
40
headers =
41
41
(await classProvider.fetchClassHeaders (uid: authProvider.uid)).toSet ();
42
42
@@ -63,87 +63,100 @@ class _ClassesPageState extends State<ClassesPage> {
63
63
// TODO(IoanaAlexandru): Simply show all classes if user is not authenticated
64
64
needsToBeAuthenticated: true ,
65
65
actions: [
66
- if (RemoteConfigService .feedbackEnabled)
66
+ if (Utils .feedbackEnabled)
67
67
AppScaffoldAction (
68
68
icon: Icons .rate_review_outlined,
69
69
tooltip: S .current.navigationClassesFeedbackChecklist,
70
- onPressed: () => Navigator .of (context).push (
71
- MaterialPageRoute <ClassFeedbackChecklist >(
72
- builder: (_) => ClassFeedbackChecklist (classes: headers),
73
- ),
74
- ),
70
+ onPressed: () =>
71
+ Navigator .of (context).push (
72
+ MaterialPageRoute <ClassFeedbackChecklist >(
73
+ builder: (_) => ClassFeedbackChecklist (classes: headers),
74
+ ),
75
+ ),
75
76
),
76
77
AppScaffoldAction (
77
78
icon: Icons .edit_outlined,
78
79
tooltip: S .current.actionChooseClasses,
79
- onPressed: () => Navigator .of (context).push (
80
- MaterialPageRoute <ChangeNotifierProvider >(
81
- builder: (_) => ChangeNotifierProvider .value (
82
- value: classProvider,
83
- child: FutureBuilder (
84
- future: classProvider.fetchUserClassIds (authProvider.uid),
85
- builder: (context, snap) {
86
- if (snap.hasData) {
87
- return AddClassesPage (
88
- initialClassIds: snap.data,
89
- onSave: (classIds) async {
90
- await classProvider.setUserClassIds (
91
- classIds, authProvider.uid);
92
- unawaited (updateClasses ());
93
- if (! mounted) {
94
- return ;
80
+ onPressed: () =>
81
+ Navigator .of (context).push (
82
+ MaterialPageRoute <ChangeNotifierProvider >(
83
+ builder: (_) =>
84
+ ChangeNotifierProvider .value (
85
+ value: classProvider,
86
+ child: FutureBuilder (
87
+ future: classProvider.fetchUserClassIds (
88
+ authProvider.uid),
89
+ builder: (context, snap) {
90
+ if (snap.hasData) {
91
+ return AddClassesPage (
92
+ initialClassIds: snap.data,
93
+ onSave: (classIds) async {
94
+ await classProvider.setUserClassIds (
95
+ classIds, authProvider.uid);
96
+ unawaited (updateClasses ());
97
+ if (! mounted) {
98
+ return ;
99
+ }
100
+ Navigator .pop (context);
101
+ });
102
+ } else {
103
+ return const Center (
104
+ child: CircularProgressIndicator ());
95
105
}
96
- Navigator .pop (context);
97
- });
98
- } else {
99
- return const Center (child: CircularProgressIndicator ());
100
- }
101
- },
102
- )),
103
- ),
104
- ),
106
+ },
107
+ )),
108
+ ),
109
+ ),
105
110
),
106
111
],
107
112
body: Stack (
108
113
children: [
109
114
if (updating != null )
110
115
headers != null && headers.isNotEmpty
111
116
? ClassList (
112
- classes: headers,
113
- sectioned: false ,
114
- onTap: (classHeader) => Navigator .of (context).push (
115
- MaterialPageRoute <ChangeNotifierProvider >(
116
- builder: (context) => ChangeNotifierProvider .value (
117
- value: classProvider,
118
- child: ClassView (
119
- classHeader: classHeader,
117
+ classes: headers,
118
+ sectioned: false ,
119
+ onTap: (classHeader) =>
120
+ Navigator .of (context).push (
121
+ MaterialPageRoute <ChangeNotifierProvider >(
122
+ builder: (context) =>
123
+ ChangeNotifierProvider .value (
124
+ value: classProvider,
125
+ child: ClassView (
126
+ classHeader: classHeader,
127
+ ),
120
128
),
121
- ),
122
- ),
123
129
),
124
- )
130
+ ),
131
+ )
125
132
: ErrorPage (
126
- errorMessage: S .current.messageNoClassesYet,
127
- imgPath: 'assets/illustrations/undraw_empty.png' ,
128
- info: [
129
- TextSpan (
130
- text: '${S .current .messageGetStartedByPressing } ' ),
131
- WidgetSpan (
132
- alignment: PlaceholderAlignment .middle,
133
- child: Icon (
134
- Icons .edit_outlined,
135
- size:
136
- Theme .of (context).textTheme.subtitle1.fontSize +
137
- 2 ,
138
- ),
139
- ),
140
- TextSpan (text: ' ${S .current .messageButtonAbove }.' ),
141
- ]),
133
+ errorMessage: S .current.messageNoClassesYet,
134
+ imgPath: 'assets/illustrations/undraw_empty.png' ,
135
+ info: [
136
+ TextSpan (
137
+ text: '${S .current .messageGetStartedByPressing } ' ),
138
+ WidgetSpan (
139
+ alignment: PlaceholderAlignment .middle,
140
+ child: Icon (
141
+ Icons .edit_outlined,
142
+ size:
143
+ Theme
144
+ .of (context)
145
+ .textTheme
146
+ .subtitle1
147
+ .fontSize +
148
+ 2 ,
149
+ ),
150
+ ),
151
+ TextSpan (text: ' ${S .current .messageButtonAbove }.' ),
152
+ ]),
142
153
if (updating == null )
143
154
const Center (child: CircularProgressIndicator ()),
144
155
if (updating == true )
145
156
Container (
146
- color: Theme .of (context).disabledColor,
157
+ color: Theme
158
+ .of (context)
159
+ .disabledColor,
147
160
child: const Center (child: CircularProgressIndicator ())),
148
161
],
149
162
),
@@ -210,13 +223,12 @@ class _AddClassesPageState extends State<AddClassesPage> {
210
223
}
211
224
212
225
class ClassList extends StatefulWidget {
213
- ClassList (
214
- {this .classes,
215
- void Function (bool , String ) onSelected,
216
- Set <String > initiallySelected,
217
- this .selectable = false ,
218
- this .sectioned = true ,
219
- void Function (ClassHeader ) onTap})
226
+ ClassList ({this .classes,
227
+ void Function (bool , String ) onSelected,
228
+ Set <String > initiallySelected,
229
+ this .selectable = false ,
230
+ this .sectioned = true ,
231
+ void Function (ClassHeader ) onTap})
220
232
: onSelected = onSelected ?? ((selected, classId) {}),
221
233
onTap = onTap ?? ((_) {}),
222
234
initiallySelected = initiallySelected ?? {};
@@ -244,8 +256,8 @@ class _ClassListState extends State<ClassList> {
244
256
String sectionName (BuildContext context, String year, String semester) =>
245
257
'${S .current .labelYear } $year , ${S .current .labelSemester } $semester ' ;
246
258
247
- Map <String , dynamic > classesBySection (
248
- Set < ClassHeader > classes, BuildContext context) {
259
+ Map <String , dynamic > classesBySection (Set < ClassHeader > classes,
260
+ BuildContext context) {
249
261
final map = < String , dynamic > {};
250
262
251
263
for (final c in classes) {
@@ -279,8 +291,8 @@ class _ClassListState extends State<ClassList> {
279
291
children.addAll (values.map <Widget >(buildClassItem));
280
292
expanded = values.fold (
281
293
false ,
282
- (dynamic selected, ClassHeader header) =>
283
- selected || widget.initiallySelected.contains (header.id));
294
+ (dynamic selected, ClassHeader header) =>
295
+ selected || widget.initiallySelected.contains (header.id));
284
296
} else {
285
297
final s = buildSections (context, sections[section], level: level + 1 );
286
298
expanded = expanded || s.containsSelected;
@@ -302,7 +314,8 @@ class _ClassListState extends State<ClassList> {
302
314
return _Section (widgets: children, containsSelected: expanded);
303
315
}
304
316
305
- Widget buildClassItem (ClassHeader header) => Column (
317
+ Widget buildClassItem (ClassHeader header) =>
318
+ Column (
306
319
children: [
307
320
ClassListItem (
308
321
selectable: widget.selectable,
@@ -334,16 +347,19 @@ class _ClassListState extends State<ClassList> {
334
347
child: IconText (
335
348
icon: Icons .info_outlined,
336
349
text: '${S .current .infoSelect } ${S .current .infoClasses }.' ,
337
- style: Theme .of (context).textTheme.bodyText1,
350
+ style: Theme
351
+ .of (context)
352
+ .textTheme
353
+ .bodyText1,
338
354
),
339
355
),
340
356
Padding (
341
357
padding: const EdgeInsets .all (10 ),
342
358
child: Column (
343
359
children: widget.sectioned
344
360
? (buildSections (
345
- context, classesBySection (widget.classes, context)))
346
- .widgets
361
+ context, classesBySection (widget.classes, context)))
362
+ .widgets
347
363
: widget.classes.map (buildClassItem).toList ()),
348
364
),
349
365
],
@@ -371,7 +387,8 @@ class ClassListItem extends StatefulWidget {
371
387
this .selectable = false ,
372
388
void Function () onTap,
373
389
this .hint,
374
- }) : onSelected = onSelected ?? ((_) {}),
390
+ })
391
+ : onSelected = onSelected ?? ((_) {}),
375
392
onTap = onTap ?? (() {}),
376
393
super (key: key);
377
394
@@ -408,24 +425,32 @@ class _ClassListItemState extends State<ClassListItem> {
408
425
widget.classHeader.name,
409
426
style: widget.selectable
410
427
? (selected
411
- ? Theme .of (context)
412
- .textTheme
413
- .subtitle1
414
- .copyWith (fontWeight: FontWeight .bold)
415
- : Theme .of (context)
416
- .textTheme
417
- .subtitle1
418
- .copyWith (color: Theme .of (context).disabledColor))
419
- : Theme .of (context).textTheme.subtitle1,
428
+ ? Theme
429
+ .of (context)
430
+ .textTheme
431
+ .subtitle1
432
+ .copyWith (fontWeight: FontWeight .bold)
433
+ : Theme
434
+ .of (context)
435
+ .textTheme
436
+ .subtitle1
437
+ .copyWith (color: Theme
438
+ .of (context)
439
+ .disabledColor))
440
+ : Theme
441
+ .of (context)
442
+ .textTheme
443
+ .subtitle1,
420
444
),
421
445
subtitle: widget.hint != null ? Text (widget.hint) : null ,
422
- onTap: () => setState (() {
423
- if (widget.selectable) {
424
- selected = ! selected;
425
- widget.onSelected (selected);
426
- }
427
- widget.onTap ();
428
- }),
446
+ onTap: () =>
447
+ setState (() {
448
+ if (widget.selectable) {
449
+ selected = ! selected;
450
+ widget.onSelected (selected);
451
+ }
452
+ widget.onTap ();
453
+ }),
429
454
);
430
455
}
431
456
}
0 commit comments