-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathportal_page.dart
390 lines (356 loc) · 13 KB
/
portal_page.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
import 'dart:core';
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:flutter_feather_icons/flutter_feather_icons.dart';
import 'package:provider/provider.dart';
import 'package:recase/recase.dart';
import '../../../authentication/model/user.dart';
import '../../../authentication/service/auth_provider.dart';
import '../../../generated/l10n.dart';
import '../../../resources/custom_icons.dart';
import '../../../resources/utils.dart';
import '../../../widgets/circle_image.dart';
import '../../../widgets/scaffold.dart';
import '../../../widgets/spoiler.dart';
import '../../../widgets/toast.dart';
import '../../filter/model/filter.dart';
import '../../filter/service/filter_provider.dart';
import '../../filter/view/filter_page.dart';
import '../model/website.dart';
import '../service/website_provider.dart';
import 'website_view.dart';
class PortalPage extends StatefulWidget {
const PortalPage({final Key key}) : super(key: key);
@override
_PortalPageState createState() => _PortalPageState();
}
class _PortalPageState extends State<PortalPage> {
Filter filterCache;
List<Website> websites = [];
FilterProvider filterProvider;
// Only show user-added websites
bool userOnly = false;
bool editingEnabled = false;
User user;
bool updating;
Future<void> _fetchUser() async {
final authProvider = Provider.of<AuthProvider>(context, listen: false);
user = await authProvider.currentUser;
if (mounted) {
setState(() {});
}
}
@override
void initState() {
super.initState();
_fetchUser();
_updateFilter();
}
Future<void> _updateFilter() async {
// If updating is null, filter hasn't been initialized yet so it's not
// technically "updating"
if (updating != null) {
updating = true;
}
final filterProvider = this.filterProvider ??
Provider.of<FilterProvider>(context, listen: false);
filterCache = await filterProvider.fetchFilter();
updating = false;
if (mounted) {
setState(() {});
}
}
Widget websiteCircle(final Website website, final double size) {
final bool canEdit = editingEnabled &&
(website.isPrivate || (user.canEditPublicInfo ?? false));
return Padding(
padding: const EdgeInsets.all(10),
child: WebsiteIcon(
website: website,
canEdit: canEdit,
size: size,
onTap: () {
if (canEdit) {
Navigator.of(context)
.push(MaterialPageRoute<ChangeNotifierProvider>(
builder: (final _) =>
ChangeNotifierProvider<FilterProvider>.value(
// If testing, use the global (mocked) provider; otherwise instantiate a new local provider
value: Platform.environment.containsKey('FLUTTER_TEST')
? Provider.of<FilterProvider>(context)
: FilterProvider(
defaultDegree: website.degree,
defaultRelevance: website.relevance,
)
..updateAuth(Provider.of<AuthProvider>(context)),
child: WebsiteView(
website: website,
updateExisting: true,
),
),
));
} else {
Provider.of<WebsiteProvider>(context, listen: false)
.incrementNumberOfVisits(website, uid: user?.uid);
Utils.launchURL(website.link);
}
},
));
}
Widget listCategory(
final WebsiteCategory category, final List<Website> websites) {
final bool hasContent = websites != null && websites.isNotEmpty;
const double padding = 10;
// The width available for displaying the circles (screen width minus the
// left/right padding)
final double availableWidth =
MediaQuery.of(context).size.width - 2 * padding;
// The maximum size of a circle, regardless of screen size
const double maxCircleSize = 80;
// The amount of circles that can fit on one row (given the screen size,
// maximum circle size and the fact that there need to be at least 4 circles
// on a row), including the padding.
final int circlesPerRow =
max(4, (availableWidth / (maxCircleSize + 2 * padding)).floor());
// The exact size of a circle (without the padding), so that they fit
// perfectly in a row
final double circleSize = availableWidth / circlesPerRow - 2 * padding;
Widget content;
if (!hasContent) {
// Display just the plus button (but set the height to mimic the rows with
// content)
content = Align(
alignment: Alignment.centerLeft,
child: SizedBox(
width: circleSize + 16.0,
height: circleSize +
16.0 + // padding
40.0, // text
child: _AddWebsiteButton(
key: ValueKey(
'add_website_${ReCase(category.toLocalizedString()).snakeCase}'),
category: category),
),
);
} else {
final rows = <Row>[];
for (var i = 0; i < websites.length;) {
List<Widget> children = [];
for (var j = 0; j < circlesPerRow && i < websites.length; j++, i++) {
children.add(websiteCircle(websites[i], circleSize));
}
// Add trailing "plus" button
if (i == websites.length) {
if (children.length == circlesPerRow) {
rows.add(Row(children: children));
children = [];
}
children.add(SizedBox(
width: circleSize + 16,
child: _AddWebsiteButton(
key: ValueKey(
'add_website_${ReCase(category.toLocalizedString()).snakeCase}'),
category: category,
size: circleSize * 0.6,
),
));
}
rows.add(Row(children: children));
}
content = Column(children: rows);
}
return Padding(
padding: const EdgeInsets.only(left: 10, right: 10),
child: AppSpoiler(
title: category.toLocalizedString(),
initiallyExpanded: hasContent,
content: content,
),
);
}
List<Widget> listWebsitesByCategory(final List<Website> websites) {
assert(websites != null, 'list of websites cannot be null');
final map = <WebsiteCategory, List<Website>>{};
for (final website in websites) {
final category = website.category;
map.putIfAbsent(category, () => <Website>[]);
map[category].add(website);
}
return [
WebsiteCategory.learning,
WebsiteCategory.administrative,
WebsiteCategory.association,
WebsiteCategory.resource,
WebsiteCategory.other
].map((final category) => listCategory(category, map[category])).toList();
}
@override
Widget build(final BuildContext context) {
final websiteProvider = Provider.of<WebsiteProvider>(context);
filterProvider = Provider.of<FilterProvider>(context);
final authProvider = Provider.of<AuthProvider>(context);
const CircularProgressIndicator progressIndicator =
CircularProgressIndicator();
return AppScaffold(
title: Text(S.current.navigationPortal),
actions: [
AppScaffoldAction(
icon: editingEnabled
? CustomIcons.edit_off_outlined
: Icons.edit_outlined,
tooltip: editingEnabled
? S.current.actionDisableEditing
: S.current.actionEnableEditing,
onPressed: () {
final authProvider =
Provider.of<AuthProvider>(context, listen: false);
if (authProvider.isAuthenticated && !authProvider.isAnonymous) {
// Show message if there is nothing the user can edit
if (!editingEnabled) {
user.hasEditableWebsites.then((final canEdit) {
if (!canEdit) {
AppToast.show(
'${S.current.warningNothingToEdit} ${S.current.messageAddCustomWebsite}');
}
});
}
setState(() => editingEnabled = !editingEnabled);
} else {
AppToast.show(S.current.warningAuthenticationNeeded);
}
},
),
AppScaffoldAction(
icon: FeatherIcons.filter,
tooltip: S.current.navigationFilter,
items: {
S.current.filterMenuRelevance: () {
userOnly = false;
Navigator.push(
context,
MaterialPageRoute<FilterPage>(
builder: (final _) => FilterPage(
onSubmit: _updateFilter,
),
),
);
},
S.current.filterMenuShowMine: () {
if (authProvider.isAuthenticated && !authProvider.isAnonymous) {
// Show message if user has no private websites
if (!userOnly) {
user.hasPrivateWebsites.then((final hasPrivate) {
if (!hasPrivate) {
AppToast.show(S.current.warningNoPrivateWebsite);
}
});
_updateFilter();
setState(() => userOnly = true);
filterProvider.enableFilter();
} else {
AppToast.show(S.current.warningFilterAlreadyShowingYours);
}
} else {
AppToast.show(S.current.warningAuthenticationNeeded);
}
},
S.current.filterMenuShowAll: () {
if (!filterProvider.filterEnabled) {
AppToast.show(S.current.warningFilterAlreadyDisabled);
} else {
_updateFilter();
userOnly = false;
filterProvider.disableFilter();
}
},
},
),
],
body: Stack(
children: [
FutureBuilder<List<Website>>(
future: websiteProvider.fetchWebsites(
filterProvider.filterEnabled ? filterCache : null,
userOnly: userOnly,
uid: authProvider.uid,
),
builder: (final context,
final AsyncSnapshot<List<Website>> websiteSnap) {
if (websiteSnap.hasData) {
websites = websiteSnap.data;
return SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.only(top: 10),
child: Column(
children: listWebsitesByCategory(websites),
),
),
);
} else if (websiteSnap.hasError) {
print(websiteSnap.error);
// TODO(IoanaAlexandru): Show error toast
return Container();
} else {
return const Center(child: progressIndicator);
}
}),
if (updating == true)
Container(
color: Theme.of(context).disabledColor,
child: const Center(child: CircularProgressIndicator())),
],
),
);
}
}
class _AddWebsiteButton extends StatelessWidget {
const _AddWebsiteButton(
{final Key key, this.category = WebsiteCategory.learning, this.size = 50})
: super(key: key);
final WebsiteCategory category;
final double size;
@override
Widget build(final BuildContext context) => Tooltip(
message: S.current.actionAddWebsite,
child: GestureDetector(
onTap: () {
final authProvider =
Provider.of<AuthProvider>(context, listen: false);
if (authProvider.isAuthenticated && !authProvider.isAnonymous) {
Navigator.of(context)
.push(MaterialPageRoute<ChangeNotifierProvider>(
builder: (final _) =>
ChangeNotifierProvider<FilterProvider>.value(
// If testing, use the global (mocked) provider; otherwise instantiate a new local provider
value: Platform.environment.containsKey('FLUTTER_TEST')
? Provider.of<FilterProvider>(context)
: FilterProvider()
..updateAuth(authProvider),
child: WebsiteView(
website: Website(
relevance: null,
id: null,
isPrivate: true,
link: '',
category: category),
),
),
));
} else {
AppToast.show(S.current.warningAuthenticationNeeded);
}
},
child: Padding(
padding: const EdgeInsets.only(top: 10, left: 10, right: 10),
child: CircleImage(
icon: Icon(
Icons.add_outlined,
color: Theme.of(context).unselectedWidgetColor,
),
label: '',
circleSize: size,
),
),
),
);
}