更新睡眠报告
This commit is contained in:
@@ -50,7 +50,7 @@ class _DataShowWidgetState extends State<DataShowWidget> {
|
||||
children: [
|
||||
// 放入传入的 widget1
|
||||
Container(
|
||||
width: MediaQuery.sizeOf(context).width * 0.4, // 固定宽度
|
||||
width: MediaQuery.sizeOf(context).width * 0.35, // 固定宽度
|
||||
decoration: BoxDecoration(),
|
||||
child: Align(
|
||||
alignment: widget.alignment == MainAxisAlignment.start
|
||||
|
||||
@@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||
import 'dart:ui' as ui;
|
||||
|
||||
class DotBarChart extends StatefulWidget {
|
||||
final List<Map<String, dynamic>> showLabel;
|
||||
@@ -39,7 +40,6 @@ class _DotBarChartState extends State<DotBarChart> {
|
||||
void _showTooltip(BuildContext context, Map<String, dynamic> data,
|
||||
Offset position, double dotY) {
|
||||
_removeOverlay();
|
||||
|
||||
final RenderBox renderBox = context.findRenderObject() as RenderBox;
|
||||
final Offset globalPosition = renderBox.localToGlobal(position);
|
||||
|
||||
@@ -55,11 +55,6 @@ class _DotBarChartState extends State<DotBarChart> {
|
||||
color: themeController.currentColor.sc5,
|
||||
borderRadius: BorderRadius.circular(8.rpx),
|
||||
boxShadow: [
|
||||
// BoxShadow(
|
||||
// color: Colors.black.withOpacity(0.6),
|
||||
// blurRadius: 10.rpx,
|
||||
// offset: Offset(0, 4.rpx),
|
||||
// ),
|
||||
BoxShadow(
|
||||
color: Colors.black.withOpacity(0.5),
|
||||
blurRadius: 12.rpx,
|
||||
@@ -92,7 +87,6 @@ class _DotBarChartState extends State<DotBarChart> {
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
Overlay.of(context)?.insert(_overlayEntry!);
|
||||
}
|
||||
|
||||
@@ -103,7 +97,6 @@ class _DotBarChartState extends State<DotBarChart> {
|
||||
int maxTimes = widget.showLabel
|
||||
.map((e) => e['times'] ?? 0)
|
||||
.reduce((a, b) => a > b ? a : b);
|
||||
|
||||
int yMax = (maxTimes / 10).ceil() * 10;
|
||||
if (yMax == 0) yMax = 10;
|
||||
|
||||
@@ -113,23 +106,35 @@ class _DotBarChartState extends State<DotBarChart> {
|
||||
int displayMax = step * maxSteps;
|
||||
List<int> yLabels = List.generate(maxSteps + 1, (index) => step * index);
|
||||
|
||||
DateFormat fullFormat = DateFormat('HH:mm');
|
||||
DateFormat hourFormat = DateFormat('H');
|
||||
DateTime startDate = DateTime.fromMillisecondsSinceEpoch(widget.startTime);
|
||||
DateTime endDate = DateTime.fromMillisecondsSinceEpoch(widget.endTime);
|
||||
|
||||
int maxXLabels = 11;
|
||||
int totalPoints = widget.showLabel.length;
|
||||
List<int> xLabelIndices = [];
|
||||
// Generate hourly timestamps
|
||||
List<int> hourlyTimestamps = [];
|
||||
DateTime currentHour = DateTime(
|
||||
startDate.year, startDate.month, startDate.day, startDate.hour);
|
||||
while (currentHour.isBefore(endDate) ||
|
||||
currentHour.isAtSameMomentAs(endDate)) {
|
||||
hourlyTimestamps.add(currentHour.millisecondsSinceEpoch);
|
||||
currentHour = currentHour.add(const Duration(hours: 1));
|
||||
}
|
||||
|
||||
if (totalPoints <= maxXLabels) {
|
||||
xLabelIndices = List.generate(totalPoints, (i) => i);
|
||||
} else {
|
||||
xLabelIndices.add(0);
|
||||
int middleCount = maxXLabels - 2;
|
||||
double stepX = (totalPoints - 1) / (middleCount + 1);
|
||||
for (int i = 1; i <= middleCount; i++) {
|
||||
xLabelIndices.add((stepX * i).round());
|
||||
// Calculate positions for hourly labels
|
||||
List<Map<String, dynamic>> hourLabels = [];
|
||||
if (widget.showLabel.isNotEmpty) {
|
||||
int firstDataTime = widget.showLabel.first['time'];
|
||||
int lastDataTime = widget.showLabel.last['time'];
|
||||
double totalDuration = (lastDataTime - firstDataTime).toDouble();
|
||||
|
||||
for (int timestamp in hourlyTimestamps) {
|
||||
if (timestamp >= firstDataTime && timestamp <= lastDataTime) {
|
||||
double position = (timestamp - firstDataTime) / totalDuration;
|
||||
hourLabels.add({
|
||||
'time': timestamp,
|
||||
'position': position,
|
||||
});
|
||||
}
|
||||
}
|
||||
xLabelIndices.add(totalPoints - 1);
|
||||
}
|
||||
|
||||
double yAxisWidth = 36.rpx;
|
||||
@@ -225,19 +230,14 @@ class _DotBarChartState extends State<DotBarChart> {
|
||||
drawableHeight * (1 - times / displayMax);
|
||||
|
||||
return Positioned(
|
||||
left: x - 20.rpx, // Increase touch area
|
||||
top: y - 20.rpx, // Increase touch area
|
||||
left: x - 20.rpx,
|
||||
top: y - 20.rpx,
|
||||
child: GestureDetector(
|
||||
onTap: () {
|
||||
setState(() {
|
||||
selectedIndex = index;
|
||||
});
|
||||
_showTooltip(
|
||||
context,
|
||||
data,
|
||||
Offset(x, y),
|
||||
y,
|
||||
);
|
||||
_showTooltip(context, data, Offset(x, y), y);
|
||||
},
|
||||
child: Container(
|
||||
width: 40.rpx,
|
||||
@@ -259,33 +259,15 @@ class _DotBarChartState extends State<DotBarChart> {
|
||||
padding: EdgeInsets.only(left: yAxisWidth),
|
||||
child: SizedBox(
|
||||
height: xAxisHeight,
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
children: List.generate(widget.showLabel.length, (index) {
|
||||
String label = '';
|
||||
if (xLabelIndices.contains(index)) {
|
||||
DateTime dt = DateTime.fromMillisecondsSinceEpoch(
|
||||
widget.showLabel[index]['time']);
|
||||
if (index == 0 || index == totalPoints - 1) {
|
||||
label = fullFormat.format(dt);
|
||||
} else {
|
||||
label = dt.hour.toString();
|
||||
}
|
||||
}
|
||||
return Expanded(
|
||||
child: Padding(
|
||||
padding: EdgeInsets.only(top: 14.rpx),
|
||||
child: Text(
|
||||
label,
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
fontSize: 18.rpx,
|
||||
color: themeController.currentColor.sc4,
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}),
|
||||
child: CustomPaint(
|
||||
size: Size(double.infinity, xAxisHeight),
|
||||
painter: _XAxisPainter(
|
||||
hourLabels: hourLabels,
|
||||
textColor: themeController.currentColor.sc4,
|
||||
fontSize: 18.rpx,
|
||||
startTime: widget.startTime,
|
||||
endTime: widget.endTime,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
@@ -328,7 +310,6 @@ class _DotBarChartPainter extends CustomPainter {
|
||||
|
||||
double thresholdY =
|
||||
yAxisTopPadding + drawableHeight * (1 - threshold / yMax);
|
||||
|
||||
drawDashedLine(
|
||||
canvas,
|
||||
Offset(0, thresholdY),
|
||||
@@ -339,7 +320,6 @@ class _DotBarChartPainter extends CustomPainter {
|
||||
);
|
||||
|
||||
final double dotRadius = 13.rpx;
|
||||
|
||||
for (int i = 0; i < data.length; i++) {
|
||||
int times = data[i]['times'] ?? 0;
|
||||
double x = horizontalPadding + i * xStep;
|
||||
@@ -357,10 +337,8 @@ class _DotBarChartPainter extends CustomPainter {
|
||||
..style = PaintingStyle.stroke
|
||||
..color = Colors.white
|
||||
..strokeWidth = 3.rpx;
|
||||
|
||||
canvas.drawCircle(Offset(x, y), dotRadius + 1.rpx, borderPaint);
|
||||
}
|
||||
|
||||
canvas.drawCircle(Offset(x, y), dotRadius, dotPaint);
|
||||
}
|
||||
|
||||
@@ -376,7 +354,6 @@ class _DotBarChartPainter extends CustomPainter {
|
||||
|
||||
for (int i = 0; i < yLabelsCount; i++) {
|
||||
double y = yAxisTopPadding + i * (drawableHeight / (yLabelsCount - 1));
|
||||
|
||||
if (i == yLabelsCount - 1) {
|
||||
canvas.drawLine(Offset(0, y), Offset(size.width, y), solidLinePaint);
|
||||
} else {
|
||||
@@ -392,8 +369,14 @@ class _DotBarChartPainter extends CustomPainter {
|
||||
}
|
||||
}
|
||||
|
||||
void drawDashedLine(Canvas canvas, Offset start, Offset end, Paint paint,
|
||||
double dashWidth, double gapWidth) {
|
||||
void drawDashedLine(
|
||||
Canvas canvas,
|
||||
Offset start,
|
||||
Offset end,
|
||||
Paint paint,
|
||||
double dashWidth,
|
||||
double gapWidth,
|
||||
) {
|
||||
double dx = start.dx;
|
||||
final double y = start.dy;
|
||||
while (dx < end.dx) {
|
||||
@@ -406,3 +389,65 @@ class _DotBarChartPainter extends CustomPainter {
|
||||
@override
|
||||
bool shouldRepaint(covariant CustomPainter oldDelegate) => true;
|
||||
}
|
||||
|
||||
class _XAxisPainter extends CustomPainter {
|
||||
final List<Map<String, dynamic>> hourLabels;
|
||||
final Color textColor;
|
||||
final double fontSize;
|
||||
final int startTime;
|
||||
final int endTime;
|
||||
|
||||
_XAxisPainter({
|
||||
required this.hourLabels,
|
||||
required this.textColor,
|
||||
required this.fontSize,
|
||||
required this.startTime,
|
||||
required this.endTime,
|
||||
});
|
||||
|
||||
@override
|
||||
void paint(Canvas canvas, Size size) {
|
||||
final textStyle = TextStyle(
|
||||
color: textColor,
|
||||
fontSize: fontSize,
|
||||
);
|
||||
final textPainter = TextPainter(
|
||||
textDirection: ui.TextDirection.ltr,
|
||||
textAlign: TextAlign.center,
|
||||
);
|
||||
|
||||
// Draw start time (leftmost)
|
||||
final startText = DateFormat('HH:mm')
|
||||
.format(DateTime.fromMillisecondsSinceEpoch(startTime));
|
||||
final startTextSpan = TextSpan(text: startText, style: textStyle);
|
||||
textPainter.text = startTextSpan;
|
||||
textPainter.layout();
|
||||
textPainter.paint(canvas, Offset(0, 14.rpx));
|
||||
|
||||
// Draw end time (rightmost)
|
||||
final endText = DateFormat('HH:mm')
|
||||
.format(DateTime.fromMillisecondsSinceEpoch(endTime));
|
||||
final endTextSpan = TextSpan(text: endText, style: textStyle);
|
||||
textPainter.text = endTextSpan;
|
||||
textPainter.layout();
|
||||
textPainter.paint(canvas, Offset(size.width - textPainter.width, 14.rpx));
|
||||
|
||||
// Draw hourly labels in between
|
||||
for (var label in hourLabels) {
|
||||
final position = label['position'] * size.width;
|
||||
final time = DateTime.fromMillisecondsSinceEpoch(label['time']);
|
||||
final hourText = DateFormat('h').format(time);
|
||||
final textSpan = TextSpan(text: hourText, style: textStyle);
|
||||
textPainter.text = textSpan;
|
||||
textPainter.layout();
|
||||
final offset = Offset(
|
||||
position - textPainter.width / 2,
|
||||
14.rpx, // Padding from bottom
|
||||
);
|
||||
textPainter.paint(canvas, offset);
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
bool shouldRepaint(covariant CustomPainter oldDelegate) => true;
|
||||
}
|
||||
|
||||
48
lib/pages/sleep_report/chart/GradientLine.dart
Normal file
48
lib/pages/sleep_report/chart/GradientLine.dart
Normal file
@@ -0,0 +1,48 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class GradientLine extends StatelessWidget {
|
||||
final double height;
|
||||
final Color color;
|
||||
|
||||
const GradientLine({
|
||||
Key? key,
|
||||
this.height = 4.0,
|
||||
required this.color,
|
||||
}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return LayoutBuilder(
|
||||
builder: (context, constraints) {
|
||||
return CustomPaint(
|
||||
size: Size(constraints.maxWidth, height),
|
||||
painter: _GradientLinePainter(color: color),
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class _GradientLinePainter extends CustomPainter {
|
||||
final Color color;
|
||||
|
||||
_GradientLinePainter({required this.color});
|
||||
|
||||
@override
|
||||
void paint(Canvas canvas, Size size) {
|
||||
final Paint paint = Paint()
|
||||
..shader = LinearGradient(
|
||||
colors: [
|
||||
color.withOpacity(0.0), // 左端透明
|
||||
color.withOpacity(1.0), // 中间最深
|
||||
color.withOpacity(0.0), // 右端透明
|
||||
],
|
||||
stops: [0.0, 0.5, 1.0],
|
||||
).createShader(Rect.fromLTWH(0, 0, size.width, size.height));
|
||||
|
||||
canvas.drawRect(Rect.fromLTWH(0, 0, size.width, size.height), paint);
|
||||
}
|
||||
|
||||
@override
|
||||
bool shouldRepaint(covariant CustomPainter oldDelegate) => false;
|
||||
}
|
||||
@@ -1,7 +1,6 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_svg/svg.dart';
|
||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||
|
||||
class SegmentData {
|
||||
final Color color;
|
||||
@@ -63,6 +62,7 @@ class SegmentedCircleWithCenterWidget extends StatelessWidget {
|
||||
final double strokeWidth;
|
||||
final double gapAngle;
|
||||
final Widget centerWidget;
|
||||
final int trend;
|
||||
|
||||
const SegmentedCircleWithCenterWidget({
|
||||
Key? key,
|
||||
@@ -70,6 +70,7 @@ class SegmentedCircleWithCenterWidget extends StatelessWidget {
|
||||
this.strokeWidth = 6.0,
|
||||
this.gapAngle = 4.0,
|
||||
required this.centerWidget,
|
||||
required this.trend,
|
||||
}) : super(key: key);
|
||||
|
||||
@override
|
||||
@@ -87,16 +88,27 @@ class SegmentedCircleWithCenterWidget extends StatelessWidget {
|
||||
),
|
||||
centerWidget, // 放置自定义的中心 Widget
|
||||
Positioned(
|
||||
bottom: 200.rpx,
|
||||
right: 60.rpx, // 放置在右侧
|
||||
child: SvgPicture.asset(
|
||||
'assets/img/icon/score_down.svg',
|
||||
width: 14.rpx,
|
||||
height: 22.rpx,
|
||||
color: themeController.currentColor.sc9,
|
||||
_getTrendIcon(trend),
|
||||
width: trend != 0 ? 14.rpx : 18.rpx,
|
||||
height: trend != 0 ? 22.rpx : 6.rpx,
|
||||
// color: themeController.currentColor.sc9,
|
||||
),
|
||||
),
|
||||
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
String _getTrendIcon(int? trend) {
|
||||
switch (trend) {
|
||||
case 0:
|
||||
return 'assets/img/icon/score_equal.svg';
|
||||
case 1:
|
||||
return 'assets/img/icon/score_up.svg';
|
||||
default:
|
||||
return 'assets/img/icon/score_down.svg';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,17 +1,20 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:ef/ef.dart';
|
||||
import 'package:fl_chart/fl_chart.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||
|
||||
class SleepRadarChart extends StatelessWidget {
|
||||
final Map<String, double> today;
|
||||
final Map<String, double> yesterday;
|
||||
final List<Map<String, dynamic>> data;
|
||||
|
||||
const SleepRadarChart({
|
||||
Key? key,
|
||||
required this.today,
|
||||
required this.yesterday,
|
||||
}) : super(key: key);
|
||||
const SleepRadarChart({Key? key, required this.data}) : super(key: key);
|
||||
|
||||
// const SleepRadarChart({
|
||||
// Key? key,
|
||||
// required this.today,
|
||||
// required this.yesterday,
|
||||
// }) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
@@ -27,74 +30,48 @@ class SleepRadarChart extends StatelessWidget {
|
||||
}
|
||||
|
||||
Widget _buildRadarChart() {
|
||||
return AspectRatio(
|
||||
aspectRatio: 1.3,
|
||||
child: RadarChart(
|
||||
RadarChartData(
|
||||
dataSets: [
|
||||
// 今日数据
|
||||
RadarDataSet(
|
||||
dataEntries: [
|
||||
RadarEntry(value: today['type1']!), // 呼吸暂停
|
||||
RadarEntry(value: today['type2']!), // 入睡时间
|
||||
RadarEntry(value: today['type3']!), // 离床次数
|
||||
RadarEntry(value: today['type4']!), // 深睡比例
|
||||
RadarEntry(value: today['type5']!), // 睡眠时长
|
||||
],
|
||||
borderColor: stringToColor("#00C1AA"),
|
||||
borderWidth: 2,
|
||||
fillColor: Colors.transparent,
|
||||
entryRadius: 0,
|
||||
),
|
||||
// 昨日数据
|
||||
RadarDataSet(
|
||||
dataEntries: [
|
||||
RadarEntry(value: yesterday['type1']!), // 呼吸暂停
|
||||
RadarEntry(value: yesterday['type2']!), // 入睡时间
|
||||
RadarEntry(value: yesterday['type3']!), // 离床次数
|
||||
RadarEntry(value: yesterday['type4']!), // 深睡比例
|
||||
RadarEntry(value: yesterday['type5']!), // 睡眠时长
|
||||
],
|
||||
borderColor: stringToColor("#FFD251"),
|
||||
borderWidth: 2,
|
||||
fillColor: Colors.transparent,
|
||||
entryRadius: 0,
|
||||
),
|
||||
],
|
||||
radarBackgroundColor: stringToColor("#343844"),
|
||||
radarBorderData:
|
||||
BorderSide(color: themeController.currentColor.sc4, width: 1),
|
||||
radarShape: RadarShape.polygon,
|
||||
titlePositionPercentageOffset: 0.2,
|
||||
titleTextStyle: TextStyle(
|
||||
fontSize: AppConstants().normal_text_fontSize,
|
||||
color: themeController.currentColor.sc3),
|
||||
getTitle: (index, angle) {
|
||||
switch (index) {
|
||||
case 0:
|
||||
return RadarChartTitle(text: '呼吸暂停');
|
||||
case 1:
|
||||
return RadarChartTitle(text: '入睡时间');
|
||||
case 2:
|
||||
return RadarChartTitle(text: '离床次数');
|
||||
case 3:
|
||||
return RadarChartTitle(text: '深睡比例');
|
||||
case 4:
|
||||
return RadarChartTitle(text: '睡眠时长');
|
||||
default:
|
||||
return const RadarChartTitle(text: '');
|
||||
}
|
||||
},
|
||||
tickCount: 5,
|
||||
ticksTextStyle:
|
||||
const TextStyle(color: Colors.transparent, fontSize: 10),
|
||||
// ticksColor: Colors.grey.shade300,
|
||||
gridBorderData: BorderSide(color: Colors.transparent, width: 1),
|
||||
tickBorderData:
|
||||
BorderSide(color: themeController.currentColor.sc4, width: 1),
|
||||
),
|
||||
swapAnimationDuration: const Duration(milliseconds: 400),
|
||||
return AspectRatio(
|
||||
aspectRatio: 1.3,
|
||||
child: RadarChart(
|
||||
RadarChartData(
|
||||
dataSets: [
|
||||
// 今日数据
|
||||
RadarDataSet(
|
||||
dataEntries: data.map((e) => RadarEntry(value: (e['t'] as num).toDouble())).toList(),
|
||||
borderColor: stringToColor("#00C1AA"),
|
||||
borderWidth: 2,
|
||||
fillColor: Colors.transparent,
|
||||
entryRadius: 0,
|
||||
),
|
||||
// 昨日数据
|
||||
RadarDataSet(
|
||||
dataEntries: data.map((e) => RadarEntry(value: (e['y'] as num).toDouble())).toList(),
|
||||
borderColor: stringToColor("#FFD251"),
|
||||
borderWidth: 2,
|
||||
fillColor: Colors.transparent,
|
||||
entryRadius: 0,
|
||||
),
|
||||
],
|
||||
radarBackgroundColor: stringToColor("#343844"),
|
||||
radarBorderData: BorderSide(
|
||||
color: themeController.currentColor.sc4, width: 0.5.rpx),
|
||||
radarShape: RadarShape.polygon,
|
||||
titlePositionPercentageOffset: 0.2,
|
||||
titleTextStyle: TextStyle(
|
||||
fontSize: AppConstants().normal_text_fontSize,
|
||||
color: themeController.currentColor.sc3),
|
||||
getTitle: (index, angle) {
|
||||
return RadarChartTitle(text: data[index]['name'] ?? '未知'.tr);
|
||||
},
|
||||
tickCount: 5,
|
||||
ticksTextStyle: const TextStyle(color: Colors.transparent, fontSize: 10),
|
||||
gridBorderData: BorderSide(color: Colors.transparent, width: 1),
|
||||
tickBorderData: BorderSide(
|
||||
color: themeController.currentColor.sc4, width: 0.5.rpx),
|
||||
),
|
||||
);
|
||||
}
|
||||
swapAnimationDuration: const Duration(milliseconds: 400),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
273
lib/pages/sleep_report/chart/SnoreWaveform.dart
Normal file
273
lib/pages/sleep_report/chart/SnoreWaveform.dart
Normal file
@@ -0,0 +1,273 @@
|
||||
import 'dart:ui' as ui;
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutterflow_ui/flutterflow_ui.dart';
|
||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
|
||||
class SnoreChartContainer extends StatelessWidget {
|
||||
final List<dynamic> snoreValues;
|
||||
final List<dynamic> barData;
|
||||
final List<dynamic> showLabel;
|
||||
final int startTime;
|
||||
final int endTime;
|
||||
|
||||
const SnoreChartContainer({
|
||||
required this.snoreValues,
|
||||
required this.barData,
|
||||
required this.showLabel,
|
||||
required this.startTime,
|
||||
required this.endTime,
|
||||
super.key,
|
||||
});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
SnoreBarOverlay(
|
||||
barData: barData,
|
||||
showLabel: showLabel,
|
||||
startTime: startTime,
|
||||
endTime: endTime,
|
||||
),
|
||||
Container(height: 32.rpx),
|
||||
Container(
|
||||
height: 23.rpx,
|
||||
child: SnoreWaveform(
|
||||
snoreValues: snoreValues,
|
||||
startTime: startTime,
|
||||
endTime: endTime,
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class SnoreBarOverlay extends StatelessWidget {
|
||||
final List<dynamic> barData;
|
||||
final List<dynamic> showLabel; // ✅ 加入
|
||||
final int startTime;
|
||||
final int endTime;
|
||||
|
||||
const SnoreBarOverlay({
|
||||
required this.barData,
|
||||
required this.showLabel, // ✅ 加入
|
||||
required this.startTime,
|
||||
required this.endTime,
|
||||
super.key,
|
||||
});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
const double barHeight = 50;
|
||||
return SizedBox(
|
||||
height: barHeight,
|
||||
child: CustomPaint(
|
||||
size: Size(double.infinity, barHeight),
|
||||
painter: SnoreBarPainter(
|
||||
barData: barData,
|
||||
showLabel: showLabel, // ✅ 加入
|
||||
startTime: startTime,
|
||||
endTime: endTime,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class SnoreBarPainter extends CustomPainter {
|
||||
final List<dynamic> barData;
|
||||
final List<dynamic> showLabel; // ✅ 加入
|
||||
final int startTime;
|
||||
final int endTime;
|
||||
|
||||
SnoreBarPainter({
|
||||
required this.barData,
|
||||
required this.showLabel, // ✅ 加入
|
||||
required this.startTime,
|
||||
required this.endTime,
|
||||
});
|
||||
|
||||
@override
|
||||
void paint(Canvas canvas, Size size) {
|
||||
final double width = size.width;
|
||||
final double height = size.height;
|
||||
final double pixelPerMs = width / (endTime - startTime);
|
||||
|
||||
for (var item in barData) {
|
||||
final int st = item['st'];
|
||||
final int et = item['et'];
|
||||
final int type = item['type'];
|
||||
|
||||
// 查找匹配的颜色
|
||||
final match = showLabel.firstWhere(
|
||||
(e) => e['type'] == type,
|
||||
orElse: () => null,
|
||||
);
|
||||
|
||||
Color barColor = Colors.transparent;
|
||||
if (match != null) {
|
||||
final dynamic colorStr = match['color'];
|
||||
if (colorStr != null && colorStr.toString().isNotEmpty) {
|
||||
barColor = stringToColor(colorStr);
|
||||
}
|
||||
}
|
||||
|
||||
final Paint barPaint = Paint()
|
||||
..color = barColor
|
||||
..style = PaintingStyle.fill;
|
||||
|
||||
final double leftX = (st - startTime) * pixelPerMs;
|
||||
final double rightX = (et - startTime) * pixelPerMs;
|
||||
final double barWidth = rightX - leftX;
|
||||
|
||||
final double barHeight = (type + 5).toDouble() * 8;
|
||||
final double top = height - barHeight;
|
||||
|
||||
final rect = Rect.fromLTWH(leftX, top, barWidth, barHeight);
|
||||
canvas.drawRect(rect, barPaint);
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
bool shouldRepaint(covariant CustomPainter oldDelegate) => true;
|
||||
}
|
||||
|
||||
class SnoreWaveform extends StatelessWidget {
|
||||
final List<dynamic> snoreValues;
|
||||
final int startTime;
|
||||
final int endTime;
|
||||
|
||||
const SnoreWaveform({
|
||||
required this.snoreValues,
|
||||
required this.startTime,
|
||||
required this.endTime,
|
||||
super.key,
|
||||
});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return SizedBox(
|
||||
height: 150,
|
||||
child: CustomPaint(
|
||||
size: Size(double.infinity, 150),
|
||||
painter: SnoreWaveformPainter(
|
||||
snoreValues: snoreValues,
|
||||
startTime: startTime,
|
||||
endTime: endTime,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class SnoreWaveformPainter extends CustomPainter {
|
||||
final List<dynamic> snoreValues;
|
||||
final int startTime;
|
||||
final int endTime;
|
||||
|
||||
SnoreWaveformPainter({
|
||||
required this.snoreValues,
|
||||
required this.startTime,
|
||||
required this.endTime,
|
||||
});
|
||||
|
||||
@override
|
||||
void paint(Canvas canvas, Size size) {
|
||||
final double width = size.width;
|
||||
final double height = size.height;
|
||||
final double centerY = height / 2;
|
||||
final double totalDuration = (endTime - startTime).toDouble();
|
||||
final double pixelPerMs = width / totalDuration;
|
||||
|
||||
final Paint wavePaint = Paint()
|
||||
..color = stringToColor("#8E7DEF")
|
||||
..strokeWidth = 1.5
|
||||
..style = PaintingStyle.stroke;
|
||||
|
||||
final Path upperPath = Path();
|
||||
final Path lowerPath = Path();
|
||||
const double scaleY = 0.5; //波形图比例
|
||||
|
||||
for (int i = 0; i < snoreValues.length; i++) {
|
||||
final timestamp = snoreValues[i]["st"];
|
||||
final value = snoreValues[i]["value"]?.toDouble() ?? 0;
|
||||
|
||||
final x = (timestamp - startTime) * pixelPerMs;
|
||||
final y = centerY - value * scaleY;
|
||||
final yMirror = centerY + value * scaleY;
|
||||
|
||||
if (i == 0) {
|
||||
upperPath.moveTo(x, y);
|
||||
lowerPath.moveTo(x, yMirror);
|
||||
} else {
|
||||
upperPath.lineTo(x, y);
|
||||
lowerPath.lineTo(x, yMirror);
|
||||
}
|
||||
}
|
||||
|
||||
canvas.drawPath(upperPath, wavePaint);
|
||||
canvas.drawPath(lowerPath, wavePaint);
|
||||
|
||||
final Paint axisPaint = Paint()
|
||||
..color = Colors.grey
|
||||
..strokeWidth = 0.5;
|
||||
|
||||
// 画中心线
|
||||
canvas.drawLine(Offset(0, centerY), Offset(width, centerY), axisPaint);
|
||||
|
||||
// 时间刻度绘制
|
||||
final textPainter = TextPainter(
|
||||
textAlign: TextAlign.center,
|
||||
textDirection: ui.TextDirection.ltr,
|
||||
);
|
||||
|
||||
final int hourMs = 60 * 60 * 1000;
|
||||
|
||||
// 循环绘制整点小时标签(不包含终点)
|
||||
for (int t = startTime; t < endTime; t += hourMs) {
|
||||
double x = (t - startTime) * pixelPerMs;
|
||||
|
||||
DateTime dt = DateTime.fromMillisecondsSinceEpoch(t);
|
||||
String label;
|
||||
if (t == startTime) {
|
||||
label = DateFormat('HH:mm').format(dt); // 起点显示 HH:mm
|
||||
} else {
|
||||
label = DateFormat('h').format(dt); // 中间显示小时,不带前导0
|
||||
}
|
||||
|
||||
textPainter.text = TextSpan(
|
||||
text: label,
|
||||
style: TextStyle(fontSize: 10, color: Colors.grey),
|
||||
);
|
||||
textPainter.layout();
|
||||
textPainter.paint(
|
||||
canvas,
|
||||
Offset(x - textPainter.width / 2, height + 20.rpx),
|
||||
);
|
||||
}
|
||||
|
||||
// 单独绘制终点时间标签,确保显示具体时分
|
||||
{
|
||||
double x = (endTime - startTime) * pixelPerMs;
|
||||
DateTime dt = DateTime.fromMillisecondsSinceEpoch(endTime);
|
||||
String label = DateFormat('HH:mm').format(dt);
|
||||
|
||||
textPainter.text = TextSpan(
|
||||
text: label,
|
||||
style: TextStyle(fontSize: 10, color: Colors.grey),
|
||||
);
|
||||
textPainter.layout();
|
||||
textPainter.paint(
|
||||
canvas,
|
||||
Offset(x - textPainter.width / 2, height + 20.rpx),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
bool shouldRepaint(covariant CustomPainter oldDelegate) => true;
|
||||
}
|
||||
@@ -9,7 +9,8 @@ import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/AdviceComponnetWidget.dart';
|
||||
|
||||
class AIAdviceWidget extends StatefulWidget {
|
||||
AIAdviceWidget({super.key});
|
||||
var sleepReport;
|
||||
AIAdviceWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<AIAdviceWidget> createState() => _AIAdviceWidgetState();
|
||||
@@ -33,32 +34,12 @@ class _AIAdviceWidgetState extends State<AIAdviceWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
List advices = [
|
||||
{
|
||||
"title": "调整作息时间",
|
||||
"description": "确保每天在相同的时间上床并醒来。保持规律的作息可以帮助调整你的生物钟,改善睡眠质量。",
|
||||
},
|
||||
{
|
||||
"title": "减少睡前刺激",
|
||||
"description": "避免在睡前使用电子设备,如手机、电脑等,减少屏幕时间,以防影响你的睡眠质量。",
|
||||
},
|
||||
{
|
||||
"title": "创造理想睡眠环境",
|
||||
"description": "确保卧室安静、黑暗且舒适。调节室温,并避免过于嘈杂或明亮的环境,帮助你快速入睡。",
|
||||
},
|
||||
{
|
||||
"title": "避免摄入咖啡因和酒精",
|
||||
"description": "避免在睡前几小时内摄入咖啡、茶、酒精等饮品,因为这些物质可能会干扰你的睡眠。",
|
||||
},
|
||||
{
|
||||
"title": "增加日间活动",
|
||||
"description": "适量的日间运动可以帮助提高睡眠质量,但要避免睡前剧烈运动,以免影响入睡。",
|
||||
},
|
||||
{
|
||||
"title": "放松身心",
|
||||
"description": "睡前可以进行一些放松活动,如深呼吸、冥想或听轻音乐,这有助于减轻压力并促进良好的睡眠。",
|
||||
},
|
||||
];
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport['sugges'] == null ||
|
||||
widget.sleepReport['sugges'].isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
List advices = widget.sleepReport['sugges'];
|
||||
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
@@ -126,8 +107,8 @@ class _AIAdviceWidgetState extends State<AIAdviceWidget> {
|
||||
child: Column(
|
||||
children: advices.map<Widget>((advice) {
|
||||
return AdviceComponnetWidget(
|
||||
title: advice["title"],
|
||||
description: advice["description"],
|
||||
title: advice["q"],
|
||||
description: advice["s"],
|
||||
).paddingOnly(bottom: 0.rpx); // 在每个组件下方添加间隔
|
||||
}).toList(),
|
||||
),
|
||||
|
||||
@@ -9,7 +9,8 @@ import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/DotBarChart.dart';
|
||||
|
||||
class BreathPauseWidget extends StatefulWidget {
|
||||
BreathPauseWidget({super.key});
|
||||
var sleepReport;
|
||||
BreathPauseWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<BreathPauseWidget> createState() => _BreathPauseWidgetState();
|
||||
@@ -33,33 +34,30 @@ class _BreathPauseWidgetState extends State<BreathPauseWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport['asp'] == null ||
|
||||
widget.sleepReport['asp'].isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
|
||||
// List data = widget.sleepReport['asp'];
|
||||
// var showLabel = [
|
||||
// {"time": 1744547251000, "times": 20},
|
||||
// {"time": 1744550851000, "times": 50},
|
||||
// {"time": 1744554451000, "times": 20},
|
||||
// {"time": 1744558051000, "times": 30},
|
||||
// {"time": 1744561651000, "times": 20},
|
||||
// {"time": 1744565251000, "times": 10},
|
||||
// {"time": 1744568851000, "times": 20},
|
||||
// {"time": 1744572451000, "times": 20},
|
||||
// {"time": 1744583251000, "times": 100},
|
||||
// {"time": 1744586851000, "times": 20},
|
||||
// {"time": 1744547251000, "times": 25},
|
||||
// {"time": 1744550851000, "times": 27},
|
||||
// {"time": 1744554451000, "times": 40},
|
||||
// {"time": 1744558051000, "times": 28},
|
||||
// {"time": 1744561651000, "times": 15},
|
||||
// {"time": 1744565251000, "times": 48},
|
||||
// {"time": 1744568851000, "times": 25},
|
||||
// {"time": 1744572451000, "times": 17},
|
||||
// {"time": 1744583251000, "times": 35},
|
||||
// {"time": 1744586851000, "times": 40},
|
||||
// ];
|
||||
var showLabel = [
|
||||
{"time": 1744547251000, "times": 25},
|
||||
{"time": 1744550851000, "times": 27},
|
||||
{"time": 1744554451000, "times": 40},
|
||||
{"time": 1744558051000, "times": 28},
|
||||
{"time": 1744561651000, "times": 15},
|
||||
{"time": 1744565251000, "times": 48},
|
||||
{"time": 1744568851000, "times": 25},
|
||||
{"time": 1744572451000, "times": 17},
|
||||
{"time": 1744583251000, "times": 35},
|
||||
{"time": 1744586851000, "times": 40},
|
||||
];
|
||||
var threshold = 40;
|
||||
var startTime = 1744641151000;
|
||||
var endTime = 1744677151000;
|
||||
List data = widget.sleepReport['asp'];
|
||||
var showLabel = convertAspData(data);
|
||||
var threshold = 30;
|
||||
var startTime = widget.sleepReport['startTime'];
|
||||
var endTime = widget.sleepReport['endTime'];
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
@@ -138,4 +136,13 @@ class _BreathPauseWidgetState extends State<BreathPauseWidget> {
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
List<Map<String, dynamic>> convertAspData(List data) {
|
||||
return data.map<Map<String, dynamic>>((item) {
|
||||
return {
|
||||
'time': item['st'],
|
||||
'times': item['value'],
|
||||
};
|
||||
}).toList();
|
||||
}
|
||||
}
|
||||
|
||||
69
lib/pages/sleep_report/component/BreatheCard.dart
Normal file
69
lib/pages/sleep_report/component/BreatheCard.dart
Normal file
@@ -0,0 +1,69 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||
import 'package:vbvs_app/component/home_page/SleepDataModuleWidget.dart';
|
||||
|
||||
class BreatheCard extends StatefulWidget {
|
||||
var sleepReport;
|
||||
BreatheCard({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<BreatheCard> createState() => _BreatheCardState();
|
||||
}
|
||||
|
||||
class _BreatheCardState extends State<BreatheCard> {
|
||||
@override
|
||||
void setState(VoidCallback callback) {
|
||||
super.setState(callback);
|
||||
}
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport is! Map ||
|
||||
widget.sleepReport.isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
|
||||
List data = widget.sleepReport['brs'] ?? [];
|
||||
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
color: themeController.currentColor.sc5,
|
||||
borderRadius:
|
||||
BorderRadius.circular(AppConstants().normal_container_radius),
|
||||
),
|
||||
child: Padding(
|
||||
padding: EdgeInsetsDirectional.fromSTEB(26.rpx, 29.rpx, 26.rpx, 45.rpx),
|
||||
child: Wrap(
|
||||
spacing: 23.rpx, // 横向间距(左右间距如需加可设置)
|
||||
runSpacing: 25.rpx, // 每行之间的垂直间距
|
||||
children: List.generate(data.length, (index) {
|
||||
final item = data[index];
|
||||
return SizedBox(
|
||||
width: (MediaQuery.of(context).size.width - 160.rpx) / 3,
|
||||
child: SleepDataModuleWidget(data: item),
|
||||
// child: Container(
|
||||
// width: 20,
|
||||
// height: 20,
|
||||
// color: Colors.red,
|
||||
// ),
|
||||
);
|
||||
}),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
166
lib/pages/sleep_report/component/BreathePauseNewWidget.dart
Normal file
166
lib/pages/sleep_report/component/BreathePauseNewWidget.dart
Normal file
@@ -0,0 +1,166 @@
|
||||
import 'package:ef/ef.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_svg/svg.dart';
|
||||
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||
import 'package:vbvs_app/component/tool/ClickableContainer.dart';
|
||||
import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/LineChartByRange.dart';
|
||||
|
||||
class BreathePauseNewWidget extends StatefulWidget {
|
||||
var sleepReport;
|
||||
BreathePauseNewWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<BreathePauseNewWidget> createState() => _SnoreViewWidgetWidgetState();
|
||||
}
|
||||
|
||||
class _SnoreViewWidgetWidgetState extends State<BreathePauseNewWidget> {
|
||||
@override
|
||||
void setState(VoidCallback callback) {
|
||||
super.setState(callback);
|
||||
}
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport is! Map ||
|
||||
widget.sleepReport.isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
|
||||
List<Map<String, dynamic>> data =
|
||||
(widget.sleepReport['asp'] as List).cast<Map<String, dynamic>>();
|
||||
List<Map<String, dynamic>> showLabel = convertToShowLabel(data);
|
||||
var startTime = widget.sleepReport['startTime'];
|
||||
var endTime = widget.sleepReport['endTime'];
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
color: themeController.currentColor.sc5,
|
||||
borderRadius: BorderRadius.circular(
|
||||
AppConstants().normal_container_radius), // 你可以按需调整圆角半径
|
||||
),
|
||||
child: Padding(
|
||||
padding: EdgeInsetsDirectional.fromSTEB(26.rpx, 29.rpx, 26.rpx, 0.rpx),
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.max,
|
||||
children: [
|
||||
Container(
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Text(
|
||||
"呼吸暂停监测".tr,
|
||||
style: TextStyle(
|
||||
color: themeController.currentColor.sc3,
|
||||
fontSize: AppConstants().title_text_fontSize),
|
||||
),
|
||||
ClickableContainer(
|
||||
backgroundColor: Colors.transparent,
|
||||
highlightColor: Colors.white, // 或设置为你需要的水波纹颜色
|
||||
padding: EdgeInsetsDirectional.fromSTEB(
|
||||
14.rpx, 0.rpx, 14.rpx, 0), //
|
||||
borderRadius: 0.rpx, // 圆形点击区域
|
||||
onTap: () {
|
||||
showTipDialog(
|
||||
context,
|
||||
Container(
|
||||
child: Text(
|
||||
"呼吸暂停监测介绍。",
|
||||
style: TextStyle(
|
||||
fontSize: 26.rpx,
|
||||
color: themeController.currentColor.sc3,
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
child: Container(
|
||||
padding: EdgeInsetsDirectional.fromSTEB(
|
||||
0, 0.rpx, 0.rpx, 0), // 外部 padding 移到内部
|
||||
width: 28.rpx,
|
||||
height: 28.rpx,
|
||||
child: SvgPicture.asset(
|
||||
'assets/img/icon/explain.svg',
|
||||
fit: BoxFit.cover,
|
||||
color: themeController.currentColor.sc4,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 32.rpx,
|
||||
),
|
||||
Padding(
|
||||
padding:
|
||||
EdgeInsetsDirectional.fromSTEB(0.rpx, 0.rpx, 0.rpx, 0.rpx),
|
||||
child: LineChartByRange(
|
||||
showLabel: showLabel,
|
||||
startTime: startTime,
|
||||
endTime: endTime,
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 52.rpx,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
List<Map<String, dynamic>> convertToShowLabel(
|
||||
List<Map<String, dynamic>> data) {
|
||||
if (data.isEmpty) return [];
|
||||
|
||||
data.sort((a, b) => a['st'].compareTo(b['st'])); // 确保时间有序
|
||||
|
||||
List<Map<String, dynamic>> result = [];
|
||||
|
||||
int startTime = data[0]['st'];
|
||||
int endTime = data[0]['st'];
|
||||
int currentValue = data[0]['value'];
|
||||
|
||||
for (int i = 1; i < data.length; i++) {
|
||||
final item = data[i];
|
||||
final st = item['st'];
|
||||
final value = item['value'];
|
||||
|
||||
if (value == currentValue) {
|
||||
endTime = st;
|
||||
} else {
|
||||
result.add({
|
||||
"startTime": startTime,
|
||||
"endTime": endTime,
|
||||
"times": currentValue,
|
||||
});
|
||||
startTime = st;
|
||||
endTime = st;
|
||||
currentValue = value;
|
||||
}
|
||||
}
|
||||
|
||||
// 添加最后一段
|
||||
result.add({
|
||||
"startTime": startTime,
|
||||
"endTime": endTime,
|
||||
"times": currentValue,
|
||||
});
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
@@ -10,7 +10,8 @@ import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/TimeSeriesChart.dart';
|
||||
|
||||
class BreatheStandardWidget extends StatefulWidget {
|
||||
BreatheStandardWidget({super.key});
|
||||
var sleepReport;
|
||||
BreatheStandardWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<BreatheStandardWidget> createState() => _BreatheStandardWidgetState();
|
||||
@@ -34,17 +35,29 @@ class _BreatheStandardWidgetState extends State<BreatheStandardWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final now = DateTime.now();
|
||||
final startTime = now.subtract(Duration(hours: 5)).millisecondsSinceEpoch;
|
||||
final endTime = now.millisecondsSinceEpoch;
|
||||
final dataPoints = [
|
||||
TimeSeriesPoint(startTime + Duration(minutes: 10).inMilliseconds, 50),
|
||||
TimeSeriesPoint(startTime + Duration(hours: 1).inMilliseconds, 120),
|
||||
TimeSeriesPoint(startTime + Duration(hours: 2).inMilliseconds, 80),
|
||||
TimeSeriesPoint(startTime + Duration(hours: 3).inMilliseconds, 180),
|
||||
TimeSeriesPoint(startTime + Duration(hours: 4).inMilliseconds, 30),
|
||||
TimeSeriesPoint(endTime - Duration(minutes: 10).inMilliseconds, 150),
|
||||
];
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport is! Map ||
|
||||
widget.sleepReport.isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
|
||||
final startTime = widget.sleepReport['startTime'];
|
||||
final endTime = widget.sleepReport['endTime'];
|
||||
List<Map<String, dynamic>> data =
|
||||
(widget.sleepReport['brbc'] as List).cast<Map<String, dynamic>>();
|
||||
// final dataPoints = [
|
||||
// TimeSeriesPoint(12121, 50),
|
||||
// TimeSeriesPoint(1212, 120),
|
||||
// TimeSeriesPoint(121, 80),
|
||||
// TimeSeriesPoint(1212, 180),
|
||||
// TimeSeriesPoint(1212, 30),
|
||||
// TimeSeriesPoint(1212, 150),
|
||||
// ];
|
||||
final dataPoints = data.map((item) {
|
||||
final x = item['st'] as int;
|
||||
final y = (item['value'] as num).toDouble(); // 安全地转换为 double
|
||||
return TimeSeriesPoint(x, y);
|
||||
}).toList();
|
||||
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
|
||||
@@ -7,12 +7,11 @@ import 'package:vbvs_app/common/util/FitTool.dart';
|
||||
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||
import 'package:vbvs_app/component/tool/ClickableContainer.dart';
|
||||
import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/AdviceComponnetWidget.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/RadarChart.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/SleepRadarChart.dart';
|
||||
|
||||
class CompareSleepWidget extends StatefulWidget {
|
||||
CompareSleepWidget({super.key});
|
||||
var sleepReport;
|
||||
CompareSleepWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<CompareSleepWidget> createState() => _CompareSleepWidgetState();
|
||||
@@ -36,20 +35,37 @@ class _CompareSleepWidgetState extends State<CompareSleepWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
var today = {
|
||||
"type1": 40.0,
|
||||
"type2": 80.0,
|
||||
"type3": 60.0,
|
||||
"type4": 70.0,
|
||||
"type5": 100.0
|
||||
};
|
||||
var yesterday = {
|
||||
"type1": 40.0,
|
||||
"type2": 90.0,
|
||||
"type3": 50.0,
|
||||
"type4": 70.0,
|
||||
"type5": 30.0
|
||||
};
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport['yc'] == null ||
|
||||
widget.sleepReport['yc'].isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
List<Map<String, dynamic>> data = (widget.sleepReport['yc'] as List)
|
||||
.map((e) => e as Map<String, dynamic>)
|
||||
.toList();
|
||||
|
||||
// var today = {
|
||||
// "type1": 40.0,
|
||||
// "type2": 80.0,
|
||||
// "type3": 60.0,
|
||||
// "type4": 70.0,
|
||||
// "type5": 100.0
|
||||
// };
|
||||
// var yesterday = {
|
||||
// "type1": 40.0,
|
||||
// "type2": 90.0,
|
||||
// "type3": 50.0,
|
||||
// "type4": 70.0,
|
||||
// "type5": 30.0
|
||||
// };
|
||||
Map<String, double> today = {};
|
||||
Map<String, double> yesterday = {};
|
||||
|
||||
for (var item in data) {
|
||||
String typeKey = 'type${item['id']}';
|
||||
today[typeKey] = (item['t'] as num).toDouble();
|
||||
yesterday[typeKey] = (item['y'] as num).toDouble();
|
||||
}
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
@@ -128,8 +144,9 @@ class _CompareSleepWidgetState extends State<CompareSleepWidget> {
|
||||
padding: EdgeInsetsDirectional.fromSTEB(
|
||||
30.rpx, 0.rpx, 0.rpx, 0.rpx),
|
||||
child: SleepRadarChart(
|
||||
today: today,
|
||||
yesterday: yesterday,
|
||||
// today: today,
|
||||
// yesterday: yesterday,
|
||||
data: data,
|
||||
),
|
||||
),
|
||||
// 在左侧添加一个 Text
|
||||
|
||||
@@ -9,57 +9,59 @@ import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/HorizontalBarChart.dart';
|
||||
|
||||
class DiseasePercentsWidget extends StatefulWidget {
|
||||
DiseasePercentsWidget({super.key});
|
||||
var sleepReport;
|
||||
DiseasePercentsWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<DiseasePercentsWidget> createState() => _DiseasePercentsWidgetState();
|
||||
}
|
||||
|
||||
class _DiseasePercentsWidgetState extends State<DiseasePercentsWidget> {
|
||||
var showLabel = [
|
||||
{
|
||||
"key": 1,
|
||||
"name": "心脏病",
|
||||
"color": stringToColor("#00C1AA"),
|
||||
"percent": 45,
|
||||
"explain": "心脏病是指心脏的结构或功能异常,可能导致心脏无法有效地泵血。"
|
||||
},
|
||||
{
|
||||
"key": 2,
|
||||
"name": "高血压",
|
||||
"color": stringToColor("#00C1AA"),
|
||||
"percent": 32,
|
||||
"explain": "高血压是指血液在动脉中流动时对血管壁施加的压力过高。"
|
||||
},
|
||||
{
|
||||
"key": 3,
|
||||
"name": "糖尿病",
|
||||
"color": stringToColor("#00C1AA"),
|
||||
"percent": 50,
|
||||
"explain": "糖尿病是一种代谢性疾病,导致血糖水平异常升高。"
|
||||
},
|
||||
{
|
||||
"key": 4,
|
||||
"name": "甲亢",
|
||||
"color": stringToColor("#FF7159"),
|
||||
"percent": 80,
|
||||
"explain": "甲亢是指甲状腺分泌过多的甲状腺激素,导致新陈代谢加速。"
|
||||
},
|
||||
{
|
||||
"key": 5,
|
||||
"name": "消化系统",
|
||||
"color": stringToColor("#00C1AA"),
|
||||
"percent": 12,
|
||||
"explain": "消化系统是身体中处理食物的机构,是造成疾病和疾病症状的来源。",
|
||||
},
|
||||
{
|
||||
"key": 6,
|
||||
"name": "呼吸系统",
|
||||
"color": stringToColor("#00C1AA"),
|
||||
"percent": 62,
|
||||
"explain": "呼吸系统是负责气体交换的器官系统,包括鼻、喉、气管和肺等。",
|
||||
},
|
||||
];
|
||||
// var showLabel = [
|
||||
// {
|
||||
// "key": 1,
|
||||
// "name": "心脏病",
|
||||
// "color": stringToColor("#00C1AA"),
|
||||
// "percent": 45,
|
||||
// "explain": "心脏病是指心脏的结构或功能异常,可能导致心脏无法有效地泵血。"
|
||||
// },
|
||||
// {
|
||||
// "key": 2,
|
||||
// "name": "高血压",
|
||||
// "color": stringToColor("#00C1AA"),
|
||||
// "percent": 32,
|
||||
// "explain": "高血压是指血液在动脉中流动时对血管壁施加的压力过高。"
|
||||
// },
|
||||
// {
|
||||
// "key": 3,
|
||||
// "name": "糖尿病",
|
||||
// "color": stringToColor("#00C1AA"),
|
||||
// "percent": 50,
|
||||
// "explain": "糖尿病是一种代谢性疾病,导致血糖水平异常升高。"
|
||||
// },
|
||||
// {
|
||||
// "key": 4,
|
||||
// "name": "甲亢",
|
||||
// "color": stringToColor("#FF7159"),
|
||||
// "percent": 80,
|
||||
// "explain": "甲亢是指甲状腺分泌过多的甲状腺激素,导致新陈代谢加速。"
|
||||
// },
|
||||
// {
|
||||
// "key": 5,
|
||||
// "name": "消化系统",
|
||||
// "color": stringToColor("#00C1AA"),
|
||||
// "percent": 12,
|
||||
// "explain": "消化系统是身体中处理食物的机构,是造成疾病和疾病症状的来源。",
|
||||
// },
|
||||
// {
|
||||
// "key": 6,
|
||||
// "name": "呼吸系统",
|
||||
// "color": stringToColor("#00C1AA"),
|
||||
// "percent": 62,
|
||||
// "explain": "呼吸系统是负责气体交换的器官系统,包括鼻、喉、气管和肺等。",
|
||||
// },
|
||||
// ];
|
||||
|
||||
@override
|
||||
void setState(VoidCallback callback) {
|
||||
super.setState(callback);
|
||||
@@ -77,6 +79,13 @@ class _DiseasePercentsWidgetState extends State<DiseasePercentsWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport['cdri'] == null ||
|
||||
widget.sleepReport['cdri'].isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
List diseaseData = widget.sleepReport['cdri'];
|
||||
var showLabel = convertDiseaseData(diseaseData);
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
@@ -107,7 +116,7 @@ class _DiseasePercentsWidgetState extends State<DiseasePercentsWidget> {
|
||||
borderRadius: 0.rpx, // 圆形点击区域
|
||||
onTap: () {
|
||||
// 你的点击逻辑
|
||||
showTipDialog(
|
||||
showTipDialog(
|
||||
context,
|
||||
Container(
|
||||
child: Text(
|
||||
@@ -149,4 +158,23 @@ class _DiseasePercentsWidgetState extends State<DiseasePercentsWidget> {
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
List<Map<String, dynamic>> convertDiseaseData(List data) {
|
||||
return data.asMap().entries.map<Map<String, dynamic>>((entry) {
|
||||
final index = entry.key;
|
||||
final item = entry.value;
|
||||
|
||||
return {
|
||||
"key": item["id"],
|
||||
"name": item["name"],
|
||||
"color": item["id"] == 40004
|
||||
? stringToColor("#FF7159") // 特殊颜色处理
|
||||
: stringToColor("#00C1AA"),
|
||||
"percent": item["value"],
|
||||
"explain": (item["tips"] != null && (item["tips"] as String).trim().isNotEmpty)
|
||||
? item["tips"]
|
||||
: '未知数据'.tr,
|
||||
};
|
||||
}).toList();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,7 +9,8 @@ import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/DataShowWidget.dart';
|
||||
|
||||
class HeartChangeWidget extends StatefulWidget {
|
||||
HeartChangeWidget({super.key});
|
||||
var sleepReport;
|
||||
HeartChangeWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<HeartChangeWidget> createState() => _HeartChangeWidgetState();
|
||||
@@ -33,72 +34,80 @@ class _HeartChangeWidgetState extends State<HeartChangeWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport['hrvs'] == null ||
|
||||
widget.sleepReport['hrvs'].isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
|
||||
List dataList = widget.sleepReport['hrvs'];
|
||||
//0上升 1下降 2持平
|
||||
List data = [
|
||||
{
|
||||
"name": "心脏总能量",
|
||||
"value": 5262,
|
||||
"range": "2055-6000",
|
||||
"change": 0,
|
||||
"desc": "心脏总能量介绍"
|
||||
},
|
||||
{
|
||||
"name": "心率减速力",
|
||||
"value": 5262,
|
||||
"range": "2055-6000",
|
||||
"change": 1,
|
||||
"desc": "心率减速力介绍"
|
||||
},
|
||||
{
|
||||
"name": "迷走神经张力指数",
|
||||
"value": 5262,
|
||||
"range": "2055-6000",
|
||||
"change": 2,
|
||||
"desc": "迷走神经张力指数介绍"
|
||||
},
|
||||
{
|
||||
"name": "交感神经张力指数",
|
||||
"value": 5262,
|
||||
"range": "2055-6000",
|
||||
"change": 0,
|
||||
"desc": "交感神经张力指数介绍"
|
||||
},
|
||||
{
|
||||
"name": "自主神经张力指数",
|
||||
"value": 5262,
|
||||
"range": "2055-6000",
|
||||
"change": 2,
|
||||
"desc": "自主神经张力指数介绍"
|
||||
},
|
||||
{
|
||||
"name": "血管舒张指数",
|
||||
"value": 5262,
|
||||
"range": "2055-6000",
|
||||
"change": 1,
|
||||
"desc": "血管舒张指数介绍"
|
||||
},
|
||||
{
|
||||
"name": "SDNN",
|
||||
"value": 5262,
|
||||
"range": "2055-6000",
|
||||
"change": 0,
|
||||
"desc": "SDNN介绍"
|
||||
},
|
||||
{
|
||||
"name": "PNN50",
|
||||
"value": 5262,
|
||||
"range": "2055-6000",
|
||||
"change": 1,
|
||||
"desc": "PNN50介绍"
|
||||
},
|
||||
{
|
||||
"name": "RMSSD",
|
||||
"value": 5262,
|
||||
"range": "2055-6000",
|
||||
"change": 2,
|
||||
"desc": "RMSSD介绍"
|
||||
},
|
||||
];
|
||||
// List data = [
|
||||
// {
|
||||
// "name": "心脏总能量",
|
||||
// "value": 5262,
|
||||
// "range": "2055-6000",
|
||||
// "change": 0,
|
||||
// "desc": "心脏总能量介绍"
|
||||
// },
|
||||
// {
|
||||
// "name": "心率减速力",
|
||||
// "value": 5262,
|
||||
// "range": "2055-6000",
|
||||
// "change": 1,
|
||||
// "desc": "心率减速力介绍"
|
||||
// },
|
||||
// {
|
||||
// "name": "迷走神经张力指数",
|
||||
// "value": 5262,
|
||||
// "range": "2055-6000",
|
||||
// "change": 2,
|
||||
// "desc": "迷走神经张力指数介绍"
|
||||
// },
|
||||
// {
|
||||
// "name": "交感神经张力指数",
|
||||
// "value": 5262,
|
||||
// "range": "2055-6000",
|
||||
// "change": 0,
|
||||
// "desc": "交感神经张力指数介绍"
|
||||
// },
|
||||
// {
|
||||
// "name": "自主神经张力指数",
|
||||
// "value": 5262,
|
||||
// "range": "2055-6000",
|
||||
// "change": 2,
|
||||
// "desc": "自主神经张力指数介绍"
|
||||
// },
|
||||
// {
|
||||
// "name": "血管舒张指数",
|
||||
// "value": 5262,
|
||||
// "range": "2055-6000",
|
||||
// "change": 1,
|
||||
// "desc": "血管舒张指数介绍"
|
||||
// },
|
||||
// {
|
||||
// "name": "SDNN",
|
||||
// "value": 5262,
|
||||
// "range": "2055-6000",
|
||||
// "change": 0,
|
||||
// "desc": "SDNN介绍"
|
||||
// },
|
||||
// {
|
||||
// "name": "PNN50",
|
||||
// "value": 5262,
|
||||
// "range": "2055-6000",
|
||||
// "change": 1,
|
||||
// "desc": "PNN50介绍"
|
||||
// },
|
||||
// {
|
||||
// "name": "RMSSD",
|
||||
// "value": 5262,
|
||||
// "range": "2055-6000",
|
||||
// "change": 2,
|
||||
// "desc": "RMSSD介绍"
|
||||
// },
|
||||
// ];
|
||||
List<Map<String, dynamic>> data = transformHrvData(dataList);
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
@@ -313,4 +322,18 @@ class _HeartChangeWidgetState extends State<HeartChangeWidget> {
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
List<Map<String, dynamic>> transformHrvData(List<dynamic> originalData) {
|
||||
return originalData.map((item) {
|
||||
return {
|
||||
"name": item["name"] ?? "未知指标".tr,
|
||||
"value": (item["value"] is num) ? item["value"].toDouble() : 0.0,
|
||||
"range": item["range"] ?? "0-0",
|
||||
"change": item["trend"] ?? 0,
|
||||
"desc": item["tips"]?.toString().isNotEmpty == true
|
||||
? item["tips"].toString()
|
||||
: "未知数据".tr
|
||||
};
|
||||
}).toList();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,7 +10,8 @@ import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/FatigueCircleIndicator.dart';
|
||||
|
||||
class HeartHealthWidget extends StatefulWidget {
|
||||
HeartHealthWidget({super.key});
|
||||
var sleepReport;
|
||||
HeartHealthWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<HeartHealthWidget> createState() => _HeartHealthWidgetState();
|
||||
@@ -34,20 +35,14 @@ class _HeartHealthWidgetState extends State<HeartHealthWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
var showLabel = [
|
||||
{
|
||||
"name": "焦虑抑郁",
|
||||
"color": Color(0xFF4CAF50),
|
||||
"percent": "7%",
|
||||
"explain": "低风险"
|
||||
},
|
||||
{
|
||||
"name": "过度疲劳",
|
||||
"color": stringToColor("#FF7159"),
|
||||
"percent": "69%",
|
||||
"explain": "高风险"
|
||||
},
|
||||
];
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport['mha'] == null ||
|
||||
widget.sleepReport['mha'].isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
|
||||
List data = widget.sleepReport['mha'];
|
||||
var showLabel = convertMentalHealthData(data);
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
@@ -115,22 +110,10 @@ class _HeartHealthWidgetState extends State<HeartHealthWidget> {
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
FatigueCircleIndicator(
|
||||
data: {
|
||||
"name": "焦虑抑郁",
|
||||
"color": stringToColor("#00C1AA"),
|
||||
"percent": 7,
|
||||
"explain": "低风险",
|
||||
"bottomColor": Colors.grey,
|
||||
},
|
||||
data: showLabel[0],
|
||||
),
|
||||
FatigueCircleIndicator(
|
||||
data: {
|
||||
"name": "过度疲劳",
|
||||
"color": stringToColor("#FF7159"),
|
||||
"percent": 69,
|
||||
"explain": "高风险",
|
||||
"bottomColor": Colors.grey,
|
||||
},
|
||||
data: showLabel[1],
|
||||
),
|
||||
].divide(SizedBox(
|
||||
width: 110.rpx,
|
||||
@@ -145,4 +128,25 @@ class _HeartHealthWidgetState extends State<HeartHealthWidget> {
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
List<Map<String, dynamic>> convertMentalHealthData(List data) {
|
||||
return data.map<Map<String, dynamic>>((item) {
|
||||
final String? colorStr = item['color'];
|
||||
final int value = item['value'] ?? 0;
|
||||
final String explain =
|
||||
(item['tips'] != null && (item['tips'] as String).trim().isNotEmpty)
|
||||
? item['tips']
|
||||
: '高风险';
|
||||
|
||||
return {
|
||||
'name': item['name'],
|
||||
'color': colorStr != null && colorStr.isNotEmpty
|
||||
? stringToColor(colorStr)
|
||||
: stringToColor("#00C1AA"), // 默认红色
|
||||
'percent': value,
|
||||
'explain': explain,
|
||||
"bottomColor": Colors.grey,
|
||||
};
|
||||
}).toList();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,7 +12,8 @@ import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/ScatterPlotChart.dart';
|
||||
|
||||
class HeartPointWidget extends StatefulWidget {
|
||||
HeartPointWidget({super.key});
|
||||
var sleepReport;
|
||||
HeartPointWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<HeartPointWidget> createState() => _HeartPointWidgetState();
|
||||
@@ -36,17 +37,39 @@ class _HeartPointWidgetState extends State<HeartPointWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
List<ScatterSpot> data = List.generate(200, (index) {
|
||||
// 随机生成 x 和 y 值,范围都在 0-1400 之间
|
||||
double x = Random().nextDouble() * 1400; // x 值在 0-1400 范围
|
||||
double y = Random().nextDouble() * 1400; // y 值也在 0-1400 范围
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport['hrsp'] == null ||
|
||||
widget.sleepReport['hrsp'].isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
// List rawData = widget.sleepReport['hrsp'];
|
||||
// List<ScatterSpot> data = List.generate(200, (index) {
|
||||
// // 随机生成 x 和 y 值,范围都在 0-1400 之间
|
||||
// double x = Random().nextDouble() * 1400; // x 值在 0-1400 范围
|
||||
// double y = Random().nextDouble() * 1400; // y 值也在 0-1400 范围
|
||||
|
||||
// 返回 ScatterSpot,使用圆点绘制器自定义大小和颜色
|
||||
return ScatterSpot(
|
||||
x,
|
||||
y,
|
||||
);
|
||||
});
|
||||
// // 返回 ScatterSpot,使用圆点绘制器自定义大小和颜色
|
||||
// return ScatterSpot(
|
||||
// x,
|
||||
// y,
|
||||
// );
|
||||
// });
|
||||
double maxX = 0;
|
||||
double maxY = 0;
|
||||
|
||||
List<ScatterSpot> data = [];
|
||||
List rawData = widget.sleepReport['hrsp'];
|
||||
try {
|
||||
data = rawData.map<ScatterSpot>((item) {
|
||||
double x = (item['st'] ?? 0).toDouble();
|
||||
double y = (item['value'] ?? 0).toDouble();
|
||||
if (x > maxX) maxX = x;
|
||||
if (y > maxY) maxY = y;
|
||||
return ScatterSpot(x, y);
|
||||
}).toList();
|
||||
} catch (e) {
|
||||
print(e);
|
||||
}
|
||||
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
@@ -120,8 +143,8 @@ class _HeartPointWidgetState extends State<HeartPointWidget> {
|
||||
),
|
||||
child: ScatterPlotChart(
|
||||
points: data,
|
||||
xMax: 1400, // x轴最大值
|
||||
yMax: 1400, // y轴最大值
|
||||
xMax: maxX.toInt(), // x轴最大值
|
||||
yMax: maxY.toInt(), // y轴最大值
|
||||
pointColor: stringToColor("#00C1AA"), // 点的颜色
|
||||
divisions: 7, // 刻度分割数量
|
||||
),
|
||||
|
||||
69
lib/pages/sleep_report/component/HeartRateCard.dart
Normal file
69
lib/pages/sleep_report/component/HeartRateCard.dart
Normal file
@@ -0,0 +1,69 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||
import 'package:vbvs_app/component/home_page/SleepDataModuleWidget.dart';
|
||||
|
||||
class HeartRateCard extends StatefulWidget {
|
||||
var sleepReport;
|
||||
HeartRateCard({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<HeartRateCard> createState() => _HeartRateCardState();
|
||||
}
|
||||
|
||||
class _HeartRateCardState extends State<HeartRateCard> {
|
||||
@override
|
||||
void setState(VoidCallback callback) {
|
||||
super.setState(callback);
|
||||
}
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport is! Map ||
|
||||
widget.sleepReport.isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
|
||||
List data = widget.sleepReport['hrs'] ?? [];
|
||||
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
color: themeController.currentColor.sc5,
|
||||
borderRadius:
|
||||
BorderRadius.circular(AppConstants().normal_container_radius),
|
||||
),
|
||||
child: Padding(
|
||||
padding: EdgeInsetsDirectional.fromSTEB(26.rpx, 29.rpx, 26.rpx, 45.rpx),
|
||||
child: Wrap(
|
||||
spacing: 23.rpx, // 横向间距(左右间距如需加可设置)
|
||||
runSpacing: 25.rpx, // 每行之间的垂直间距
|
||||
children: List.generate(data.length, (index) {
|
||||
final item = data[index];
|
||||
return SizedBox(
|
||||
width: (MediaQuery.of(context).size.width - 160.rpx) / 3,
|
||||
child: SleepDataModuleWidget(data: item),
|
||||
// child: Container(
|
||||
// width: 20,
|
||||
// height: 20,
|
||||
// color: Colors.red,
|
||||
// ),
|
||||
);
|
||||
}),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10,7 +10,8 @@ import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/TimeSeriesChart.dart';
|
||||
|
||||
class HeartRateStandardWidget extends StatefulWidget {
|
||||
HeartRateStandardWidget({super.key});
|
||||
var sleepReport;
|
||||
HeartRateStandardWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<HeartRateStandardWidget> createState() =>
|
||||
@@ -35,17 +36,22 @@ class _HeartRateStandardWidgetState extends State<HeartRateStandardWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final now = DateTime.now();
|
||||
final startTime = now.subtract(Duration(hours: 5)).millisecondsSinceEpoch;
|
||||
final endTime = now.millisecondsSinceEpoch;
|
||||
final dataPoints = [
|
||||
TimeSeriesPoint(startTime + Duration(minutes: 10).inMilliseconds, 50),
|
||||
TimeSeriesPoint(startTime + Duration(hours: 1).inMilliseconds, 120),
|
||||
TimeSeriesPoint(startTime + Duration(hours: 2).inMilliseconds, 80),
|
||||
TimeSeriesPoint(startTime + Duration(hours: 3).inMilliseconds, 180),
|
||||
TimeSeriesPoint(startTime + Duration(hours: 4).inMilliseconds, 30),
|
||||
TimeSeriesPoint(endTime - Duration(minutes: 10).inMilliseconds, 150),
|
||||
];
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport is! Map ||
|
||||
widget.sleepReport.isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
|
||||
final startTime = widget.sleepReport['startTime'];
|
||||
final endTime = widget.sleepReport['endTime'];
|
||||
List<Map<String, dynamic>> data =
|
||||
(widget.sleepReport['hrbc'] as List).cast<Map<String, dynamic>>();
|
||||
final dataPoints = data.map((item) {
|
||||
final x = item['st'] as int;
|
||||
final y = (item['value'] as num).toDouble(); // 安全地转换为 double
|
||||
return TimeSeriesPoint(x, y);
|
||||
}).toList();
|
||||
|
||||
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
|
||||
@@ -9,7 +9,8 @@ import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/StatusBarWithIndicator.dart';
|
||||
|
||||
class SkinPercentWidget extends StatefulWidget {
|
||||
SkinPercentWidget({super.key});
|
||||
var sleepReport;
|
||||
SkinPercentWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<SkinPercentWidget> createState() => _SkinPercentWidgetState();
|
||||
@@ -32,7 +33,32 @@ class _SkinPercentWidgetState extends State<SkinPercentWidget> {
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
Widget build(BuildContext context) {
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport['sicp'] == null ||
|
||||
widget.sleepReport['sicp'].isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
int id = 100001;
|
||||
List data = widget.sleepReport['sicp'];
|
||||
final target = data.firstWhere(
|
||||
(element) => element['id'] == id,
|
||||
orElse: () => null, // 如果没有找到,返回 null(你也可以抛异常或用 {} 替代)
|
||||
);
|
||||
|
||||
if (target == null) {
|
||||
return Container();
|
||||
}
|
||||
List<Map<String, dynamic>> showLabel = [];
|
||||
if (target != null && target['type'] is List) {
|
||||
showLabel = (target['type'] as List).map<Map<String, dynamic>>((item) {
|
||||
return {
|
||||
'key': item['type'],
|
||||
'name': item['name'],
|
||||
'color': stringToColor(item['color']),
|
||||
};
|
||||
}).toList();
|
||||
}
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
@@ -62,7 +88,7 @@ class _SkinPercentWidgetState extends State<SkinPercentWidget> {
|
||||
14.rpx, 0.rpx, 14.rpx, 0), //
|
||||
borderRadius: 0.rpx, // 圆形点击区域
|
||||
onTap: () {
|
||||
showTipDialog(
|
||||
showTipDialog(
|
||||
context,
|
||||
Container(
|
||||
child: Text(
|
||||
@@ -97,13 +123,8 @@ class _SkinPercentWidgetState extends State<SkinPercentWidget> {
|
||||
padding:
|
||||
EdgeInsetsDirectional.fromSTEB(30.rpx, 0.rpx, 30.rpx, 0.rpx),
|
||||
child: StatusBarWithIndicator(
|
||||
selectKey: 2,
|
||||
showLabel: [
|
||||
{"key": 1, "name": "正常", "color": Color(0xFF4CAF50)},
|
||||
{"key": 2, "name": "一般", "color": Color(0xFF8BC34A)},
|
||||
{"key": 3, "name": "注意", "color": Color(0xFFFFC107)},
|
||||
{"key": 4, "name": "警告", "color": Color(0xFFF44336)},
|
||||
],
|
||||
selectKey: target['value'],
|
||||
showLabel: showLabel,
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
|
||||
69
lib/pages/sleep_report/component/SleepCard.dart
Normal file
69
lib/pages/sleep_report/component/SleepCard.dart
Normal file
@@ -0,0 +1,69 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||
import 'package:vbvs_app/component/home_page/SleepDataModuleWidget.dart';
|
||||
|
||||
class SleepCard extends StatefulWidget {
|
||||
var sleepReport;
|
||||
SleepCard({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<SleepCard> createState() => _SleepCardState();
|
||||
}
|
||||
|
||||
class _SleepCardState extends State<SleepCard> {
|
||||
@override
|
||||
void setState(VoidCallback callback) {
|
||||
super.setState(callback);
|
||||
}
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport is! Map ||
|
||||
widget.sleepReport.isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
|
||||
List data = widget.sleepReport['bs'] ?? [];
|
||||
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
color: themeController.currentColor.sc5,
|
||||
borderRadius:
|
||||
BorderRadius.circular(AppConstants().normal_container_radius),
|
||||
),
|
||||
child: Padding(
|
||||
padding: EdgeInsetsDirectional.fromSTEB(26.rpx, 29.rpx, 26.rpx, 45.rpx),
|
||||
child: Wrap(
|
||||
spacing: 23.rpx, // 横向间距(左右间距如需加可设置)
|
||||
runSpacing: 25.rpx, // 每行之间的垂直间距
|
||||
children: List.generate(data.length, (index) {
|
||||
final item = data[index];
|
||||
return SizedBox(
|
||||
width: (MediaQuery.of(context).size.width - 160.rpx) / 3,
|
||||
child: SleepDataModuleWidget(data: item),
|
||||
// child: Container(
|
||||
// width: 20,
|
||||
// height: 20,
|
||||
// color: Colors.red,
|
||||
// ),
|
||||
);
|
||||
}),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
import 'package:ef/ef.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutterflow_ui/flutterflow_ui.dart';
|
||||
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||
@@ -6,7 +7,8 @@ import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/SegmentedCirclePainter.dart';
|
||||
|
||||
class SleepScoreWidget extends StatefulWidget {
|
||||
const SleepScoreWidget({super.key});
|
||||
var sleepReport;
|
||||
SleepScoreWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<SleepScoreWidget> createState() => _SleepScoreWidgetState();
|
||||
@@ -30,12 +32,21 @@ class _SleepScoreWidgetState extends State<SleepScoreWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
List<Map<String, dynamic>> showLabel = [
|
||||
{"level": 1, "name": "优秀(≥85)", "color": Color(0xFF4CAF50)},
|
||||
{"level": 2, "name": "良好(75~84)", "color": Color(0xFF8BC34A)},
|
||||
{"level": 3, "name": "合格(60~74)", "color": Color(0xFFFFC107)},
|
||||
{"level": 4, "name": "注意(<60)", "color": Color(0xFFF44336)},
|
||||
];
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport is! Map ||
|
||||
widget.sleepReport.isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
// List<Map<String, dynamic>> showLabel = [
|
||||
// {"level": 1, "name": "优秀(≥85)", "color": Color(0xFF4CAF50)},
|
||||
// {"level": 2, "name": "良好(75~84)", "color": Color(0xFF8BC34A)},
|
||||
// {"level": 3, "name": "合格(60~74)", "color": Color(0xFFFFC107)},
|
||||
// {"level": 4, "name": "注意(<60)", "color": Color(0xFFF44336)},
|
||||
// ];
|
||||
List showLabel = widget.sleepReport['score']['type'];
|
||||
List stages = widget.sleepReport['score']['stages'];
|
||||
List<SegmentData> segments = parseSegments(widget.sleepReport);
|
||||
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
// decoration: BoxDecoration(color: Colors.green),
|
||||
@@ -57,7 +68,7 @@ class _SleepScoreWidgetState extends State<SleepScoreWidget> {
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Text(
|
||||
'30天平均分',
|
||||
'30天平均分'.tr,
|
||||
style: TextStyle(
|
||||
color: Color(0xFFD3D3D3),
|
||||
fontSize: 26.rpx,
|
||||
@@ -65,7 +76,7 @@ class _SleepScoreWidgetState extends State<SleepScoreWidget> {
|
||||
),
|
||||
),
|
||||
Text(
|
||||
'79',
|
||||
'${widget.sleepReport['score']?['avg']}',
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
fontSize: 48.rpx,
|
||||
@@ -79,12 +90,13 @@ class _SleepScoreWidgetState extends State<SleepScoreWidget> {
|
||||
child: Container(
|
||||
decoration: BoxDecoration(),
|
||||
child: SegmentedCircleWithCenterWidget(
|
||||
segments: [
|
||||
SegmentData(color: Colors.red, value: 30),
|
||||
SegmentData(color: Colors.green, value: 20),
|
||||
SegmentData(color: Colors.blue, value: 40),
|
||||
SegmentData(color: Colors.orange, value: 10),
|
||||
],
|
||||
// segments: [
|
||||
// SegmentData(color: Colors.red, value: 30),
|
||||
// SegmentData(color: Colors.green, value: 20),
|
||||
// SegmentData(color: Colors.blue, value: 40),
|
||||
// SegmentData(color: Colors.orange, value: 10),
|
||||
// ],
|
||||
segments: segments,
|
||||
strokeWidth: 8,
|
||||
gapAngle: 8,
|
||||
centerWidget: Container(
|
||||
@@ -92,14 +104,14 @@ class _SleepScoreWidgetState extends State<SleepScoreWidget> {
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Text(
|
||||
"睡眠评分",
|
||||
"睡眠评分".tr,
|
||||
style: TextStyle(
|
||||
color: stringToColor("#FFFFFF"),
|
||||
fontSize:
|
||||
AppConstants().normal_text_fontSize),
|
||||
),
|
||||
Text(
|
||||
"65",
|
||||
'${widget.sleepReport['score']?['score']}',
|
||||
style: TextStyle(
|
||||
color: stringToColor("#FF9F66"),
|
||||
fontSize: 100.rpx),
|
||||
@@ -107,6 +119,7 @@ class _SleepScoreWidgetState extends State<SleepScoreWidget> {
|
||||
],
|
||||
),
|
||||
),
|
||||
trend: widget.sleepReport['score']?['trend'],
|
||||
),
|
||||
),
|
||||
),
|
||||
@@ -117,7 +130,7 @@ class _SleepScoreWidgetState extends State<SleepScoreWidget> {
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Text(
|
||||
'睡眠等级',
|
||||
'睡眠等级'.tr,
|
||||
style: TextStyle(
|
||||
color: Color(0xFFD3D3D3),
|
||||
fontSize: 26.rpx,
|
||||
@@ -125,7 +138,7 @@ class _SleepScoreWidgetState extends State<SleepScoreWidget> {
|
||||
),
|
||||
),
|
||||
Text(
|
||||
'合格',
|
||||
'${getSleepLevel(widget.sleepReport)}',
|
||||
style: TextStyle(
|
||||
color: stringToColor("#FF9F66"),
|
||||
fontSize: 48.rpx,
|
||||
@@ -153,13 +166,13 @@ class _SleepScoreWidgetState extends State<SleepScoreWidget> {
|
||||
width: 20.rpx,
|
||||
height: 20.rpx,
|
||||
decoration: BoxDecoration(
|
||||
color: item["color"],
|
||||
color: stringToColor("${item["color"]}"),
|
||||
borderRadius: BorderRadius.circular(10.rpx),
|
||||
),
|
||||
),
|
||||
SizedBox(width: 17.rpx),
|
||||
Text(
|
||||
item["name"],
|
||||
item["name"] + '(' + item['range'] + ")",
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
fontSize: 24.rpx,
|
||||
@@ -175,4 +188,54 @@ class _SleepScoreWidgetState extends State<SleepScoreWidget> {
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
//获取睡眠等级
|
||||
String getSleepLevel(sleepReport) {
|
||||
if (sleepReport == null ||
|
||||
sleepReport['score'] == null ||
|
||||
sleepReport['score']['level'] == null ||
|
||||
sleepReport['score']['type'] == null) {
|
||||
return "未知数据".tr;
|
||||
}
|
||||
|
||||
int level = sleepReport['score']['level'];
|
||||
List<dynamic> typeList = sleepReport['score']['type'];
|
||||
|
||||
// 在 typeList 中查找 level 匹配的项
|
||||
var matched = typeList.firstWhere(
|
||||
(item) => item['level'] == level,
|
||||
orElse: () => null,
|
||||
);
|
||||
|
||||
if (matched != null && matched['name'] != null) {
|
||||
return matched['name'];
|
||||
}
|
||||
return "未知数据".tr;
|
||||
}
|
||||
|
||||
List<SegmentData> parseSegments(Map sleepReport) {
|
||||
try {
|
||||
List stages = sleepReport['score']['stages'] ?? [];
|
||||
List typeList = sleepReport['sleepData']['type'] ?? [];
|
||||
|
||||
Map<int, Color> typeColorMap = {
|
||||
for (var item in typeList)
|
||||
if (item['type'] != null && item['color'] != null)
|
||||
item['type']: stringToColor(item['color'])
|
||||
};
|
||||
|
||||
// 构造 segments 列表
|
||||
List<SegmentData> segments = stages.map<SegmentData>((stage) {
|
||||
int type = stage['type'];
|
||||
double value = (stage['per'] ?? 0).toDouble();
|
||||
Color color = typeColorMap[type] ?? Colors.grey; // fallback 灰色
|
||||
|
||||
return SegmentData(color: color, value: value);
|
||||
}).toList();
|
||||
|
||||
return segments;
|
||||
} catch (e) {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
388
lib/pages/sleep_report/component/SleepView.dart
Normal file
388
lib/pages/sleep_report/component/SleepView.dart
Normal file
@@ -0,0 +1,388 @@
|
||||
import 'package:ef/ef.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_svg/svg.dart';
|
||||
import 'package:vbvs_app/common/color/appConstants.dart';
|
||||
import 'package:vbvs_app/common/util/FitTool.dart';
|
||||
import 'package:vbvs_app/common/util/MyUtils.dart';
|
||||
import 'package:vbvs_app/component/tool/ClickableContainer.dart';
|
||||
import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/GradientLine.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/SnoreWaveform.dart';
|
||||
|
||||
//睡眠规律性
|
||||
class SleepViewWidget extends StatefulWidget {
|
||||
var sleepReport;
|
||||
SleepViewWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<SleepViewWidget> createState() => _SleepViewWidgetState();
|
||||
}
|
||||
|
||||
class _SleepViewWidgetState extends State<SleepViewWidget> {
|
||||
@override
|
||||
void setState(VoidCallback callback) {
|
||||
super.setState(callback);
|
||||
}
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport is! Map ||
|
||||
widget.sleepReport.isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
|
||||
// List showLabel = widget.sleepReport['sleepData']['type'];
|
||||
List showLabel = widget.sleepReport['sleepData']['type']
|
||||
.where((item) => item['show'] != false)
|
||||
.toList();
|
||||
|
||||
// final snoreValues = generateSnoreValues(
|
||||
// widget.sleepReport['startTime'],
|
||||
// widget.sleepReport['endTime'],
|
||||
// );
|
||||
List snoreValues = widget.sleepReport['ssp'];
|
||||
Map time = MyUtils.diffHoursMinutesMap(
|
||||
widget.sleepReport['startTime'], widget.sleepReport['endTime']);
|
||||
int hour = time['hours'];
|
||||
int minutes = time['minutes'];
|
||||
// List stages = [
|
||||
// {"et": 1748011592746, "st": 1748010870326, "type": 1},
|
||||
// {"et": 1748013519534, "st": 1748011593746, "type": 2},
|
||||
// {"et": 1748013639534, "st": 1748013520534, "type": 1},
|
||||
// {"et": 1748014183143, "st": 1748013640534, "type": 2},
|
||||
// {"et": 1748014363143, "st": 1748014184143, "type": 1},
|
||||
// {"et": 1748014423143, "st": 1748014364143, "type": 2},
|
||||
// {"et": 1748014541143, "st": 1748014424143, "type": 1},
|
||||
// {"et": 1748015439477, "st": 1748014542143, "type": 0},
|
||||
// {"et": 1748018470415, "st": 1748015440477, "type": 1},
|
||||
// {"et": 1748019755726, "st": 1748018471415, "type": 2},
|
||||
// {"et": 1748020123225, "st": 1748019756726, "type": 1},
|
||||
// {"et": 1748021138809, "st": 1748020124225, "type": 2},
|
||||
// {"et": 1748021535809, "st": 1748021139809, "type": 1},
|
||||
// {"et": 1748021776809, "st": 1748021536809, "type": 2},
|
||||
// {"et": 1748022140117, "st": 1748021777809, "type": 1},
|
||||
// {"et": 1748022320117, "st": 1748022141117, "type": 2},
|
||||
// {"et": 1748022996627, "st": 1748022321117, "type": 1},
|
||||
// {"et": 1748023439627, "st": 1748022997627, "type": 2},
|
||||
// {"et": 1748023812173, "st": 1748023440627, "type": 1},
|
||||
// {"et": 1748023895173, "st": 1748023813173, "type": 2},
|
||||
// {"et": 1748024692483, "st": 1748023896173, "type": 1},
|
||||
// {"et": 1748024960483, "st": 1748024693483, "type": 2},
|
||||
// {"et": 1748025678983, "st": 1748024961483, "type": 1},
|
||||
// {"et": 1748026351585, "st": 1748025679983, "type": 2},
|
||||
// {"et": 1748027131585, "st": 1748026352585, "type": 1},
|
||||
// {"et": 1748027209585, "st": 1748027132585, "type": 2},
|
||||
// {"et": 1748027487864, "st": 1748027210585, "type": 1},
|
||||
// {"et": 1748027967864, "st": 1748027488864, "type": 3},
|
||||
// {"et": 1748028182371, "st": 1748027968864, "type": 1},
|
||||
// {"et": 1748028372371, "st": 1748028183371, "type": 2},
|
||||
// {"et": 1748029109981, "st": 1748028373371, "type": 1},
|
||||
// {"et": 1748029958223, "st": 1748029110981, "type": 2},
|
||||
// {"et": 1748030792223, "st": 1748029959223, "type": 1},
|
||||
// {"et": 1748030874723, "st": 1748030793223, "type": 2},
|
||||
// {"et": 1748032042305, "st": 1748030875723, "type": 1},
|
||||
// {"et": 1748032170305, "st": 1748032043305, "type": 2},
|
||||
// {"et": 1748033387611, "st": 1748032171305, "type": 1},
|
||||
// {"et": 1748033967118, "st": 1748033388611, "type": 2},
|
||||
// {"et": 1748034087118, "st": 1748033968118, "type": 1},
|
||||
// {"et": 1748034147118, "st": 1748034088118, "type": 2},
|
||||
// {"et": 1748034327118, "st": 1748034148118, "type": 1},
|
||||
// {"et": 1748034930672, "st": 1748034328118, "type": 2},
|
||||
// {"et": 1748035230672, "st": 1748034931672, "type": 1},
|
||||
// {"et": 1748035353974, "st": 1748035231672, "type": 2},
|
||||
// {"et": 1748036710471, "st": 1748035354974, "type": 1},
|
||||
// {"et": 1748037126471, "st": 1748036711471, "type": 2},
|
||||
// {"et": 1748037310051, "st": 1748037127471, "type": 1},
|
||||
// {"et": 1748037380051, "st": 1748037311051, "type": 2},
|
||||
// {"et": 1748038881358, "st": 1748037381051, "type": 1},
|
||||
// {"et": 1748038962867, "st": 1748038882358, "type": 0},
|
||||
// {"et": 1748039291867, "st": 1748038963867, "type": 1},
|
||||
// {"et": 1748039684867, "st": 1748039292867, "type": 0}
|
||||
// ];
|
||||
List stages = widget.sleepReport['sleepData']['stages'];
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
color: themeController.currentColor.sc5,
|
||||
borderRadius:
|
||||
BorderRadius.circular(AppConstants().normal_container_radius),
|
||||
),
|
||||
child: Padding(
|
||||
padding: EdgeInsetsDirectional.fromSTEB(26.rpx, 29.rpx, 26.rpx, 45.rpx),
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.max,
|
||||
children: [
|
||||
Container(
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Text(
|
||||
"睡眠规律性".tr,
|
||||
style: TextStyle(
|
||||
color: themeController.currentColor.sc3,
|
||||
fontSize: AppConstants().title_text_fontSize),
|
||||
),
|
||||
ClickableContainer(
|
||||
backgroundColor: Colors.transparent,
|
||||
highlightColor: Colors.white, // 或设置为你需要的水波纹颜色
|
||||
padding: EdgeInsetsDirectional.fromSTEB(
|
||||
14.rpx, 0.rpx, 14.rpx, 0), //
|
||||
borderRadius: 0.rpx, // 圆形点击区域
|
||||
onTap: () {
|
||||
showTipDialog(
|
||||
context,
|
||||
Container(
|
||||
child: Text(
|
||||
"睡眠规律性介绍。",
|
||||
style: TextStyle(
|
||||
fontSize: 26.rpx,
|
||||
color: themeController.currentColor.sc3,
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
child: Container(
|
||||
padding: EdgeInsetsDirectional.fromSTEB(
|
||||
0, 0.rpx, 0.rpx, 0), // 外部 padding 移到内部
|
||||
width: 28.rpx,
|
||||
height: 28.rpx,
|
||||
child: SvgPicture.asset(
|
||||
'assets/img/icon/explain.svg',
|
||||
fit: BoxFit.cover,
|
||||
color: themeController.currentColor.sc4,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 83.rpx,
|
||||
),
|
||||
Padding(
|
||||
padding:
|
||||
EdgeInsetsDirectional.fromSTEB(30.rpx, 0.rpx, 30.rpx, 0.rpx),
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
children: [
|
||||
// 左侧 - 入睡时间
|
||||
Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Image.asset(
|
||||
"assets/img/moon.png",
|
||||
width: 43.rpx,
|
||||
height: 43.rpx,
|
||||
fit: BoxFit.cover,
|
||||
),
|
||||
SizedBox(height: 33.rpx),
|
||||
Container(
|
||||
height: 40.rpx,
|
||||
child: Text(
|
||||
"${MyUtils.formatToHHmm(widget.sleepReport['startTime'])}",
|
||||
style: TextStyle(
|
||||
color: themeController.currentColor.sc3,
|
||||
fontSize: AppConstants().normal_text_fontSize,
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(height: 20.rpx),
|
||||
Text(
|
||||
"入睡时间".tr,
|
||||
style: TextStyle(
|
||||
color: themeController.currentColor.sc4,
|
||||
fontSize: AppConstants().normal_text_fontSize,
|
||||
),
|
||||
maxLines: 1,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
// 中间 - 渐变线 + 时间
|
||||
Expanded(
|
||||
child: Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Container(
|
||||
height: 43.rpx,
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
GradientLine(
|
||||
height: 1,
|
||||
color: Colors.white60,
|
||||
),
|
||||
],
|
||||
)),
|
||||
SizedBox(height: 33.rpx), // 与图标对齐
|
||||
Text.rich(
|
||||
TextSpan(
|
||||
children: [
|
||||
TextSpan(
|
||||
text: "$hour",
|
||||
style: TextStyle(
|
||||
color: themeController
|
||||
.currentColor.sc2, // 小时数字颜色
|
||||
fontSize: 36.rpx, // 小时数字字号
|
||||
),
|
||||
),
|
||||
TextSpan(
|
||||
text: "小时",
|
||||
style: TextStyle(
|
||||
color: themeController.currentColor.sc3,
|
||||
fontSize: AppConstants().title_text_fontSize,
|
||||
),
|
||||
),
|
||||
TextSpan(
|
||||
text: "$minutes",
|
||||
style: TextStyle(
|
||||
color: themeController
|
||||
.currentColor.sc2, // 小时数字颜色
|
||||
fontSize: 36.rpx, // 分钟数字字号
|
||||
),
|
||||
),
|
||||
TextSpan(
|
||||
text: "分钟",
|
||||
style: TextStyle(
|
||||
color: themeController.currentColor.sc3,
|
||||
fontSize: AppConstants().title_text_fontSize,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
maxLines: 1,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
SizedBox(height: 20.rpx),
|
||||
Text(
|
||||
"睡眠时长".tr,
|
||||
style: TextStyle(
|
||||
color: themeController.currentColor.sc4,
|
||||
fontSize: AppConstants().normal_text_fontSize,
|
||||
),
|
||||
maxLines: 1,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
||||
// 右侧 - 起床时间图标
|
||||
Column(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Image.asset(
|
||||
"assets/img/sun.png",
|
||||
width: 43.rpx,
|
||||
height: 43.rpx,
|
||||
fit: BoxFit.cover,
|
||||
),
|
||||
SizedBox(height: 33.rpx),
|
||||
Container(
|
||||
height: 40.rpx,
|
||||
child: Text(
|
||||
"${MyUtils.formatToHHmm(widget.sleepReport['endTime'])}",
|
||||
style: TextStyle(
|
||||
color: themeController.currentColor.sc3,
|
||||
fontSize: AppConstants().normal_text_fontSize,
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(height: 20.rpx),
|
||||
Text(
|
||||
"起床时间".tr,
|
||||
style: TextStyle(
|
||||
color: themeController.currentColor.sc4,
|
||||
fontSize: AppConstants().normal_text_fontSize,
|
||||
),
|
||||
maxLines: 1,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 49.rpx,
|
||||
),
|
||||
Padding(
|
||||
padding:
|
||||
EdgeInsetsDirectional.fromSTEB(26.rpx, 0.rpx, 26.rpx, 0.rpx),
|
||||
child: SnoreChartContainer(
|
||||
snoreValues: snoreValues,
|
||||
barData: stages,
|
||||
startTime: widget.sleepReport['startTime'],
|
||||
endTime: widget.sleepReport['endTime'],
|
||||
showLabel: showLabel,
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: 70.rpx,
|
||||
),
|
||||
Wrap(
|
||||
spacing: 55.rpx,
|
||||
runSpacing: 20.rpx,
|
||||
children: showLabel.map<Widget>((item) {
|
||||
return Container(
|
||||
padding: EdgeInsets.all(5.rpx),
|
||||
child: Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
Container(
|
||||
width: 20.rpx,
|
||||
height: 20.rpx,
|
||||
decoration: BoxDecoration(
|
||||
color: item["color"] == null || item["color"] == ""
|
||||
? Colors.transparent
|
||||
: stringToColor(item["color"]),
|
||||
borderRadius: BorderRadius.circular(10.rpx),
|
||||
),
|
||||
),
|
||||
SizedBox(width: 17.rpx),
|
||||
Text(
|
||||
item["name"],
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
fontSize: 24.rpx,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}).toList(),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
List<Map<String, dynamic>> generateSnoreValues(int startTime, int endTime) {
|
||||
final int count = 100;
|
||||
final int interval = ((endTime - startTime) / count).floor();
|
||||
|
||||
return List.generate(count, (index) {
|
||||
final timestamp = startTime + interval * index;
|
||||
final value =
|
||||
(2 + 1 * (index % 7) / 6.0) * (index % 2 == 0 ? 1 : -1); // 示例上下对称波动
|
||||
return {
|
||||
"timestamp": timestamp,
|
||||
"value": double.parse(value.toStringAsFixed(2)),
|
||||
};
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -9,7 +9,8 @@ import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/LineChartByRange.dart';
|
||||
|
||||
class SnoreViewWidgetWidget extends StatefulWidget {
|
||||
SnoreViewWidgetWidget({super.key});
|
||||
var sleepReport;
|
||||
SnoreViewWidgetWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<SnoreViewWidgetWidget> createState() => _SnoreViewWidgetWidgetState();
|
||||
@@ -33,17 +34,17 @@ class _SnoreViewWidgetWidgetState extends State<SnoreViewWidgetWidget> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
var showLabel = [
|
||||
{"startTime": 1744644751000, "endTime": 1744648351000, "times": 25},
|
||||
{"startTime": 1744650031000, "endTime": 1744653631000, "times": 27},
|
||||
{"startTime": 1744655011000, "endTime": 1744662211000, "times": 60},
|
||||
// {"startTime": 1744657291000, "endTime": 1744657411000, "times": 28},
|
||||
// {"startTime": 1744661011000, "endTime": 1744661131000, "times": 15},
|
||||
// {"startTime": 1744668331000, "endTime": 1744668511000, "times": 48},
|
||||
// {"startTime": 1744673431000, "endTime": 1744673551000, "times": 25},
|
||||
];
|
||||
var startTime = 1744641151000;
|
||||
var endTime = 1744677151000;
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport is! Map ||
|
||||
widget.sleepReport.isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
|
||||
List<Map<String, dynamic>> data =
|
||||
(widget.sleepReport['ssp'] as List).cast<Map<String, dynamic>>();
|
||||
List<Map<String, dynamic>> showLabel = convertToShowLabel(data);
|
||||
var startTime = widget.sleepReport['startTime'];
|
||||
var endTime = widget.sleepReport['endTime'];
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
@@ -121,4 +122,45 @@ class _SnoreViewWidgetWidgetState extends State<SnoreViewWidgetWidget> {
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
List<Map<String, dynamic>> convertToShowLabel(
|
||||
List<Map<String, dynamic>> data) {
|
||||
if (data.isEmpty) return [];
|
||||
|
||||
data.sort((a, b) => a['st'].compareTo(b['st'])); // 确保时间有序
|
||||
|
||||
List<Map<String, dynamic>> result = [];
|
||||
|
||||
int startTime = data[0]['st'];
|
||||
int endTime = data[0]['st'];
|
||||
int currentValue = data[0]['value'];
|
||||
|
||||
for (int i = 1; i < data.length; i++) {
|
||||
final item = data[i];
|
||||
final st = item['st'];
|
||||
final value = item['value'];
|
||||
|
||||
if (value == currentValue) {
|
||||
endTime = st;
|
||||
} else {
|
||||
result.add({
|
||||
"startTime": startTime,
|
||||
"endTime": endTime,
|
||||
"times": currentValue,
|
||||
});
|
||||
startTime = st;
|
||||
endTime = st;
|
||||
currentValue = value;
|
||||
}
|
||||
}
|
||||
|
||||
// 添加最后一段
|
||||
result.add({
|
||||
"startTime": startTime,
|
||||
"endTime": endTime,
|
||||
"times": currentValue,
|
||||
});
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,7 +9,8 @@ import 'package:vbvs_app/pages/device_bind/componnet/bind_dialog.dart';
|
||||
import 'package:vbvs_app/pages/sleep_report/chart/StatusBarWithIndicator.dart';
|
||||
|
||||
class ZiZhuShenJingPercentWidget extends StatefulWidget {
|
||||
ZiZhuShenJingPercentWidget({super.key});
|
||||
var sleepReport;
|
||||
ZiZhuShenJingPercentWidget({super.key, required this.sleepReport});
|
||||
|
||||
@override
|
||||
State<ZiZhuShenJingPercentWidget> createState() =>
|
||||
@@ -35,6 +36,32 @@ class _ZiZhuShenJingPercentWidgetState
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
if (widget.sleepReport == null ||
|
||||
widget.sleepReport['sicp'] == null ||
|
||||
widget.sleepReport['sicp'].isEmpty) {
|
||||
return Container();
|
||||
}
|
||||
int id = 100000;
|
||||
List data = widget.sleepReport['sicp'];
|
||||
final target = data.firstWhere(
|
||||
(element) => element['id'] == id,
|
||||
orElse: () => null, // 如果没有找到,返回 null(你也可以抛异常或用 {} 替代)
|
||||
);
|
||||
|
||||
if (target == null) {
|
||||
return Container();
|
||||
}
|
||||
List<Map<String, dynamic>> showLabel = [];
|
||||
if (target != null && target['type'] is List) {
|
||||
showLabel = (target['type'] as List).map<Map<String, dynamic>>((item) {
|
||||
return {
|
||||
'key': item['type'],
|
||||
'name': item['name'],
|
||||
'color': stringToColor(item['color']),
|
||||
};
|
||||
}).toList();
|
||||
}
|
||||
|
||||
return Container(
|
||||
width: double.infinity,
|
||||
decoration: BoxDecoration(
|
||||
@@ -99,13 +126,8 @@ class _ZiZhuShenJingPercentWidgetState
|
||||
padding:
|
||||
EdgeInsetsDirectional.fromSTEB(30.rpx, 0.rpx, 30.rpx, 0.rpx),
|
||||
child: StatusBarWithIndicator(
|
||||
selectKey: 3,
|
||||
showLabel: [
|
||||
{"key": 1, "name": "正常", "color": Color(0xFF4CAF50)},
|
||||
{"key": 2, "name": "一般", "color": Color(0xFF8BC34A)},
|
||||
{"key": 3, "name": "注意", "color": Color(0xFFFFC107)},
|
||||
{"key": 4, "name": "警告", "color": Color(0xFFF44336)},
|
||||
],
|
||||
selectKey: target['value'],
|
||||
showLabel: showLabel,
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user