I have code that I think is not optimized. Basically, I want to change the value of errorString if a FirebaseAuthException occurs. Do I use a ChangeNotifier on this instead?
Future<void> _signInWithEmailAndPassword(BuildContext context,AsyncSnapshot<String> userSnapshot,AsyncSnapshot<String> passwordSnapshot) async {
try {
final auth = Provider.of<AuthService>(context, listen: false);
await auth.signInWithEmailAndPassword(
userSnapshot.data.trim(), passwordSnapshot.data.trim());
setState(() => errorString = 'Success');
} on FirebaseAuthException catch (e) {
// I don't want to call setState() in each condition
if (e.code == 'invalid-credential') {
setState(() {
errorString = "Email address appears to be malformed/expired";
});
} else if (e.code == 'wrong-password') {
setState(() {
errorString = "Password associated with this email is wrong";
});
} else if (e.code == 'user-not-found') {
setState(() {
errorString = "Email has not been registered, please sign up :)";
});
} else if (e.code == 'user-disabled') {
setState(() {
errorString = "User with this email has been disabled :(";
});
} else if (e.code == 'too-many-requests') {
setState(() {
errorString = "Too many requests, please try again later.";
});
} else if (e.code == 'operation-not-allowed') {
setState(() {
errorString = "Signing in with email and password is not enabled";
});
} else if (e.code == 'account-exists-with-different-credential') {
setState(() {
errorString =
"Email has already been registered. Reset your password.";
});
}
}
}