2024-09-06 17:00:25 +00:00
|
|
|
import 'package:calorimeter/storage/storage.dart';
|
2024-05-29 22:58:26 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2024-09-06 17:00:25 +00:00
|
|
|
import 'package:calorimeter/food_entry/food_entry_bloc.dart';
|
2024-09-06 16:51:24 +00:00
|
|
|
import 'package:calorimeter/utils/row_with_spacers_widget.dart';
|
2024-09-06 22:02:01 +00:00
|
|
|
import 'package:provider/provider.dart';
|
2024-05-29 22:58:26 +00:00
|
|
|
|
|
|
|
class EnterFoodWidget extends StatefulWidget {
|
2024-09-09 20:41:48 +00:00
|
|
|
final Function(BuildContext context, FoodEntryState entry) onAdd;
|
2024-06-09 17:06:10 +00:00
|
|
|
|
|
|
|
const EnterFoodWidget({super.key, required this.onAdd});
|
2024-05-29 22:58:26 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
State<EnterFoodWidget> createState() => _EnterFoodWidgetState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _EnterFoodWidgetState extends State<EnterFoodWidget> {
|
2024-09-06 22:02:01 +00:00
|
|
|
late TextEditingController nameController;
|
|
|
|
late TextEditingController massController;
|
|
|
|
late TextEditingController kcalPerMassController;
|
2024-09-09 20:41:48 +00:00
|
|
|
late Map<String, int> suggestions;
|
2024-09-04 20:47:32 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
2024-09-06 22:02:01 +00:00
|
|
|
nameController = TextEditingController();
|
|
|
|
massController = TextEditingController();
|
|
|
|
kcalPerMassController = TextEditingController();
|
2024-09-04 20:47:32 +00:00
|
|
|
suggestions = FoodStorage.getInstance().getFoodEntryLookupDatabase;
|
2024-09-06 22:02:01 +00:00
|
|
|
|
2024-09-04 20:47:32 +00:00
|
|
|
super.initState();
|
|
|
|
}
|
2024-06-01 10:41:58 +00:00
|
|
|
|
2024-05-29 22:58:26 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-09-09 20:41:48 +00:00
|
|
|
return Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 8.0),
|
|
|
|
child: RowWidget(
|
|
|
|
Autocomplete<String>(
|
|
|
|
optionsViewOpenDirection: OptionsViewOpenDirection.down,
|
|
|
|
fieldViewBuilder: (context, controller, focusNode, onSubmitted) {
|
|
|
|
nameController = controller;
|
|
|
|
return TextFormField(
|
|
|
|
controller: controller,
|
|
|
|
focusNode: focusNode,
|
|
|
|
decoration: const InputDecoration(
|
|
|
|
label: Text("Name"),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
optionsBuilder: (TextEditingValue textEditingValue) {
|
|
|
|
if (textEditingValue.text == '') {
|
|
|
|
return const Iterable<String>.empty();
|
|
|
|
}
|
2024-09-06 22:02:01 +00:00
|
|
|
|
2024-09-09 20:41:48 +00:00
|
|
|
return suggestions.keys.where(
|
|
|
|
(name) {
|
|
|
|
return name
|
|
|
|
.toLowerCase()
|
|
|
|
.contains(textEditingValue.text.toLowerCase());
|
2024-09-06 22:02:01 +00:00
|
|
|
},
|
2024-09-09 20:41:48 +00:00
|
|
|
);
|
|
|
|
},
|
|
|
|
onSelected: (selectedFood) {
|
|
|
|
int kcalPerMassForSelectedFood = suggestions[selectedFood]!;
|
|
|
|
setState(() {
|
|
|
|
nameController.text = selectedFood;
|
|
|
|
kcalPerMassController.text =
|
|
|
|
kcalPerMassForSelectedFood.toString();
|
|
|
|
});
|
|
|
|
}),
|
|
|
|
TextField(
|
|
|
|
textAlign: TextAlign.end,
|
|
|
|
decoration: const InputDecoration(
|
|
|
|
label:
|
|
|
|
Align(alignment: Alignment.centerRight, child: Text("Menge")),
|
2024-09-06 22:02:01 +00:00
|
|
|
),
|
2024-09-09 20:41:48 +00:00
|
|
|
keyboardType: TextInputType.number,
|
|
|
|
controller: massController,
|
|
|
|
onSubmitted: (value) => onSubmitAction(),
|
|
|
|
),
|
|
|
|
TextField(
|
|
|
|
textAlign: TextAlign.end,
|
|
|
|
decoration: const InputDecoration(
|
|
|
|
label: Align(
|
|
|
|
alignment: Alignment.centerRight, child: Text("kcal pro"))),
|
|
|
|
keyboardType: TextInputType.number,
|
|
|
|
controller: kcalPerMassController,
|
|
|
|
onSubmitted: (value) => onSubmitAction(),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(left: 16.0),
|
|
|
|
child: ElevatedButton(
|
|
|
|
style: ElevatedButton.styleFrom(
|
|
|
|
padding: EdgeInsets.zero,
|
|
|
|
),
|
|
|
|
onPressed: () => onSubmitAction(),
|
|
|
|
child: const Icon(Icons.add)),
|
|
|
|
),
|
|
|
|
),
|
2024-05-29 22:58:26 +00:00
|
|
|
);
|
|
|
|
}
|
2024-09-06 00:23:47 +00:00
|
|
|
|
|
|
|
void onSubmitAction() {
|
2024-09-09 20:41:48 +00:00
|
|
|
int massAsNumber = 0;
|
|
|
|
int kcalPerMassAsNumber = 0;
|
2024-09-06 00:23:47 +00:00
|
|
|
|
|
|
|
try {
|
2024-09-09 20:41:48 +00:00
|
|
|
massAsNumber = int.parse(massController.text.replaceAll(",", "."));
|
2024-09-06 00:23:47 +00:00
|
|
|
} catch (e) {
|
|
|
|
var snackbar = const SnackBar(content: Text("Menge muss eine Zahl sein"));
|
|
|
|
ScaffoldMessenger.of(context).clearSnackBars();
|
|
|
|
ScaffoldMessenger.of(context).showSnackBar(snackbar);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
kcalPerMassAsNumber =
|
2024-09-09 20:41:48 +00:00
|
|
|
int.parse(kcalPerMassController.text.replaceAll(",", "."));
|
2024-09-06 00:23:47 +00:00
|
|
|
} catch (e) {
|
|
|
|
var snackbar =
|
|
|
|
const SnackBar(content: Text("'kcal pro 100g' muss eine Zahl sein"));
|
2024-09-09 20:41:48 +00:00
|
|
|
ScaffoldMessenger.of(context).removeCurrentSnackBar();
|
2024-09-06 00:23:47 +00:00
|
|
|
ScaffoldMessenger.of(context).showSnackBar(snackbar);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-09-09 20:41:48 +00:00
|
|
|
var entry = FoodEntryState(
|
|
|
|
name: nameController.text,
|
|
|
|
mass: massAsNumber,
|
2024-09-24 15:23:01 +00:00
|
|
|
kcalPer100: kcalPerMassAsNumber,
|
2024-09-09 20:41:48 +00:00
|
|
|
waitingForNetwork: false,
|
|
|
|
);
|
2024-09-06 00:23:47 +00:00
|
|
|
|
|
|
|
widget.onAdd(context, entry);
|
2024-09-09 20:41:48 +00:00
|
|
|
setState(() {
|
|
|
|
nameController.text = "";
|
|
|
|
massController.text = "";
|
|
|
|
kcalPerMassController.text = "";
|
|
|
|
});
|
2024-09-06 00:23:47 +00:00
|
|
|
}
|
2024-05-29 22:58:26 +00:00
|
|
|
}
|