-
Notifications
You must be signed in to change notification settings - Fork 22
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
Error page for admin panel #322
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,6 +1,8 @@ | ||||||||||||||
import 'package:acs_upb_mobile/authentication/service/auth_provider.dart'; | ||||||||||||||
import 'package:acs_upb_mobile/generated/l10n.dart'; | ||||||||||||||
import 'package:acs_upb_mobile/pages/settings/service/admin_provider.dart'; | ||||||||||||||
import 'package:acs_upb_mobile/pages/settings/view/request_card.dart'; | ||||||||||||||
import 'package:acs_upb_mobile/widgets/error_page.dart'; | ||||||||||||||
import 'package:acs_upb_mobile/widgets/scaffold.dart'; | ||||||||||||||
import 'package:acs_upb_mobile/widgets/toast.dart'; | ||||||||||||||
import 'package:flutter/material.dart'; | ||||||||||||||
|
@@ -20,49 +22,71 @@ class _AdminPanelPageState extends State<AdminPanelPage> { | |||||||||||||
|
||||||||||||||
@override | ||||||||||||||
Widget build(BuildContext context) { | ||||||||||||||
final adminProvider = Provider.of<AdminProvider>(context, listen: false); | ||||||||||||||
return AppScaffold( | ||||||||||||||
actions: [ | ||||||||||||||
AppScaffoldAction( | ||||||||||||||
icon: FeatherIcons.filter, | ||||||||||||||
tooltip: S.current.navigationFilter, | ||||||||||||||
items: { | ||||||||||||||
S.current.filterMenuShowAll: () { | ||||||||||||||
if (!all) { | ||||||||||||||
setState(() => all = true); | ||||||||||||||
} else { | ||||||||||||||
AppToast.show(S.current.warningFilterAlreadyAll); | ||||||||||||||
} | ||||||||||||||
}, | ||||||||||||||
S.current.filterMenuShowUnprocessed: () { | ||||||||||||||
if (all) { | ||||||||||||||
setState(() => all = false); | ||||||||||||||
} else { | ||||||||||||||
AppToast.show(S.current.warningFilterAlreadyUnprocessed); | ||||||||||||||
} | ||||||||||||||
}, | ||||||||||||||
}) | ||||||||||||||
], | ||||||||||||||
title: Text(S.current.navigationAdmin), | ||||||||||||||
body: FutureBuilder( | ||||||||||||||
future: all | ||||||||||||||
? adminProvider.fetchAllRequestIds() | ||||||||||||||
: adminProvider.fetchUnprocessedRequestIds(), | ||||||||||||||
builder: (context, snapshot) { | ||||||||||||||
if (snapshot.connectionState == ConnectionState.done) { | ||||||||||||||
return ListView.builder( | ||||||||||||||
itemCount: | ||||||||||||||
snapshot.data?.length != null ? snapshot.data.length : 0, | ||||||||||||||
itemBuilder: (context, index) { | ||||||||||||||
return RequestCard( | ||||||||||||||
requestId: snapshot.data[index], | ||||||||||||||
); | ||||||||||||||
if (checkUserIsAdmin()) { | ||||||||||||||
final adminProvider = Provider.of<AdminProvider>(context, listen: false); | ||||||||||||||
return AppScaffold( | ||||||||||||||
actions: [ | ||||||||||||||
AppScaffoldAction( | ||||||||||||||
icon: FeatherIcons.filter, | ||||||||||||||
tooltip: S.current.navigationFilter, | ||||||||||||||
items: { | ||||||||||||||
S.current.filterMenuShowAll: () { | ||||||||||||||
if (!all) { | ||||||||||||||
setState(() => all = true); | ||||||||||||||
} else { | ||||||||||||||
AppToast.show(S.current.warningFilterAlreadyAll); | ||||||||||||||
} | ||||||||||||||
}, | ||||||||||||||
); | ||||||||||||||
} else { | ||||||||||||||
return const Center(child: CircularProgressIndicator()); | ||||||||||||||
} | ||||||||||||||
}), | ||||||||||||||
); | ||||||||||||||
S.current.filterMenuShowUnprocessed: () { | ||||||||||||||
if (all) { | ||||||||||||||
setState(() => all = false); | ||||||||||||||
} else { | ||||||||||||||
AppToast.show(S.current.warningFilterAlreadyUnprocessed); | ||||||||||||||
} | ||||||||||||||
}, | ||||||||||||||
}) | ||||||||||||||
], | ||||||||||||||
title: Text(S.current.navigationAdmin), | ||||||||||||||
body: FutureBuilder( | ||||||||||||||
future: all | ||||||||||||||
? adminProvider.fetchAllRequestIds() | ||||||||||||||
: adminProvider.fetchUnprocessedRequestIds(), | ||||||||||||||
builder: (context, snapshot) { | ||||||||||||||
if (snapshot.connectionState == ConnectionState.done) { | ||||||||||||||
return ListView.builder( | ||||||||||||||
itemCount: | ||||||||||||||
snapshot.data?.length != null ? snapshot.data.length : 0, | ||||||||||||||
itemBuilder: (context, index) { | ||||||||||||||
return RequestCard( | ||||||||||||||
requestId: snapshot.data[index], | ||||||||||||||
); | ||||||||||||||
}, | ||||||||||||||
); | ||||||||||||||
} else { | ||||||||||||||
return const Center(child: CircularProgressIndicator()); | ||||||||||||||
} | ||||||||||||||
}), | ||||||||||||||
); | ||||||||||||||
} else { | ||||||||||||||
return AppScaffold( | ||||||||||||||
body: ErrorPage( | ||||||||||||||
imgPath: 'assets/illustrations/undraw_access_denied.png', | ||||||||||||||
errorMessage: S.current.errorDontHavePermissions, | ||||||||||||||
), | ||||||||||||||
); | ||||||||||||||
} | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
bool checkUserIsAdmin() { | ||||||||||||||
final authProvider = Provider.of<AuthProvider>(context, listen: false); | ||||||||||||||
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. I believe |
||||||||||||||
if (authProvider.isAuthenticated && !authProvider.isAnonymous) { | ||||||||||||||
final user = authProvider.currentUserFromCache; | ||||||||||||||
if (user.isAdmin) { | ||||||||||||||
return true; | ||||||||||||||
} else { | ||||||||||||||
return false; | ||||||||||||||
} | ||||||||||||||
Comment on lines
+84
to
+88
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.
Suggested change
|
||||||||||||||
} | ||||||||||||||
return false; | ||||||||||||||
} | ||||||||||||||
} |
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.
Nit: rename to "errorNoPermissions"