Контекст: я создаю форму для хранения простой пользовательской информации для моего старшего проекта. Есть 3 поля и кнопка отправки. Информация о пользователе хранится в firestore в пользовательском документе.
Проблема: когда я нажимаю «Отправить», поля в пользовательском документе, которые обновляются, обнуляются. Затем, чтобы обновить поля в пользовательском документе, необходимо нажать кнопку «Отправить» еще раз.
userSettingsPage.dart
void _submitForm() {
final FormState form = _formKey.currentState;
var userManager = new UserManager();
userManager.updateUser(updatedUser, mCurrentUser.uid);
if (!form.validate()) {
showMessage('Form is not valid! Please review and correct.');
} else {
form.save(); //This invokes each onSaved event
}
}
bool isValidUserCode(String input) {
RegExp regex = new RegExp('');
switch(input){
case '123456789': {
newUserRole = "professor";
regex = new RegExp('123456789');
}
break;
case '987654321': {
newUserRole = "security";
regex = new RegExp('987654321');
}
break;
case '666': {
newUserRole = "student";
regex = new RegExp('666');
}
break;
case '': {
regex = new RegExp('');
}
}
return regex.hasMatch(input);
}
Widget build(BuildContext context) {
// TODO: implement build
return new Scaffold(
key: _scaffoldKey,
appBar: new AppBar(
title: new Text('Settings'),
),
body: new Container(
padding: new EdgeInsets.all(20.0),
child: new Form(
key: _formKey,
autovalidate: true,
child: new ListView(
children: <Widget>[
new TextFormField(
decoration: new InputDecoration(
hintText: 'Name',
labelText: 'Your Name'
),
validator: (value) {
if (value.isEmpty) {
return 'Please enter some text';
}
},
onSaved: (val) => updatedUser.name = val
),
new TextFormField(
decoration: new InputDecoration(
hintText: '1234567',
labelText: 'ID number'
),
inputFormatters: [new LengthLimitingTextInputFormatter(7)],
onSaved: (val) => updatedUser.ID = val
),
new TextFormField(
obscureText: true,
decoration: new InputDecoration(
hintText: 'User Role Code',
labelText: 'Enter code (for faculty and staff only)',
),
validator: (value) => isValidUserCode(value) ? null : 'Not a valid code',
onSaved: (value) => updatedUser.role = newUserRole,
),
new Text("Bugs suck, please hit submit button twice in order to send data.", textAlign: TextAlign.center,),
new Container(
padding: const EdgeInsets.only(left: 40.0, top: 20.0, right: 40.0),
child: new RaisedButton(
child: const Text('Submit'),
onPressed: _submitForm,
)
),
new Text("Changes will take effect next time you close and reopen page.", textAlign: TextAlign.center,),
],
)
),
),
);
userManager.dart
final FirebaseAuth _firebaseAuth = FirebaseAuth.instance;
final Firestore _firestoreDB = Firestore.instance;
Future<void> updateUser(User user, String uid) async {
Map<String, dynamic> userData = Map();
userData["name"] = user.name;
userData["ID"] = user.ID;
userData["role"] = user.role;
Firestore.instance.collection("users").document(uid).setData(userData, merge: true);
}
Не могу понять, где проблема.