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/perdate/entry_list.dart';
|
2024-09-06 11:48:56 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
|
|
|
|
class PerDateWidget extends StatefulWidget {
|
|
|
|
final DateTime date;
|
2024-10-06 23:44:19 +00:00
|
|
|
const PerDateWidget({super.key, required this.date});
|
2024-09-06 11:48:56 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
State<PerDateWidget> createState() => _PerDateWidgetState();
|
|
|
|
}
|
|
|
|
|
2024-10-03 21:21:13 +00:00
|
|
|
class _PerDateWidgetState extends State<PerDateWidget>
|
|
|
|
with AutomaticKeepAliveClientMixin<PerDateWidget> {
|
2024-09-06 11:48:56 +00:00
|
|
|
@override
|
|
|
|
void initState() {
|
2024-10-18 00:44:43 +00:00
|
|
|
context
|
|
|
|
.read<FoodEntryBloc>()
|
|
|
|
.add(PageBeingInitialized(forDate: widget.date));
|
2024-09-06 11:48:56 +00:00
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-10-03 21:21:13 +00:00
|
|
|
super.build(context);
|
|
|
|
|
2024-10-18 00:44:43 +00:00
|
|
|
return BlocConsumer<FoodEntryBloc, GlobalEntryState>(
|
|
|
|
listener: (context, pageState) {
|
|
|
|
if (pageState.errorString != null) {
|
|
|
|
showNewSnackbarWith(context, pageState.errorString!);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
builder: (context, pageState) {
|
|
|
|
return FoodEntryList(
|
|
|
|
entries: pageState.foodEntries[widget.date] ?? [],
|
|
|
|
date: widget.date);
|
|
|
|
},
|
|
|
|
);
|
2024-09-06 11:48:56 +00:00
|
|
|
}
|
2024-09-06 22:02:01 +00:00
|
|
|
|
2024-09-08 13:07:39 +00:00
|
|
|
void showNewSnackbarWith(BuildContext context, String text) {
|
|
|
|
var snackbar =
|
|
|
|
ErrorSnackbar(colorScheme: Theme.of(context).colorScheme, text: text);
|
2024-09-06 22:02:01 +00:00
|
|
|
|
2024-09-13 14:49:38 +00:00
|
|
|
ScaffoldMessenger.of(context)
|
|
|
|
..removeCurrentSnackBar()
|
|
|
|
..showSnackBar(snackbar);
|
|
|
|
}
|
|
|
|
|
2024-10-03 21:21:13 +00:00
|
|
|
@override
|
|
|
|
bool get wantKeepAlive => true;
|
2024-09-06 22:02:01 +00:00
|
|
|
}
|
2024-09-08 13:07:39 +00:00
|
|
|
|
|
|
|
class ErrorSnackbar extends SnackBar {
|
|
|
|
final String text;
|
|
|
|
final ColorScheme colorScheme;
|
|
|
|
ErrorSnackbar({
|
|
|
|
required this.text,
|
|
|
|
required this.colorScheme,
|
|
|
|
super.key,
|
|
|
|
}) : super(
|
|
|
|
content: Text(text, style: TextStyle(color: colorScheme.onError)),
|
|
|
|
backgroundColor: colorScheme.error);
|
|
|
|
}
|