mobile_nebula/lib/components/FormPage.dart

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

120 lines
2.9 KiB
Dart
Raw Normal View History

2020-07-27 20:43:58 +00:00
import 'package:flutter/cupertino.dart';
import 'package:flutter/widgets.dart';
import 'package:mobile_nebula/components/SimplePage.dart';
import 'package:mobile_nebula/services/utils.dart';
/// SimplePage with a form and built in validation and confirmation to discard changes if any are made
class FormPage extends StatefulWidget {
const FormPage({
Key? key,
required this.title,
required this.child,
required this.onSave,
required this.changed,
2021-05-03 20:16:00 +00:00
this.hideSave = false,
this.scrollController,
2020-07-27 20:43:58 +00:00
}) : super(key: key);
final String title;
final Function onSave;
final Widget child;
final ScrollController? scrollController;
2020-07-27 20:43:58 +00:00
/// If you need the page to progress to a certain point before saving, control it here
final bool hideSave;
/// Useful if you have a non form field that can change, overrides the internal changed state if true
final bool changed;
@override
_FormPageState createState() => _FormPageState();
}
class _FormPageState extends State<FormPage> {
var changed = false;
final _formKey = GlobalKey<FormState>();
@override
Widget build(BuildContext context) {
changed = widget.changed || changed;
return PopScope<Object?>(
canPop: !changed,
onPopInvokedWithResult: (bool didPop, Object? result) async {
if (didPop) {
return;
2020-07-27 20:43:58 +00:00
}
final NavigatorState navigator = Navigator.of(context);
2020-07-27 20:43:58 +00:00
Utils.confirmDelete(
context,
'Discard changes?',
() {
navigator.pop();
2020-07-27 20:43:58 +00:00
},
deleteLabel: 'Yes',
cancelLabel: 'No',
);
},
child: SimplePage(
leadingAction: _buildLeader(context),
trailingActions: _buildTrailer(context),
2021-05-03 20:16:00 +00:00
scrollController: widget.scrollController,
title: Text(widget.title),
2020-07-27 20:43:58 +00:00
child: Form(
key: _formKey,
onChanged:
() => setState(() {
changed = true;
}),
child: widget.child,
),
),
2020-07-27 20:43:58 +00:00
);
}
Widget _buildLeader(BuildContext context) {
return Utils.leadingBackWidget(
context,
label: changed ? 'Cancel' : 'Back',
onPressed: () {
if (changed) {
Utils.confirmDelete(
context,
'Discard changes?',
() {
changed = false;
Navigator.pop(context);
},
2020-07-27 20:43:58 +00:00
deleteLabel: 'Yes',
cancelLabel: 'No',
);
} else {
2020-07-27 20:43:58 +00:00
Navigator.pop(context);
}
2020-07-27 20:43:58 +00:00
},
);
}
List<Widget> _buildTrailer(BuildContext context) {
if (!changed || widget.hideSave) {
return [];
}
return [
Utils.trailingSaveWidget(context, () {
if (_formKey.currentState == null) {
2020-07-27 20:43:58 +00:00
return;
}
if (!_formKey.currentState!.validate()) {
return;
}
_formKey.currentState!.save();
2020-07-27 20:43:58 +00:00
widget.onSave();
}),
];
}
}