|
@@ -50,13 +50,13 @@ class DataProvider extends ChangeNotifier {
|
|
|
}
|
|
|
|
|
|
// basic info
|
|
|
- double height;
|
|
|
- double weight;
|
|
|
- String bmi;
|
|
|
+ double? height;
|
|
|
+ double? weight;
|
|
|
+ String? bmi;
|
|
|
|
|
|
- double breastLine;
|
|
|
- double waistLine;
|
|
|
- double hipLine;
|
|
|
+ double? breastLine;
|
|
|
+ double? waistLine;
|
|
|
+ double? hipLine;
|
|
|
|
|
|
List<FlSpot> weightFlSpots = [];
|
|
|
int weightChartSize = 7;
|
|
@@ -72,7 +72,7 @@ class DataProvider extends ChangeNotifier {
|
|
|
.millisecondsSinceEpoch;
|
|
|
// 基本信息
|
|
|
List<BasicInfo> basicInfoList =
|
|
|
- await BasicInfoMapper().selectWhere("date >= $dateTime90daysAgo");
|
|
|
+ (await BasicInfoMapper().selectWhere("date >= $dateTime90daysAgo"))!;
|
|
|
height = null;
|
|
|
weight = null;
|
|
|
bmi = null;
|
|
@@ -83,7 +83,7 @@ class DataProvider extends ChangeNotifier {
|
|
|
if (basicInfoList.isNotEmpty) {
|
|
|
height = basicInfoList.last.getHeight();
|
|
|
weight = basicInfoList.last.getWeight();
|
|
|
- bmi = (weight / height / height * 10000).toStringAsFixed(2);
|
|
|
+ bmi = (weight! / height! / height! * 10000).toStringAsFixed(2);
|
|
|
breastLine = basicInfoList.last.getBreastLine();
|
|
|
waistLine = basicInfoList.last.getWaistLine();
|
|
|
hipLine = basicInfoList.last.getHipLine();
|
|
@@ -99,33 +99,33 @@ class DataProvider extends ChangeNotifier {
|
|
|
weightFlSpots.add(
|
|
|
FlSpot(
|
|
|
ConvertUtils.localDaysSinceEpoch(
|
|
|
- DateTime.fromMillisecondsSinceEpoch(i.getDate()))
|
|
|
+ DateTime.fromMillisecondsSinceEpoch(i.getDate()!))
|
|
|
.floorToDouble(),
|
|
|
- i.getWeight(),
|
|
|
+ i.getWeight()!,
|
|
|
),
|
|
|
);
|
|
|
brestLineFlSpots.add(
|
|
|
FlSpot(
|
|
|
ConvertUtils.localDaysSinceEpoch(
|
|
|
- DateTime.fromMillisecondsSinceEpoch(i.getDate()))
|
|
|
+ DateTime.fromMillisecondsSinceEpoch(i.getDate()!))
|
|
|
.floorToDouble(),
|
|
|
- i.getBreastLine(),
|
|
|
+ i.getBreastLine()!,
|
|
|
),
|
|
|
);
|
|
|
waistLineFlSpots.add(
|
|
|
FlSpot(
|
|
|
ConvertUtils.localDaysSinceEpoch(
|
|
|
- DateTime.fromMillisecondsSinceEpoch(i.getDate()))
|
|
|
+ DateTime.fromMillisecondsSinceEpoch(i.getDate()!))
|
|
|
.floorToDouble(),
|
|
|
- i.getWaistLine(),
|
|
|
+ i.getWaistLine()!,
|
|
|
),
|
|
|
);
|
|
|
hipLineFlSpots.add(
|
|
|
FlSpot(
|
|
|
ConvertUtils.localDaysSinceEpoch(
|
|
|
- DateTime.fromMillisecondsSinceEpoch(i.getDate()))
|
|
|
+ DateTime.fromMillisecondsSinceEpoch(i.getDate()!))
|
|
|
.floorToDouble(),
|
|
|
- i.getHipLine(),
|
|
|
+ i.getHipLine()!,
|
|
|
),
|
|
|
);
|
|
|
});
|
|
@@ -134,7 +134,7 @@ class DataProvider extends ChangeNotifier {
|
|
|
}
|
|
|
|
|
|
// life info
|
|
|
- int lastNightSleepTime;
|
|
|
+ int? lastNightSleepTime;
|
|
|
double todayInjectKCal = 0;
|
|
|
int todayProgress = 0;
|
|
|
double todayMoney = 0;
|
|
@@ -167,8 +167,8 @@ class DataProvider extends ChangeNotifier {
|
|
|
.millisecondsSinceEpoch;
|
|
|
// 日常生活
|
|
|
List<LifeInfo> lifeInfoList =
|
|
|
- await LifeInfoMapper().selectWhere("date >= $date91daysAgo");
|
|
|
- List<FoodInfo> foodInfoList = await FoodInfoMapper().selectAll();
|
|
|
+ (await LifeInfoMapper().selectWhere("date >= $date91daysAgo"))!;
|
|
|
+ List<FoodInfo>? foodInfoList = await FoodInfoMapper().selectAll();
|
|
|
|
|
|
// 构造点、数据
|
|
|
sleepTimeFlSpots = [];
|
|
@@ -190,32 +190,32 @@ class DataProvider extends ChangeNotifier {
|
|
|
LifeInfo lastLifeInfo = i == 0 ? LifeInfo() : lifeInfoList[i - 1];
|
|
|
LifeInfo currLifeInfo = lifeInfoList[i];
|
|
|
// 准备数据
|
|
|
- int date = currLifeInfo.getDate();
|
|
|
- int lastDate = lastLifeInfo.getDate();
|
|
|
- int sleepTime;
|
|
|
+ int date = currLifeInfo.getDate()!;
|
|
|
+ int? lastDate = lastLifeInfo.getDate();
|
|
|
+ int? sleepTime;
|
|
|
if (lastLifeInfo.getRestTime() != null &&
|
|
|
currLifeInfo.getGetUpTime() != null) {
|
|
|
- sleepTime = currLifeInfo.getGetUpTime() - lastLifeInfo.getRestTime();
|
|
|
+ sleepTime = currLifeInfo.getGetUpTime()! - lastLifeInfo.getRestTime()!;
|
|
|
}
|
|
|
lastNightSleepTime = sleepTime;
|
|
|
double totalCal = 0;
|
|
|
if (currLifeInfo.getBreakfastQuantity() != null) {
|
|
|
- FoodInfo currBreakfastInfo = foodInfoList.firstWhere(
|
|
|
+ FoodInfo currBreakfastInfo = foodInfoList!.firstWhere(
|
|
|
(test) => test.getId() == currLifeInfo.getBreakfastId());
|
|
|
- totalCal += currBreakfastInfo.getHgkCalorie() *
|
|
|
- currLifeInfo.getBreakfastQuantity();
|
|
|
+ totalCal += currBreakfastInfo.getHgkCalorie()! *
|
|
|
+ currLifeInfo.getBreakfastQuantity()!;
|
|
|
}
|
|
|
if (currLifeInfo.getLunchQuantity() != null) {
|
|
|
- FoodInfo currLunchInfo = foodInfoList
|
|
|
+ FoodInfo currLunchInfo = foodInfoList!
|
|
|
.firstWhere((test) => test.getId() == currLifeInfo.getLunchId());
|
|
|
totalCal +=
|
|
|
- currLunchInfo.getHgkCalorie() * currLifeInfo.getLunchQuantity();
|
|
|
+ currLunchInfo.getHgkCalorie()! * currLifeInfo.getLunchQuantity()!;
|
|
|
}
|
|
|
if (currLifeInfo.getDinnerQuantity() != null) {
|
|
|
- FoodInfo currDinnerInfo = foodInfoList
|
|
|
+ FoodInfo currDinnerInfo = foodInfoList!
|
|
|
.firstWhere((test) => test.getId() == currLifeInfo.getDinnerId());
|
|
|
totalCal +=
|
|
|
- currDinnerInfo.getHgkCalorie() * currLifeInfo.getDinnerQuantity();
|
|
|
+ currDinnerInfo.getHgkCalorie()! * currLifeInfo.getDinnerQuantity()!;
|
|
|
}
|
|
|
todayInjectKCal = totalCal;
|
|
|
int progress = 0;
|
|
@@ -224,41 +224,41 @@ class DataProvider extends ChangeNotifier {
|
|
|
progress += currLifeInfo.getGetUpTime() == null
|
|
|
? 0
|
|
|
: VerifyUtils.isBetweenTime(configProvider.getUpTimeStart,
|
|
|
- currLifeInfo.getGetUpTime(), configProvider.getUpTimeEnd)
|
|
|
+ currLifeInfo.getGetUpTime()!, configProvider.getUpTimeEnd)
|
|
|
? 2
|
|
|
: 1;
|
|
|
progress += currLifeInfo.getBreakfastTime() == null
|
|
|
? 0
|
|
|
: VerifyUtils.isBetweenTime(
|
|
|
configProvider.breakfastTimeStart,
|
|
|
- currLifeInfo.getBreakfastTime(),
|
|
|
+ currLifeInfo.getBreakfastTime()!,
|
|
|
configProvider.breakfastTimeEnd)
|
|
|
? 2
|
|
|
: 1;
|
|
|
progress += currLifeInfo.getLunchTime() == null
|
|
|
? 0
|
|
|
: VerifyUtils.isBetweenTime(configProvider.lunchTimeStart,
|
|
|
- currLifeInfo.getLunchTime(), configProvider.lunchTimeEnd)
|
|
|
+ currLifeInfo.getLunchTime()!, configProvider.lunchTimeEnd)
|
|
|
? 2
|
|
|
: 1;
|
|
|
progress += currLifeInfo.getMidRestTime() == null
|
|
|
? 0
|
|
|
: VerifyUtils.isBetweenTime(
|
|
|
configProvider.midRestTimeStart,
|
|
|
- currLifeInfo.getMidRestTime(),
|
|
|
+ currLifeInfo.getMidRestTime()!,
|
|
|
configProvider.midRestTimeEnd)
|
|
|
? 2
|
|
|
: 1;
|
|
|
progress += currLifeInfo.getDinnerTime() == null
|
|
|
? 0
|
|
|
: VerifyUtils.isBetweenTime(configProvider.dinnerTimeStart,
|
|
|
- currLifeInfo.getDinnerTime(), configProvider.dinnerTimeEnd)
|
|
|
+ currLifeInfo.getDinnerTime()!, configProvider.dinnerTimeEnd)
|
|
|
? 2
|
|
|
: 1;
|
|
|
progress += currLifeInfo.getRestTime() == null
|
|
|
? 0
|
|
|
: VerifyUtils.isBetweenTime(configProvider.restTimeStart,
|
|
|
- currLifeInfo.getRestTime(), configProvider.restTimeEnd)
|
|
|
+ currLifeInfo.getRestTime()!, configProvider.restTimeEnd)
|
|
|
? 2
|
|
|
: 1;
|
|
|
todayProgress = progress;
|
|
@@ -269,7 +269,7 @@ class DataProvider extends ChangeNotifier {
|
|
|
DateTime.fromMillisecondsSinceEpoch(lastDate))
|
|
|
.floorToDouble(),
|
|
|
ConvertUtils.fixedDouble(
|
|
|
- ConvertUtils.hourFormMilliseconds(lastNightSleepTime), 2)));
|
|
|
+ ConvertUtils.hourFormMilliseconds(lastNightSleepTime!), 2)));
|
|
|
}
|
|
|
injectKCalFlSpots.add(FlSpot(
|
|
|
ConvertUtils.localDaysSinceEpoch(
|
|
@@ -290,7 +290,7 @@ class DataProvider extends ChangeNotifier {
|
|
|
.floorToDouble(),
|
|
|
24 -
|
|
|
ConvertUtils.hourFormMillisecondsSinceEpoch(
|
|
|
- currLifeInfo.getGetUpTime())));
|
|
|
+ currLifeInfo.getGetUpTime()!)));
|
|
|
}
|
|
|
if (currLifeInfo.getMidRestTime() != null) {
|
|
|
midRestTimeFlSpots.add(FlSpot(
|
|
@@ -299,7 +299,7 @@ class DataProvider extends ChangeNotifier {
|
|
|
.floorToDouble(),
|
|
|
24 -
|
|
|
ConvertUtils.hourFormMillisecondsSinceEpoch(
|
|
|
- currLifeInfo.getMidRestTime())));
|
|
|
+ currLifeInfo.getMidRestTime()!)));
|
|
|
}
|
|
|
if (currLifeInfo.getRestTime() != null) {
|
|
|
restTimeFlSpots.add(FlSpot(
|
|
@@ -308,7 +308,7 @@ class DataProvider extends ChangeNotifier {
|
|
|
.floorToDouble(),
|
|
|
24 -
|
|
|
ConvertUtils.hourFormMillisecondsSinceEpoch(
|
|
|
- currLifeInfo.getRestTime())));
|
|
|
+ currLifeInfo.getRestTime()!)));
|
|
|
}
|
|
|
|
|
|
if (currLifeInfo.getBreakfastTime() != null) {
|
|
@@ -318,7 +318,7 @@ class DataProvider extends ChangeNotifier {
|
|
|
.floorToDouble(),
|
|
|
24 -
|
|
|
ConvertUtils.hourFormMillisecondsSinceEpoch(
|
|
|
- currLifeInfo.getBreakfastTime())));
|
|
|
+ currLifeInfo.getBreakfastTime()!)));
|
|
|
}
|
|
|
if (currLifeInfo.getLunchTime() != null) {
|
|
|
eatLunchTimeFlSpots.add(FlSpot(
|
|
@@ -327,7 +327,7 @@ class DataProvider extends ChangeNotifier {
|
|
|
.floorToDouble(),
|
|
|
24 -
|
|
|
ConvertUtils.hourFormMillisecondsSinceEpoch(
|
|
|
- currLifeInfo.getLunchTime())));
|
|
|
+ currLifeInfo.getLunchTime()!)));
|
|
|
}
|
|
|
if (currLifeInfo.getDinnerTime() != null) {
|
|
|
eatDinnerTimeFlSpots.add(FlSpot(
|
|
@@ -336,7 +336,7 @@ class DataProvider extends ChangeNotifier {
|
|
|
.floorToDouble(),
|
|
|
24 -
|
|
|
ConvertUtils.hourFormMillisecondsSinceEpoch(
|
|
|
- currLifeInfo.getDinnerTime())));
|
|
|
+ currLifeInfo.getDinnerTime()!)));
|
|
|
}
|
|
|
|
|
|
double totalMoney = 0;
|
|
@@ -371,44 +371,44 @@ class DataProvider extends ChangeNotifier {
|
|
|
int date7daysAgo = ConvertUtils.dateOfDateTime(DateTime.now())
|
|
|
.subtract(Duration(days: 7))
|
|
|
.millisecondsSinceEpoch;
|
|
|
- List<ExerciseInfo> exerciseInfoList = await ExerciseInfoMapper()
|
|
|
- .selectWhere("exerciseTime >= $date90daysAgo");
|
|
|
+ List<ExerciseInfo> exerciseInfoList = (await ExerciseInfoMapper()
|
|
|
+ .selectWhere("exerciseTime >= $date90daysAgo"))!;
|
|
|
List<ExerciseInfo> sevenDayExerciseInfoList =
|
|
|
- await ExerciseInfoMapper().selectWhere("exerciseTime >= $date7daysAgo");
|
|
|
+ (await ExerciseInfoMapper().selectWhere("exerciseTime >= $date7daysAgo"))!;
|
|
|
List<ScheduledExercise> schedules =
|
|
|
- await ScheduledExerciseMapper().selectAll();
|
|
|
- List<SportInfo> sports = await SportInfoMapper().selectAll();
|
|
|
+ (await ScheduledExerciseMapper().selectAll())!;
|
|
|
+ List<SportInfo>? sports = await SportInfoMapper().selectAll();
|
|
|
scheduledExerciseSportInfoList = schedules.map((i) {
|
|
|
return MapEntry(
|
|
|
- i, sports.firstWhere((test) => test.getId() == i.getSportId()));
|
|
|
+ i, sports!.firstWhere((test) => test.getId() == i.getSportId()));
|
|
|
}).toList();
|
|
|
// 卡
|
|
|
scheduledExerciseCount = schedules.length;
|
|
|
sevenDayExerciseTimes = sevenDayExerciseInfoList.length;
|
|
|
sevenDayExerciseTotalKCal = 0;
|
|
|
sevenDayExerciseInfoList.forEach((i) {
|
|
|
- sevenDayExerciseTotalKCal += i.getExerciseQuantity() *
|
|
|
- sports
|
|
|
+ sevenDayExerciseTotalKCal += i.getExerciseQuantity()! *
|
|
|
+ sports!
|
|
|
.firstWhere((test) => test.getId() == i.getSportId())
|
|
|
- .getHkCalorie();
|
|
|
+ .getHkCalorie()!;
|
|
|
});
|
|
|
// 表
|
|
|
exerciseInfoFlSpots = [];
|
|
|
Map<int, double> temp = {};
|
|
|
exerciseInfoList.forEach((i) {
|
|
|
int currDay = ConvertUtils.localDaysSinceEpoch(
|
|
|
- DateTime.fromMillisecondsSinceEpoch(i.getExerciseTime()))
|
|
|
+ DateTime.fromMillisecondsSinceEpoch(i.getExerciseTime()!))
|
|
|
.floor();
|
|
|
if (temp[currDay] == null) {
|
|
|
- temp[currDay] = i.getExerciseQuantity() *
|
|
|
- sports
|
|
|
+ temp[currDay] = i.getExerciseQuantity()! *
|
|
|
+ sports!
|
|
|
.firstWhere((test) => test.getId() == i.getSportId())
|
|
|
- .getHkCalorie();
|
|
|
+ .getHkCalorie()!;
|
|
|
} else {
|
|
|
- temp[currDay] += i.getExerciseQuantity() *
|
|
|
- sports
|
|
|
+ temp[currDay] += i.getExerciseQuantity()! *
|
|
|
+ sports!
|
|
|
.firstWhere((test) => test.getId() == i.getSportId())
|
|
|
- .getHkCalorie();
|
|
|
+ .getHkCalorie()!;
|
|
|
}
|
|
|
});
|
|
|
temp.forEach((k, v) {
|
|
@@ -432,13 +432,13 @@ class DataProvider extends ChangeNotifier {
|
|
|
.subtract(Duration(days: 90))
|
|
|
.millisecondsSinceEpoch;
|
|
|
List<StudyInfo> studyInfoList =
|
|
|
- await StudyInfoMapper().selectWhere("date >= $date90daysAgo");
|
|
|
+ (await StudyInfoMapper().selectWhere("date >= $date90daysAgo"))!;
|
|
|
List<StudyInfo> lateList =
|
|
|
- await StudyInfoMapper().selectWhere("isLate = 1");
|
|
|
+ (await StudyInfoMapper().selectWhere("isLate = 1"))!;
|
|
|
List<StudyInfo> absentList =
|
|
|
- await StudyInfoMapper().selectWhere("isAbsent = 1");
|
|
|
- List<StudyInfo> unSolveTroublesAndUnDoneHomeList = await StudyInfoMapper()
|
|
|
- .selectWhere("isTroublesSolved = 0 or isHomeWorkDone == 0");
|
|
|
+ (await StudyInfoMapper().selectWhere("isAbsent = 1"))!;
|
|
|
+ List<StudyInfo> unSolveTroublesAndUnDoneHomeList = (await StudyInfoMapper()
|
|
|
+ .selectWhere("isTroublesSolved = 0 or isHomeWorkDone == 0"))!;
|
|
|
lateTimes = 0;
|
|
|
absentTimes = 0;
|
|
|
unSolveTroubles = 0;
|
|
@@ -463,7 +463,7 @@ class DataProvider extends ChangeNotifier {
|
|
|
Map<int, int> temp = {};
|
|
|
studyInfoList.forEach((i) {
|
|
|
int currDay = ConvertUtils.localDaysSinceEpoch(
|
|
|
- DateTime.fromMillisecondsSinceEpoch(i.getDate()))
|
|
|
+ DateTime.fromMillisecondsSinceEpoch(i.getDate()!))
|
|
|
.floor();
|
|
|
if (temp[currDay] == null) {
|
|
|
temp[currDay] = 1;
|
|
@@ -486,17 +486,17 @@ class DataProvider extends ChangeNotifier {
|
|
|
int todayZeroTime =
|
|
|
ConvertUtils.dateOfDateTime(DateTime.now()).millisecondsSinceEpoch;
|
|
|
List<BasicInfo> l1 =
|
|
|
- await BasicInfoMapper().selectWhere("date >= $todayZeroTime");
|
|
|
+ (await BasicInfoMapper().selectWhere("date >= $todayZeroTime"))!;
|
|
|
if (l1.isNotEmpty) {
|
|
|
todayEvaluate++;
|
|
|
}
|
|
|
List<ExerciseInfo> l2 =
|
|
|
- await ExerciseInfoMapper().selectWhere("exerciseTime >= $todayZeroTime");
|
|
|
+ (await ExerciseInfoMapper().selectWhere("exerciseTime >= $todayZeroTime"))!;
|
|
|
if (l2.isNotEmpty) {
|
|
|
todayEvaluate++;
|
|
|
}
|
|
|
List<StudyInfo> l3 =
|
|
|
- await StudyInfoMapper().selectWhere("date >= $todayZeroTime");
|
|
|
+ (await StudyInfoMapper().selectWhere("date >= $todayZeroTime"))!;
|
|
|
if (l3.isNotEmpty) {
|
|
|
todayEvaluate++;
|
|
|
}
|