2023-05-30 09:38:54 +02:00
|
|
|
import 'dart:math';
|
|
|
|
import 'package:ernaehrung/android/components/meal_page_text/days_component.dart';
|
|
|
|
import 'package:ernaehrung/android/config/cast_helper.dart';
|
2023-05-31 13:36:44 +02:00
|
|
|
import 'package:fl_chart/fl_chart.dart';
|
2023-05-30 21:03:46 +02:00
|
|
|
import 'package:flutter/cupertino.dart';
|
2023-05-31 13:36:44 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2023-05-30 09:38:54 +02:00
|
|
|
import 'package:hive/hive.dart';
|
2023-05-29 12:08:46 +02:00
|
|
|
import '../models/food.dart';
|
2023-05-30 22:09:16 +02:00
|
|
|
import 'format_helper.dart';
|
2023-05-29 12:08:46 +02:00
|
|
|
|
|
|
|
class StatisticsService {
|
|
|
|
|
2023-05-30 21:03:46 +02:00
|
|
|
static final StatisticsService _instance = StatisticsService._internal();
|
|
|
|
factory StatisticsService() => _instance;
|
|
|
|
|
|
|
|
static StatisticsService get instance => _instance;
|
|
|
|
|
|
|
|
StatisticsService._internal() {
|
2023-05-30 09:38:54 +02:00
|
|
|
initBoxes();
|
|
|
|
}
|
2023-05-30 21:03:46 +02:00
|
|
|
final String reducedStatisticsBoxName = 'STATISTICS_REDUCED';
|
|
|
|
final String mainStatisticsBoxName = 'STATISTICS_MAIN';
|
2023-05-30 22:09:16 +02:00
|
|
|
final String progressStatisticsBoxName = 'STATISTICS_PROGRESS';
|
2023-05-30 21:03:46 +02:00
|
|
|
ValueNotifier<int> eatenCalories = ValueNotifier<int>(0);
|
|
|
|
ValueNotifier<List<double>> ingredients = ValueNotifier<List<double>>([0,0,0]);
|
2023-05-30 22:09:16 +02:00
|
|
|
ValueNotifier<int> dailyAverageForCurrentWeek = ValueNotifier<int>(0);
|
|
|
|
ValueNotifier<List<Food>> weeklyCaloryRanking = ValueNotifier<List<Food>>([]);
|
2023-05-31 13:36:44 +02:00
|
|
|
ValueNotifier<List<BarChartGroupData>> barChartData = ValueNotifier<List<BarChartGroupData>>([]);
|
2023-05-30 21:03:46 +02:00
|
|
|
|
2023-05-30 09:38:54 +02:00
|
|
|
initBoxes()async{
|
|
|
|
Box reducedBox = Hive.box(reducedStatisticsBoxName);
|
2023-05-30 22:09:16 +02:00
|
|
|
Box progressBox = Hive.box(progressStatisticsBoxName);
|
|
|
|
|
|
|
|
putIfKeyNotExists([reducedBox,progressBox], 'FRÜHSTÜCK', []);
|
|
|
|
putIfKeyNotExists([reducedBox,progressBox], 'MITTAGESSEN', []);
|
|
|
|
putIfKeyNotExists([reducedBox,progressBox], 'ABENDESSEN', []);
|
2023-05-30 09:38:54 +02:00
|
|
|
updateReducedBoxByTimespan(TimeSpan.day);
|
|
|
|
}
|
|
|
|
|
2023-05-30 22:09:16 +02:00
|
|
|
void putIfKeyNotExists(List<Box> boxes, String key, dynamic value) {
|
|
|
|
for(int i = 0; i < boxes.length;i++){
|
|
|
|
if (!boxes[i].containsKey(key)) {
|
|
|
|
boxes[i].put(key, value);
|
|
|
|
}
|
2023-05-30 09:38:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
updateReducedBoxByTimespan(TimeSpan timeSpan){
|
|
|
|
clearReducedBoxBeforeUpdate();
|
2023-05-30 22:09:16 +02:00
|
|
|
int timestamp = getTimestampFromNow();
|
2023-05-30 09:38:54 +02:00
|
|
|
switch(timeSpan){
|
|
|
|
case TimeSpan.day:
|
2023-05-30 22:09:16 +02:00
|
|
|
getNewFoodAndUpdateBoxByTimestampAndBox(timestamp, Hive.box(reducedStatisticsBoxName));
|
2023-05-30 09:38:54 +02:00
|
|
|
break;
|
|
|
|
case TimeSpan.week:
|
|
|
|
List<int> currentWeek = getTimestampsByTimestampAndTimespan(TimeSpan.week,timestamp);
|
|
|
|
for(int i = 0;i < currentWeek.length;i++){
|
2023-05-30 22:09:16 +02:00
|
|
|
getNewFoodAndUpdateBoxByTimestampAndBox(currentWeek[i],Hive.box(reducedStatisticsBoxName));
|
2023-05-30 09:38:54 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TimeSpan.month:
|
2023-05-30 14:40:39 +02:00
|
|
|
List<int> currentMonth = getTimestampsByTimestampAndTimespan(TimeSpan.month,timestamp);
|
|
|
|
for(int i = 0;i < currentMonth.length;i++){
|
2023-05-30 22:09:16 +02:00
|
|
|
getNewFoodAndUpdateBoxByTimestampAndBox(currentMonth[i],Hive.box(reducedStatisticsBoxName));
|
2023-05-30 09:38:54 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2023-05-30 22:09:16 +02:00
|
|
|
updateCalculationsAndNotfiyListenersForPorgressStatistics();
|
2023-05-30 09:38:54 +02:00
|
|
|
}
|
|
|
|
|
2023-05-30 22:09:16 +02:00
|
|
|
void updateCalculationsAndNotfiyListenersForPorgressStatistics(){
|
|
|
|
eatenCalories.value = getAllEatenCaloriesByBox(Hive.box(reducedStatisticsBoxName));
|
2023-05-30 21:03:46 +02:00
|
|
|
eatenCalories.notifyListeners();
|
|
|
|
ingredients.value = getAllEatenIngredientsForTodayStatistics();
|
|
|
|
ingredients.notifyListeners();
|
|
|
|
}
|
2023-05-30 22:09:16 +02:00
|
|
|
|
|
|
|
void getNewFoodAndUpdateBoxByTimestampAndBox(int timestamp, Box box){
|
2023-05-30 09:38:54 +02:00
|
|
|
Map<String,List<Food>> newFood = getFoodMapForGivenTimestampFromMainBox(timestamp);
|
|
|
|
if(newFood.keys.isNotEmpty){
|
2023-05-30 22:09:16 +02:00
|
|
|
setElementsOfBoxByBox(newFood, box);
|
2023-05-30 09:38:54 +02:00
|
|
|
}
|
2023-05-29 12:08:46 +02:00
|
|
|
}
|
|
|
|
|
2023-05-30 09:38:54 +02:00
|
|
|
List<int> getTimestampsByTimestampAndTimespan(TimeSpan timespan, int timestamp) {
|
|
|
|
int range = timespan == TimeSpan.week ? 7 : 31;
|
|
|
|
int targetWeekday = DateTime.monday; // Example target weekday (Monday)
|
|
|
|
DateTime currentDateTime = DateTime.fromMillisecondsSinceEpoch(timestamp * 1000);
|
|
|
|
int currentWeekday = currentDateTime.weekday;
|
|
|
|
int daysToAdd = targetWeekday - currentWeekday;
|
|
|
|
DateTime targetDateTime = currentDateTime.add(Duration(days: daysToAdd));
|
|
|
|
|
|
|
|
List<int> timestampsForWeekdays = [];
|
|
|
|
for (int i = 0; i < range; i++) {
|
|
|
|
timestampsForWeekdays.add(targetDateTime.millisecondsSinceEpoch ~/ 1000);
|
|
|
|
targetDateTime = targetDateTime.add(const Duration(days: 1));
|
|
|
|
}
|
|
|
|
return timestampsForWeekdays;
|
2023-05-29 12:08:46 +02:00
|
|
|
}
|
|
|
|
|
2023-05-30 09:38:54 +02:00
|
|
|
clearReducedBoxBeforeUpdate(){
|
|
|
|
Box box = Hive.box(reducedStatisticsBoxName);
|
|
|
|
for(int i = 0; i < box.keys.length;i++){
|
|
|
|
box.put(box.keys.elementAt(i), []);
|
|
|
|
}
|
|
|
|
}
|
2023-05-30 21:03:46 +02:00
|
|
|
|
2023-05-30 22:09:16 +02:00
|
|
|
setElementsOfBoxByBox(Map<String,List<Food>> newFood,Box box){
|
2023-05-30 09:38:54 +02:00
|
|
|
Iterable<String> keys = newFood.keys;
|
|
|
|
for(int i = 0; i < keys.length;i++){
|
2023-05-30 18:02:13 +02:00
|
|
|
List<Food> alreadyExisting = castDynamicToListFood(box.get(keys.elementAt(i)));
|
|
|
|
alreadyExisting.addAll(newFood[keys.elementAt(i)] as Iterable<Food>);
|
|
|
|
box.put(keys.elementAt(i), alreadyExisting);
|
2023-05-30 09:38:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getDayAsIntFromTimestamp(int timestamp){
|
|
|
|
DateTime dateTime = DateTime.fromMillisecondsSinceEpoch(timestamp * 1000);
|
|
|
|
return dateTime.day;
|
|
|
|
}
|
2023-05-29 12:08:46 +02:00
|
|
|
|
2023-05-30 09:38:54 +02:00
|
|
|
Map<String,List<Food>> getFoodMapForGivenTimestampFromMainBox(int timestamp){
|
|
|
|
Box box = Hive.box(mainStatisticsBoxName);
|
|
|
|
dynamic matchingTimestamp = getMatchingTimeStamp(box, timestamp);
|
|
|
|
if(matchingTimestamp != null){
|
|
|
|
return castDynamicMap(box.get(matchingTimestamp));
|
|
|
|
}
|
|
|
|
return <String,List<Food>>{};
|
|
|
|
}
|
|
|
|
|
|
|
|
getMatchingTimeStamp(Box box,int newTimestamp){
|
|
|
|
if(box.keys.isNotEmpty){
|
|
|
|
for(int i = 0; i < box.keys.length;i++){
|
|
|
|
int timestamp = box.keys.elementAt(i);
|
|
|
|
if(isDateEqual(newTimestamp, timestamp)){
|
|
|
|
return timestamp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getMonthAsIntFromTimestamp(int timestamp){
|
|
|
|
DateTime dateTime = DateTime.fromMillisecondsSinceEpoch(timestamp * 1000);
|
|
|
|
return dateTime.month;
|
|
|
|
}
|
|
|
|
|
|
|
|
getYearAsIntFromTimestamp(int timestamp){
|
|
|
|
DateTime dateTime = DateTime.fromMillisecondsSinceEpoch(timestamp * 1000);
|
|
|
|
return dateTime.year;
|
|
|
|
}
|
|
|
|
|
|
|
|
isDateEqual(int timestamp1, int timestamp2){
|
|
|
|
return
|
|
|
|
getDayAsIntFromTimestamp(timestamp1) == getDayAsIntFromTimestamp(timestamp2) &&
|
|
|
|
getMonthAsIntFromTimestamp(timestamp1) == getMonthAsIntFromTimestamp(timestamp2) &&
|
|
|
|
getYearAsIntFromTimestamp(timestamp1) == getYearAsIntFromTimestamp(timestamp2);
|
|
|
|
}
|
|
|
|
|
|
|
|
addItemToMainBox(Food value, String mealType){
|
2023-05-29 12:08:46 +02:00
|
|
|
// Hive.deleteFromDisk();
|
2023-05-30 09:38:54 +02:00
|
|
|
Box box = Hive.box(mainStatisticsBoxName);
|
2023-05-29 12:08:46 +02:00
|
|
|
DateTime dateTime = DateTime.now();
|
2023-05-30 09:38:54 +02:00
|
|
|
|
|
|
|
// DEBUG
|
|
|
|
//DateTime dateTime = getRandomTimestampForTesting();
|
|
|
|
|
|
|
|
int newTimestamp = dateTime.millisecondsSinceEpoch.toInt() ~/ 1000;
|
|
|
|
|
|
|
|
dynamic matchingTimestamp = getMatchingTimeStamp(box, newTimestamp);
|
|
|
|
if(matchingTimestamp != null){
|
|
|
|
newTimestamp = matchingTimestamp;
|
|
|
|
}
|
2023-05-30 14:50:27 +02:00
|
|
|
Map<String, List<Food>> valueMap = castDynamicMap(box.get(newTimestamp));
|
2023-05-29 12:08:46 +02:00
|
|
|
List<Food> values = [];
|
|
|
|
if(valueMap.containsKey(mealType)){
|
|
|
|
values = valueMap[mealType]!;
|
|
|
|
}
|
|
|
|
values.add(value);
|
|
|
|
valueMap[mealType] = values;
|
2023-05-30 09:38:54 +02:00
|
|
|
box.put(newTimestamp, valueMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
getRandomTimestampForTesting(){
|
|
|
|
DateTime now = DateTime.now();
|
|
|
|
DateTime startOfWeek = now.subtract(Duration(days: now.weekday - 1));
|
2023-05-30 14:40:39 +02:00
|
|
|
DateTime endOfWeek = startOfWeek.add(const Duration(days: 6));
|
2023-05-30 09:38:54 +02:00
|
|
|
|
|
|
|
Random random = Random();
|
|
|
|
int randomMilliseconds = random.nextInt(endOfWeek.millisecondsSinceEpoch - startOfWeek.millisecondsSinceEpoch);
|
|
|
|
DateTime randomTimestamp = startOfWeek.add(Duration(milliseconds: randomMilliseconds));
|
|
|
|
|
|
|
|
return randomTimestamp;
|
2023-05-29 12:08:46 +02:00
|
|
|
}
|
|
|
|
|
2023-05-30 22:09:16 +02:00
|
|
|
int getAllEatenCaloriesByBox(Box box){
|
2023-05-30 16:17:51 +02:00
|
|
|
num sum = 0;
|
2023-05-29 22:04:44 +02:00
|
|
|
for(int i = 0; i < box.keys.length;i++){
|
|
|
|
for(Food food in box.get(box.keys.elementAt(i))){
|
2023-05-30 16:17:51 +02:00
|
|
|
sum += food.calories;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sum as int;
|
|
|
|
}
|
|
|
|
|
2023-05-30 17:28:16 +02:00
|
|
|
List<double> getAllEatenIngredientsForTodayStatistics(){
|
|
|
|
Box box = Hive.box(reducedStatisticsBoxName);
|
|
|
|
num fat = 0;
|
|
|
|
num protein = 0;
|
|
|
|
num carbs = 0;
|
|
|
|
for(int i = 0; i < box.keys.length;i++){
|
|
|
|
for(Food food in box.get(box.keys.elementAt(i))){
|
|
|
|
fat += food.fatg;
|
2023-05-30 21:03:46 +02:00
|
|
|
protein += food.proteing;
|
|
|
|
carbs += food.carbohydrateg;
|
2023-05-30 17:28:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return [fat as double,protein as double,carbs as double];
|
|
|
|
}
|
|
|
|
|
2023-05-30 22:09:16 +02:00
|
|
|
void updateCalculationsAndNotfiyListenersForTodayStatistics(){
|
|
|
|
dailyAverageForCurrentWeek.value = getAverageCaloriesForCurrentWeekOnDailyBasis();
|
|
|
|
dailyAverageForCurrentWeek.notifyListeners();
|
|
|
|
weeklyCaloryRanking.value = getWeeklyCaloryRanking();
|
|
|
|
weeklyCaloryRanking.notifyListeners();
|
2023-05-31 13:36:44 +02:00
|
|
|
barChartData.value = getBarChartData();
|
|
|
|
barChartData.notifyListeners();
|
2023-05-30 22:09:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void updateProgressBoxValues(){
|
|
|
|
Box box = Hive.box(progressStatisticsBoxName);
|
|
|
|
box.clear();
|
|
|
|
int timestamp = getTimestampFromNow();
|
|
|
|
List<int> currentWeek = getTimestampsByTimestampAndTimespan(TimeSpan.week,timestamp);
|
|
|
|
for(int i = 0;i < currentWeek.length;i++){
|
|
|
|
getNewFoodAndUpdateBoxByTimestampAndBox(currentWeek[i],box);
|
2023-05-29 12:08:46 +02:00
|
|
|
}
|
2023-05-30 22:09:16 +02:00
|
|
|
updateCalculationsAndNotfiyListenersForTodayStatistics();
|
2023-05-29 12:08:46 +02:00
|
|
|
}
|
|
|
|
|
2023-05-30 22:09:16 +02:00
|
|
|
int getAverageCaloriesForCurrentWeekOnDailyBasis(){
|
|
|
|
Box box = Hive.box(progressStatisticsBoxName);
|
|
|
|
return getAllEatenCaloriesByBox(box)~/7;
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Food> getWeeklyCaloryRanking(){
|
|
|
|
int timestamp = getTimestampFromNow();
|
|
|
|
List<int> currentWeek = getTimestampsByTimestampAndTimespan(TimeSpan.week,timestamp);
|
|
|
|
List<Food> allFoodsOfWeek = [];
|
|
|
|
for(int i = 0;i < currentWeek.length;i++){
|
|
|
|
Map<String,List<Food>> foodFromMainBox = getFoodMapForGivenTimestampFromMainBox(currentWeek[i]);
|
|
|
|
Iterable<String> keys = foodFromMainBox.keys;
|
|
|
|
if(keys.isNotEmpty){
|
|
|
|
for(int i = 0; i < keys.length;i++ ){
|
|
|
|
allFoodsOfWeek.addAll(foodFromMainBox[keys.elementAt(i)] as Iterable<Food>);
|
|
|
|
}
|
2023-05-29 12:08:46 +02:00
|
|
|
}
|
|
|
|
}
|
2023-05-30 22:09:16 +02:00
|
|
|
allFoodsOfWeek.sort((a, b) => b.calories - a.calories);
|
|
|
|
return getListOfDistinctElements(allFoodsOfWeek);
|
2023-05-29 12:08:46 +02:00
|
|
|
}
|
|
|
|
|
2023-05-31 13:36:44 +02:00
|
|
|
int getSumOfCaloriesByFoodList(List<Food> foods){
|
|
|
|
int sum = 0;
|
|
|
|
for(int i = 0; i < foods.length;i++){
|
|
|
|
sum += foods[i].calories as int;
|
|
|
|
}
|
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
|
|
|
|
List<BarChartGroupData> getBarChartData(){
|
|
|
|
int timestamp = getTimestampFromNow();
|
|
|
|
List<int> currentWeek = getTimestampsByTimestampAndTimespan(TimeSpan.week,timestamp);
|
|
|
|
int maxValue = 0;
|
|
|
|
List<List<int>> result =
|
|
|
|
[
|
|
|
|
[0,0,0],
|
|
|
|
[0,0,0],
|
|
|
|
[0,0,0],
|
|
|
|
[0,0,0],
|
|
|
|
[0,0,0],
|
|
|
|
[0,0,0],
|
|
|
|
[0,0,0],
|
|
|
|
]; //[[breakfast,lunch,dinner],[breakfast,lunch,dinner] ...]
|
|
|
|
for(int i = 0;i < currentWeek.length;i++){
|
|
|
|
Map<String,List<Food>> foodMapFromMainBoxByTimestamp = getFoodMapForGivenTimestampFromMainBox(currentWeek[i]);
|
|
|
|
Iterable<String> keys = foodMapFromMainBoxByTimestamp.keys;
|
|
|
|
if(keys.isNotEmpty){
|
|
|
|
for(int j = 0; j < keys.length;j++){
|
|
|
|
int value = getSumOfCaloriesByFoodList(foodMapFromMainBoxByTimestamp[keys.elementAt(j)] ?? []);
|
|
|
|
if(value > maxValue){
|
|
|
|
maxValue = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
result[i][j] = (value * 175) ~/ 100;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return [
|
|
|
|
BarChartGroupData(
|
|
|
|
x: 0,
|
|
|
|
barRods: [BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.yellow,
|
|
|
|
toY: result[0][0].toDouble(), // First segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.red,
|
|
|
|
toY: result[0][1].toDouble(), // Second segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.green,
|
|
|
|
toY: result[0][2].toDouble(), // Second segment color
|
|
|
|
),],
|
|
|
|
showingTooltipIndicators: [0],
|
|
|
|
groupVertically: true
|
|
|
|
),
|
|
|
|
BarChartGroupData(
|
|
|
|
x: 1,
|
|
|
|
barRods: [BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.yellow,
|
|
|
|
toY: result[1][0].toDouble(),
|
|
|
|
// First segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.red,
|
|
|
|
toY: result[1][1].toDouble(), // Second segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.green,
|
|
|
|
toY: result[1][2].toDouble(), // Second segment color
|
|
|
|
),],
|
|
|
|
showingTooltipIndicators: [0],
|
|
|
|
),
|
|
|
|
BarChartGroupData(
|
|
|
|
x: 2,
|
|
|
|
barRods: [BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.yellow,
|
|
|
|
toY: result[2][0].toDouble(), // First segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.red,
|
|
|
|
toY: result[2][1].toDouble(), // Second segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.green,
|
|
|
|
toY: result[2][2].toDouble(), // Second segment color
|
|
|
|
),],
|
|
|
|
showingTooltipIndicators: [0],
|
|
|
|
),
|
|
|
|
BarChartGroupData(
|
|
|
|
x: 3,
|
|
|
|
barRods: [BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.yellow,
|
|
|
|
toY: result[3][0].toDouble(), // First segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.red,
|
|
|
|
toY: result[3][1].toDouble(), // Second segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.green,
|
|
|
|
toY: result[3][2].toDouble(), // Second segment color
|
|
|
|
),],
|
|
|
|
showingTooltipIndicators: [0],
|
|
|
|
),
|
|
|
|
BarChartGroupData(
|
|
|
|
x: 4,
|
|
|
|
barRods: [BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.yellow,
|
|
|
|
toY: result[4][0].toDouble(), // First segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.red,
|
|
|
|
toY: result[4][1].toDouble(), // Second segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.green,
|
|
|
|
toY: result[4][2].toDouble(), // Second segment color
|
|
|
|
),],
|
|
|
|
showingTooltipIndicators: [0],
|
|
|
|
),
|
|
|
|
BarChartGroupData(
|
|
|
|
x: 5,
|
|
|
|
barRods: [BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.yellow,
|
|
|
|
toY: result[5][0].toDouble(), // First segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.red,
|
|
|
|
toY: result[5][1].toDouble(), // Second segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.green,
|
|
|
|
toY: result[5][2].toDouble(), // Second segment color
|
|
|
|
),], showingTooltipIndicators: [0],
|
|
|
|
),
|
|
|
|
BarChartGroupData(
|
|
|
|
x: 6,
|
|
|
|
barRods: [BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.yellow,
|
|
|
|
toY: result[6][0].toDouble(), // First segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.red,
|
|
|
|
toY: result[6][1].toDouble(), // Second segment color
|
|
|
|
), BarChartRodData(
|
|
|
|
width: 7.5, // Adjust the width of the bar if needed
|
|
|
|
color: Colors.green,
|
|
|
|
toY: result[6][2].toDouble(), // Second segment color
|
|
|
|
),], showingTooltipIndicators: [0],
|
|
|
|
),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2023-05-30 22:09:16 +02:00
|
|
|
getTimestampFromNow(){
|
|
|
|
DateTime now = DateTime.now();
|
|
|
|
return now.millisecondsSinceEpoch.toInt() ~/ 1000;
|
|
|
|
}
|
2023-05-31 13:36:44 +02:00
|
|
|
|
2023-05-29 12:08:46 +02:00
|
|
|
showItems(){
|
2023-05-30 09:38:54 +02:00
|
|
|
print("Statistics.dart - showItems() - ITEMS");
|
|
|
|
//Hive.box(boxName).clear();
|
|
|
|
print(Hive.box(mainStatisticsBoxName).keys.length);
|
|
|
|
for(int i = 0; i < Hive.box(mainStatisticsBoxName).keys.length; i++){
|
|
|
|
print(Hive.box(mainStatisticsBoxName).keys.elementAt(i));
|
|
|
|
print(Hive.box(mainStatisticsBoxName).values.elementAt(i));
|
|
|
|
//print(Hive.box(boxName).keys.elementAt(i) + " " + Hive.box(boxName).values.elementAt(i));
|
|
|
|
}
|
2023-05-29 12:08:46 +02:00
|
|
|
}
|
|
|
|
|
2023-05-31 13:36:44 +02:00
|
|
|
|
|
|
|
|
2023-05-29 12:08:46 +02:00
|
|
|
}
|