diameter/lib/screens/log/log_entry/log_meal_detail.dart

732 lines
30 KiB
Dart
Raw Normal View History

2021-10-22 23:08:09 +00:00
import 'package:diameter/components/detail.dart';
import 'package:diameter/components/forms/number_form_field.dart';
import 'package:diameter/utils/dialog_utils.dart';
import 'package:diameter/components/forms/auto_complete_dropdown_button.dart';
import 'package:diameter/components/forms/form_wrapper.dart';
2021-10-22 23:08:09 +00:00
import 'package:diameter/models/accuracy.dart';
import 'package:diameter/models/log_meal.dart';
import 'package:diameter/models/meal.dart';
import 'package:diameter/models/meal_category.dart';
import 'package:diameter/models/meal_portion_type.dart';
import 'package:diameter/models/meal_source.dart';
import 'package:diameter/models/settings.dart';
2021-10-22 23:08:09 +00:00
import 'package:diameter/navigation.dart';
2021-12-09 05:14:55 +00:00
import 'package:diameter/screens/accuracy_detail.dart';
import 'package:diameter/screens/meal/meal_category_detail.dart';
import 'package:diameter/screens/meal/meal_detail.dart';
import 'package:diameter/screens/meal/meal_portion_type_detail.dart';
import 'package:diameter/screens/meal/meal_source_detail.dart';
import 'package:diameter/utils/utils.dart';
2021-10-22 23:08:09 +00:00
import 'package:flutter/material.dart';
class LogMealDetailScreen extends StatefulWidget {
static const String routeName = '/log-meal';
final int logEntryId;
final int id;
const LogMealDetailScreen({Key? key, this.logEntryId = 0, this.id = 0})
2021-10-22 23:08:09 +00:00
: super(key: key);
@override
_LogMealDetailScreenState createState() => _LogMealDetailScreenState();
}
class _LogMealDetailScreenState extends State<LogMealDetailScreen> {
LogMeal? _logMeal;
bool _isNew = true;
bool _isSaving = false;
2021-12-09 05:14:55 +00:00
bool _isExpanded = false;
2021-10-22 23:08:09 +00:00
final GlobalKey<FormState> _logMealForm = GlobalKey<FormState>();
2021-12-09 05:14:55 +00:00
final ScrollController _scrollController = ScrollController();
2021-10-22 23:08:09 +00:00
final _valueController = TextEditingController(text: '');
final _carbsRatioController = TextEditingController(text: '');
final _portionSizeController = TextEditingController(text: '');
final _totalCarbsController = TextEditingController(text: '');
2021-10-22 23:08:09 +00:00
final _notesController = TextEditingController(text: '');
Meal? _meal;
MealSource? _mealSource;
MealCategory? _mealCategory;
MealPortionType? _mealPortionType;
Accuracy? _portionSizeAccuracy;
Accuracy? _carbsRatioAccuracy;
2021-10-22 23:08:09 +00:00
2021-12-09 05:14:55 +00:00
final _mealController = TextEditingController(text: '');
final _mealSourceController = TextEditingController(text: '');
final _mealCategoryController = TextEditingController(text: '');
final _mealPortionTypeController = TextEditingController(text: '');
final _portionSizeAccuracyController = TextEditingController(text: '');
final _carbsRatioAccuracyController = TextEditingController(text: '');
final _amountController = TextEditingController(text: '1');
2021-12-09 05:14:55 +00:00
List<Meal> _meals = [];
List<MealCategory> _mealCategories = [];
List<MealPortionType> _mealPortionTypes = [];
List<MealSource> _mealSources = [];
List<Accuracy> _portionSizeAccuracies = [];
List<Accuracy> _carbsRatioAccuracies = [];
2021-10-22 23:08:09 +00:00
@override
void initState() {
super.initState();
reload();
2021-10-22 23:08:09 +00:00
_portionSizeAccuracies = Accuracy.getAllForPortionSize();
_carbsRatioAccuracies = Accuracy.getAllForCarbsRatio();
_meals = Meal.getAll();
_mealCategories = MealCategory.getAll();
_mealPortionTypes = MealPortionType.getAll();
_mealSources = MealSource.getAll();
if (widget.id != 0) {
_valueController.text = _logMeal!.value;
_carbsRatioController.text = (_logMeal!.carbsRatio ?? '').toString();
_portionSizeController.text = (_logMeal!.portionSize ?? '').toString();
_totalCarbsController.text = (_logMeal!.totalCarbs ?? '').toString();
_amountController.text = (_logMeal!.amount).toString();
_notesController.text = _logMeal!.notes ?? '';
2021-12-09 05:14:55 +00:00
_meal = _logMeal!.meal.target;
_mealController.text = (_meal ?? '').toString();
_mealSource = _logMeal!.mealSource.target;
_mealSourceController.text = (_mealSource ?? '').toString();
_mealCategory = _logMeal!.mealCategory.target;
_mealCategoryController.text = (_mealCategory ?? '').toString();
_mealPortionType = _logMeal!.mealPortionType.target;
_mealPortionTypeController.text = (_mealPortionType ?? '').toString();
_portionSizeAccuracy = _logMeal!.portionSizeAccuracy.target;
_portionSizeAccuracyController.text =
(_portionSizeAccuracy ?? '').toString();
_carbsRatioAccuracy = _logMeal!.carbsRatioAccuracy.target;
_carbsRatioAccuracyController.text =
(_carbsRatioAccuracy ?? '').toString();
}
}
@override
void dispose() {
_scrollController.dispose();
_valueController.dispose();
_carbsRatioController.dispose();
_portionSizeController.dispose();
_totalCarbsController.dispose();
_notesController.dispose();
_mealController.dispose();
_mealSourceController.dispose();
_mealCategoryController.dispose();
_mealPortionTypeController.dispose();
_portionSizeAccuracyController.dispose();
_carbsRatioAccuracyController.dispose();
_amountController.dispose();
super.dispose();
}
2021-10-22 23:08:09 +00:00
2021-12-09 05:14:55 +00:00
void reload({String? message}) {
if (widget.id != 0) {
setState(() {
_logMeal = LogMeal.get(widget.id);
});
2021-10-22 23:08:09 +00:00
}
_isNew = _logMeal == null;
2021-12-09 05:14:55 +00:00
setState(() {
if (message != null) {
var snackBar = SnackBar(
content: Text(message),
duration: const Duration(seconds: 2),
);
ScaffoldMessenger.of(context)
..removeCurrentSnackBar()
..showSnackBar(snackBar);
}
});
}
void updateCarbsRatioAccuracy(Accuracy? value) {
setState(() {
_carbsRatioAccuracy = value;
_carbsRatioAccuracyController.text =
(_carbsRatioAccuracy ?? '').toString();
});
}
void updatePortionSizeAccuracy(Accuracy? value) {
setState(() {
_portionSizeAccuracy = value;
_portionSizeAccuracyController.text =
(_portionSizeAccuracy ?? '').toString();
});
}
void updateMealCategory(MealCategory? value) {
setState(() {
_mealCategory = value;
_mealCategoryController.text = (_mealCategory ?? '').toString();
});
}
void updateMealPortionType(MealPortionType? value) {
setState(() {
_mealPortionType = value;
_mealPortionTypeController.text = (_mealPortionType ?? '').toString();
});
}
void updateMealSource(MealSource? value) {
setState(() {
_mealSource = value;
_mealSourceController.text = (_mealSource ?? '').toString();
});
2021-10-22 23:08:09 +00:00
}
2021-12-09 05:14:55 +00:00
Future<void> onSelectMeal(Meal? meal) async {
setState(() {
_meal = meal;
_mealController.text = (_meal ?? '').toString();
_valueController.text = _mealController.text;
_carbsRatioController.text = (meal?.carbsRatio ?? '').toString();
_amountController.text = '1';
_portionSizeController.text = (meal?.portionSize ?? '').toString();
_totalCarbsController.text = (meal?.carbsPerPortion ?? '').toString();
2021-12-09 05:14:55 +00:00
});
updateMealSource(meal?.mealSource.target);
updateMealCategory(meal?.mealCategory.target);
updateMealPortionType(meal?.mealPortionType.target);
updatePortionSizeAccuracy(meal?.portionSizeAccuracy.target);
updateCarbsRatioAccuracy(meal?.carbsRatioAccuracy.target);
}
2021-10-22 23:08:09 +00:00
void handleSaveAction() async {
setState(() {
_isSaving = true;
});
2021-10-22 23:08:09 +00:00
if (_logMealForm.currentState!.validate()) {
LogMeal logMeal = LogMeal(
id: widget.id,
value: _valueController.text,
carbsRatio: double.tryParse(_carbsRatioController.text),
portionSize: double.tryParse(_portionSizeController.text),
totalCarbs: double.tryParse(_totalCarbsController.text),
amount: double.parse(_amountController.text),
);
2021-11-25 18:25:13 +00:00
logMeal.logEntry.targetId = widget.logEntryId;
logMeal.meal.target = _meal;
logMeal.mealSource.target = _mealSource;
logMeal.mealCategory.target = _mealCategory;
logMeal.mealPortionType.target = _mealPortionType;
logMeal.portionSizeAccuracy.target = _portionSizeAccuracy;
logMeal.carbsRatioAccuracy.target = _carbsRatioAccuracy;
LogMeal.put(logMeal);
2021-12-09 05:14:55 +00:00
Navigator.pop(context, ['${_isNew ? 'New' : ''} Meal Saved', logMeal]);
2021-10-22 23:08:09 +00:00
}
setState(() {
_isSaving = false;
});
2021-10-22 23:08:09 +00:00
}
void handleCancelAction() {
if (Settings.get().showConfirmationDialogOnCancel &&
((_isNew &&
2021-10-22 23:08:09 +00:00
(_valueController.text != '' ||
_meal != null ||
_mealSource != null ||
_mealCategory != null ||
_mealPortionType != null ||
double.tryParse(_amountController.text) != 1 ||
2021-10-22 23:08:09 +00:00
double.tryParse(_carbsRatioController.text) != null ||
double.tryParse(_portionSizeController.text) != null ||
double.tryParse(_totalCarbsController.text) != null ||
2021-10-22 23:08:09 +00:00
_carbsRatioAccuracy != null ||
_portionSizeAccuracy != null ||
_notesController.text != '')) ||
(!_isNew &&
(_valueController.text != _logMeal!.value ||
_meal != _logMeal!.meal.target ||
_mealSource != _logMeal!.mealSource.target ||
_mealCategory != _logMeal!.mealCategory.target ||
_mealPortionType != _logMeal!.mealPortionType.target ||
double.tryParse(_amountController.text) !=
_logMeal!.amount ||
2021-10-22 23:08:09 +00:00
double.tryParse(_carbsRatioController.text) !=
_logMeal!.carbsRatio ||
2021-10-22 23:08:09 +00:00
double.tryParse(_portionSizeController.text) !=
_logMeal!.portionSize ||
double.tryParse(_totalCarbsController.text) !=
_logMeal!.totalCarbs ||
_carbsRatioAccuracy !=
_logMeal!.carbsRatioAccuracy.target ||
2021-10-22 23:08:09 +00:00
_portionSizeAccuracy !=
_logMeal!.portionSizeAccuracy.target ||
_notesController.text != (_logMeal!.notes ?? ''))))) {
DialogUtils.showCancelConfirmationDialog(
2021-10-22 23:08:09 +00:00
context: context,
isNew: _isNew,
2021-10-22 23:08:09 +00:00
onSave: handleSaveAction,
);
} else {
Navigator.pop(context);
}
}
void updateAmount(double? amount) {
double previousAmount;
double newAmount;
double? portionSize;
double? carbsRatio;
previousAmount = double.tryParse(_amountController.text) ?? 1;
newAmount = amount?.toDouble() ?? 1;
setState(() {
_amountController.text = newAmount.toString();
});
if (_carbsRatioController.text != '') {
carbsRatio = double.tryParse(_carbsRatioController.text);
}
if (_portionSizeController.text != '') {
portionSize = double.tryParse(_portionSizeController.text);
}
if (portionSize != null) {
setState(() {
portionSize = portionSize! / previousAmount * newAmount;
_portionSizeController.text = portionSize.toString();
});
if (carbsRatio != null) {
setState(() {
_totalCarbsController.text =
Utils.calculateCarbs(carbsRatio!, portionSize!).toString();
});
}
}
}
void calculateThirdMeasurementOfPortionCarbsRelation() {
double? amount = double.tryParse(_amountController.text) ?? 1;
double? carbsRatio;
double? portionSize;
double? carbsPerPortion;
if (_carbsRatioController.text != '') {
carbsRatio = double.tryParse(_carbsRatioController.text);
}
if (_portionSizeController.text != '') {
portionSize = double.tryParse(_portionSizeController.text);
}
if (_totalCarbsController.text != '') {
carbsPerPortion = double.tryParse(_totalCarbsController.text);
}
if (carbsRatio != null && portionSize != null && carbsPerPortion == null) {
setState(() {
_totalCarbsController.text =
Utils.calculateCarbs(carbsRatio!, portionSize! * amount).toString();
});
}
if (carbsRatio == null && portionSize != null && carbsPerPortion != null) {
setState(() {
_carbsRatioController.text =
Utils.calculateCarbsRatio(carbsPerPortion!, portionSize! * amount)
.toString();
});
}
if (carbsRatio != null && portionSize == null && carbsPerPortion != null) {
setState(() {
_portionSizeController.text =
Utils.calculatePortionSize(carbsRatio!, carbsPerPortion!)
.toString();
});
}
}
2021-10-22 23:08:09 +00:00
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(_isNew ? 'New Meal for Log Entry' : _logMeal!.value),
2021-10-22 23:08:09 +00:00
),
drawer: const Navigation(currentLocation: LogMealDetailScreen.routeName),
2021-12-09 05:14:55 +00:00
body: Scrollbar(
controller: _scrollController,
child: SingleChildScrollView(
controller: _scrollController,
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
FormWrapper(
formState: _logMealForm,
fields: [
TextFormField(
controller: _valueController,
decoration: const InputDecoration(
labelText: 'Name',
),
validator: (value) {
if (value!.trim().isEmpty) {
return 'Empty name';
}
return null;
},
2021-10-22 23:08:09 +00:00
),
2021-12-09 05:14:55 +00:00
Row(
children: [
Expanded(
child: AutoCompleteDropdownButton<Meal>(
controller: _mealController,
selectedItem: _meal,
label: 'Meal',
items: _meals,
onChanged: onSelectMeal,
),
2021-12-09 05:14:55 +00:00
),
IconButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => _meal == null
? const MealDetailScreen()
: MealDetailScreen(id: _meal!.id),
),
).then((result) {
onSelectMeal(result?[1]);
reload(message: result?[0]);
});
2021-12-06 22:09:40 +00:00
},
2021-12-09 05:14:55 +00:00
icon: Icon(_meal == null ? Icons.add : Icons.edit),
),
2021-12-09 05:14:55 +00:00
],
),
Row(
children: [
Expanded(
child: NumberFormField(
controller: _amountController,
label: 'Amount',
suffix: _mealPortionType?.value,
onChanged: updateAmount,
),
),
TextButton(
onPressed: () => updateAmount(0.5),
child: Column(
children: const [
Text('1', style: TextStyle(decoration: TextDecoration.underline, decorationThickness: 2),),
Text('2'),
],
),
),
TextButton(
onPressed: () => updateAmount(0.33),
child: Column(
children: const [
Text('1', style: TextStyle(decoration: TextDecoration.underline, decorationThickness: 2),),
Text('3'),
],
),
),
TextButton(
onPressed: () => updateAmount(0.67),
child: Column(
children: const [
Text('2', style: TextStyle(decoration: TextDecoration.underline, decorationThickness: 2),),
Text('3'),
],
),
),
],
),
2021-12-09 05:14:55 +00:00
Row(
children: [
Expanded(
child: TextFormField(
decoration: InputDecoration(
labelText: 'Portion size',
suffixText: Settings.nutritionMeasurementSuffix,
2021-12-09 05:14:55 +00:00
),
controller: _portionSizeController,
2021-12-09 05:14:55 +00:00
keyboardType: const TextInputType.numberWithOptions(
decimal: true),
onChanged: (_) async {
await Future.delayed(const Duration(seconds: 1));
calculateThirdMeasurementOfPortionCarbsRelation();
},
),
),
const SizedBox(width: 10),
2021-12-09 05:14:55 +00:00
Expanded(
child: TextFormField(
decoration: const InputDecoration(
labelText: 'Carbs ratio',
suffixText: '%',
2021-12-09 05:14:55 +00:00
),
controller: _carbsRatioController,
2021-12-09 05:14:55 +00:00
keyboardType: const TextInputType.numberWithOptions(
decimal: true),
onChanged: (_) async {
await Future.delayed(const Duration(seconds: 1));
calculateThirdMeasurementOfPortionCarbsRelation();
},
),
),
const SizedBox(width: 10),
2021-12-09 05:14:55 +00:00
Expanded(
child: TextFormField(
decoration: InputDecoration(
labelText: 'Total carbs',
2021-12-09 05:14:55 +00:00
suffixText: Settings.nutritionMeasurementSuffix,
),
controller: _totalCarbsController,
2021-12-09 05:14:55 +00:00
keyboardType: const TextInputType.numberWithOptions(
decimal: true),
onChanged: (_) async {
await Future.delayed(const Duration(seconds: 1));
calculateThirdMeasurementOfPortionCarbsRelation();
},
),
),
],
),
TextFormField(
controller: _notesController,
decoration: const InputDecoration(
labelText: 'Notes',
),
2021-12-09 05:14:55 +00:00
keyboardType: TextInputType.multiline,
minLines: 2,
maxLines: 5,
),
const Divider(),
GestureDetector(
onTap: () => setState(() {
_isExpanded = !_isExpanded;
}),
child: Row(
mainAxisSize: MainAxisSize.max,
children: [
Text(
'ADDITIONAL FIELDS',
style: Theme.of(context).textTheme.subtitle2,
),
const Spacer(),
Icon(_isExpanded
? Icons.expand_less
: Icons.expand_more),
],
),
2021-10-22 23:08:09 +00:00
),
2021-12-09 05:14:55 +00:00
Column(
children: _isExpanded
? [
Padding(
padding:
const EdgeInsets.symmetric(vertical: 5.0),
2021-12-09 05:14:55 +00:00
child: Row(
children: [
Expanded(
child:
AutoCompleteDropdownButton<MealSource>(
2021-12-09 05:14:55 +00:00
controller: _mealSourceController,
selectedItem: _mealSource,
label: 'Meal Source',
items: _mealSources,
onChanged: updateMealSource,
),
),
IconButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => _mealSource ==
null
? const MealSourceDetailScreen()
: MealSourceDetailScreen(
id: _mealSource!.id),
2021-12-09 05:14:55 +00:00
),
).then((result) {
updateMealSource(result?[1]);
reload(message: result?[0]);
});
},
icon: Icon(_mealSource == null
? Icons.add
: Icons.edit),
),
],
),
),
Padding(
padding:
const EdgeInsets.symmetric(vertical: 5.0),
2021-12-09 05:14:55 +00:00
child: Row(
children: [
Expanded(
child: AutoCompleteDropdownButton<
MealCategory>(
2021-12-09 05:14:55 +00:00
controller: _mealCategoryController,
selectedItem: _mealCategory,
label: 'Meal Category',
items: _mealCategories,
onChanged: updateMealCategory,
),
),
IconButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => _mealCategory ==
null
? const MealCategoryDetailScreen()
: MealCategoryDetailScreen(
id: _mealCategory!.id),
),
).then((result) {
updateMealCategory(result?[1]);
reload(message: result?[0]);
});
},
icon: Icon(_mealCategory == null
? Icons.add
: Icons.edit),
),
],
),
),
Padding(
padding:
const EdgeInsets.symmetric(vertical: 5.0),
2021-12-09 05:14:55 +00:00
child: Row(
children: [
Expanded(
child: AutoCompleteDropdownButton<
MealPortionType>(
controller: _mealPortionTypeController,
selectedItem: _mealPortionType,
label: 'Meal Portion Type',
items: _mealPortionTypes,
onChanged: updateMealPortionType,
),
),
IconButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => _mealPortionType ==
null
? const MealPortionTypeDetailScreen()
: MealPortionTypeDetailScreen(
id: _mealPortionType!.id),
),
).then((result) {
updateMealPortionType(result?[1]);
reload(message: result?[0]);
});
},
icon: Icon(_mealPortionType == null
? Icons.add
: Icons.edit),
),
],
),
),
Padding(
padding:
const EdgeInsets.symmetric(vertical: 5.0),
2021-12-09 05:14:55 +00:00
child: Row(
children: [
Expanded(
child: AutoCompleteDropdownButton<Accuracy>(
controller:
_portionSizeAccuracyController,
2021-12-09 05:14:55 +00:00
selectedItem: _portionSizeAccuracy,
label: 'Portion Size Accuracy',
items: _portionSizeAccuracies,
onChanged: updatePortionSizeAccuracy,
),
),
IconButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) =>
_portionSizeAccuracy == null
? const AccuracyDetailScreen()
: AccuracyDetailScreen(
id: _portionSizeAccuracy!
.id),
2021-12-09 05:14:55 +00:00
),
).then((result) {
updatePortionSizeAccuracy(result?[1]);
reload(message: result?[0]);
});
},
icon: Icon(_portionSizeAccuracy == null
? Icons.add
: Icons.edit),
),
],
),
),
Padding(
padding:
const EdgeInsets.symmetric(vertical: 5.0),
2021-12-09 05:14:55 +00:00
child: Row(
children: [
Expanded(
child: AutoCompleteDropdownButton<Accuracy>(
controller: _carbsRatioAccuracyController,
selectedItem: _carbsRatioAccuracy,
label: 'Carbs Ratio Accuracy',
items: _carbsRatioAccuracies,
onChanged: updateCarbsRatioAccuracy,
),
),
IconButton(
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) =>
_carbsRatioAccuracy == null
? const AccuracyDetailScreen()
: AccuracyDetailScreen(
id: _carbsRatioAccuracy!
.id),
2021-12-09 05:14:55 +00:00
),
).then((result) {
updateCarbsRatioAccuracy(result?[1]);
reload(message: result?[0]);
});
},
icon: Icon(_carbsRatioAccuracy == null
? Icons.add
: Icons.edit),
),
],
),
),
]
: [],
),
],
),
],
),
2021-10-22 23:08:09 +00:00
),
),
bottomNavigationBar: DetailBottomRow(
onCancel: handleCancelAction,
2021-12-10 05:42:20 +00:00
onAction: _isSaving ? null : handleSaveAction,
2021-10-22 23:08:09 +00:00
),
);
}
}