148 lines
4.7 KiB
Dart
148 lines
4.7 KiB
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_dotenv/flutter_dotenv.dart';
|
||
|
|
||
|
import '../models/food.dart';
|
||
|
import '../pages/nav_pages/search_food.dart';
|
||
|
|
||
|
class CardComponent extends StatefulWidget {
|
||
|
final String eatingMealName;
|
||
|
final List<Food> selectedMeal;
|
||
|
|
||
|
const CardComponent(
|
||
|
{Key? key, required this.eatingMealName, required this.selectedMeal})
|
||
|
: super(key: key);
|
||
|
|
||
|
@override
|
||
|
State<CardComponent> createState() => _CardComponentState();
|
||
|
}
|
||
|
|
||
|
class _CardComponentState extends State<CardComponent> {
|
||
|
Route createRoute(String cardName) {
|
||
|
return PageRouteBuilder(
|
||
|
pageBuilder: (context, animation, secondaryAnimation) =>
|
||
|
SearchFoodPage(cardName),
|
||
|
transitionsBuilder: (context, animation, secondaryAnimation, child) {
|
||
|
const begin = Offset(0.0, 1.0);
|
||
|
const end = Offset.zero;
|
||
|
const curve = Curves.ease;
|
||
|
|
||
|
var tween =
|
||
|
Tween(begin: begin, end: end).chain(CurveTween(curve: curve));
|
||
|
|
||
|
return SlideTransition(
|
||
|
position: animation.drive(tween),
|
||
|
child: child,
|
||
|
);
|
||
|
},
|
||
|
);
|
||
|
}
|
||
|
|
||
|
getImageOfMeal() {
|
||
|
if (widget.eatingMealName == dotenv.env['BREAKFAST_FIELD']!) {
|
||
|
return const Image(image: AssetImage('assets/images/tea.png'));
|
||
|
} else if (widget.eatingMealName == dotenv.env['LUNCH_FIELD']!) {
|
||
|
return const Image(image: AssetImage('assets/images/fries.png'));
|
||
|
} else if (widget.eatingMealName == dotenv.env['DINNER_FIELD']!) {
|
||
|
return const Image(image: AssetImage('assets/images/ice.png'));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
String capitalize(String s) => s[0].toUpperCase() + s.substring(1);
|
||
|
|
||
|
String listFoodAsString() {
|
||
|
String mealAsString = "";
|
||
|
for (final food in widget.selectedMeal) {
|
||
|
mealAsString = "${food.name} ";
|
||
|
}
|
||
|
return mealAsString;
|
||
|
}
|
||
|
|
||
|
Widget getElevatedButton() {
|
||
|
return ElevatedButton(
|
||
|
onPressed: () async {
|
||
|
Navigator.of(context).push(createRoute(widget.eatingMealName));
|
||
|
},
|
||
|
style: ElevatedButton.styleFrom(
|
||
|
shape: const CircleBorder(),
|
||
|
padding: const EdgeInsets.all(8),
|
||
|
),
|
||
|
child: const Text(
|
||
|
'+',
|
||
|
style: TextStyle(fontSize: 28),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
int getCountedCalories() {
|
||
|
double calories = 0;
|
||
|
for (Food food in widget.selectedMeal) {
|
||
|
if (food.calories is int){
|
||
|
calories += food.calories as int;
|
||
|
}else if(food.calories is double){
|
||
|
calories += food.calories as double;
|
||
|
}
|
||
|
}
|
||
|
return calories.round();
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Card(
|
||
|
margin: const EdgeInsets.fromLTRB(0, 24, 0, 0),
|
||
|
child: Column(
|
||
|
children: [
|
||
|
Row(
|
||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
|
children: [
|
||
|
Row(
|
||
|
children: [
|
||
|
getImageOfMeal(),
|
||
|
Column(
|
||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||
|
children: [
|
||
|
SizedBox(
|
||
|
width: MediaQuery.of(context).size.width * 0.6,
|
||
|
child: Text(
|
||
|
capitalize(widget.eatingMealName),
|
||
|
maxLines: 1,
|
||
|
overflow: TextOverflow.ellipsis,
|
||
|
softWrap: false,
|
||
|
style: const TextStyle(
|
||
|
color: Colors.black,
|
||
|
fontWeight: FontWeight.w500,
|
||
|
fontSize: 14),
|
||
|
),
|
||
|
),
|
||
|
SizedBox(
|
||
|
width: MediaQuery.of(context).size.width * 0.6,
|
||
|
child: Text(
|
||
|
widget.selectedMeal.isNotEmpty
|
||
|
? listFoodAsString()
|
||
|
: "Empfohlen: 123",
|
||
|
maxLines: 1,
|
||
|
overflow: TextOverflow.ellipsis,
|
||
|
softWrap: false,
|
||
|
style: const TextStyle(
|
||
|
color: Colors.black26,
|
||
|
fontWeight: FontWeight.w500,
|
||
|
fontSize: 10),
|
||
|
),
|
||
|
),
|
||
|
],
|
||
|
)
|
||
|
],
|
||
|
),
|
||
|
getElevatedButton(),
|
||
|
],
|
||
|
),
|
||
|
widget.selectedMeal.isNotEmpty
|
||
|
? const Divider()
|
||
|
: const SizedBox.shrink(),
|
||
|
widget.selectedMeal.isNotEmpty
|
||
|
? Text("${getCountedCalories()} kcal")
|
||
|
: const SizedBox.shrink(),
|
||
|
],
|
||
|
));
|
||
|
}
|
||
|
}
|