- 重构权限管理,新增SimpleEventEmitter实现状态监听 - 实现完整的健身圆环数据获取(活动热量、锻炼时间、站立小时) - 优化组件状态管理,支持实时数据刷新和权限状态响应 - 新增useHealthPermissions Hook,简化权限状态管理 - 完善iOS原生代码,支持按小时统计健身数据 - 优化应用启动时权限初始化流程,避免启动弹窗 BREAKING CHANGE: FitnessRingsCard组件API变更,移除手动传参改为自动获取数据
232 lines
6.8 KiB
TypeScript
232 lines
6.8 KiB
TypeScript
import React, { useState, useCallback, useRef } from 'react';
|
|
import { StyleSheet, Text, View, TouchableOpacity } from 'react-native';
|
|
import { router } from 'expo-router';
|
|
import { useFocusEffect } from '@react-navigation/native';
|
|
import { CircularRing } from './CircularRing';
|
|
import { ROUTES } from '@/constants/Routes';
|
|
import { fetchActivityRingsForDate, ActivityRingsData } from '@/utils/health';
|
|
|
|
type FitnessRingsCardProps = {
|
|
style?: any;
|
|
selectedDate?: Date;
|
|
// 动画重置令牌
|
|
resetToken?: unknown;
|
|
};
|
|
|
|
/**
|
|
* 健身圆环卡片组件,模仿 Apple Watch 的健身圆环
|
|
*/
|
|
export function FitnessRingsCard({
|
|
style,
|
|
selectedDate,
|
|
resetToken,
|
|
}: FitnessRingsCardProps) {
|
|
const [activityData, setActivityData] = useState<ActivityRingsData | null>(null);
|
|
const [loading, setLoading] = useState(false);
|
|
const loadingRef = useRef(false);
|
|
|
|
// 获取健身圆环数据 - 在页面聚焦、日期变化、从后台切换到前台时触发
|
|
useFocusEffect(
|
|
useCallback(() => {
|
|
const loadActivityData = async () => {
|
|
if (!selectedDate) return;
|
|
|
|
// 防止重复请求
|
|
if (loadingRef.current) return;
|
|
|
|
try {
|
|
loadingRef.current = true;
|
|
setLoading(true);
|
|
const data = await fetchActivityRingsForDate(selectedDate);
|
|
setActivityData(data);
|
|
} catch (error) {
|
|
console.error('FitnessRingsCard: 获取健身圆环数据失败:', error);
|
|
setActivityData(null);
|
|
} finally {
|
|
setLoading(false);
|
|
loadingRef.current = false;
|
|
}
|
|
};
|
|
|
|
loadActivityData();
|
|
}, [selectedDate])
|
|
);
|
|
|
|
// 使用获取到的数据或默认值
|
|
const activeCalories = activityData?.activeEnergyBurned ?? 0;
|
|
const activeCaloriesGoal = activityData?.activeEnergyBurnedGoal ?? 350;
|
|
const exerciseMinutes = activityData?.appleExerciseTime ?? 0;
|
|
const exerciseMinutesGoal = activityData?.appleExerciseTimeGoal ?? 30;
|
|
const standHours = activityData?.appleStandHours ?? 0;
|
|
const standHoursGoal = activityData?.appleStandHoursGoal ?? 12;
|
|
|
|
// 计算进度百分比
|
|
const caloriesProgress = Math.min(1, Math.max(0, activeCalories / activeCaloriesGoal));
|
|
const exerciseProgress = Math.min(1, Math.max(0, exerciseMinutes / exerciseMinutesGoal));
|
|
const standProgress = Math.min(1, Math.max(0, standHours / standHoursGoal));
|
|
|
|
const handlePress = () => {
|
|
router.push(ROUTES.FITNESS_RINGS_DETAIL);
|
|
};
|
|
|
|
return (
|
|
<TouchableOpacity style={[styles.container, style]} onPress={handlePress}>
|
|
<View style={styles.contentContainer}>
|
|
{/* 左侧圆环 */}
|
|
<View style={styles.ringsContainer}>
|
|
<View style={styles.ringWrapper}>
|
|
{/* 外圈 - 活动卡路里 (红色) */}
|
|
<View style={[styles.ringPosition]}>
|
|
<CircularRing
|
|
size={36}
|
|
strokeWidth={2.5}
|
|
trackColor="rgba(255, 59, 48, 0.15)"
|
|
progressColor="#FF3B30"
|
|
progress={caloriesProgress}
|
|
showCenterText={false}
|
|
resetToken={resetToken}
|
|
startAngleDeg={-90}
|
|
/>
|
|
</View>
|
|
|
|
{/* 中圈 - 锻炼分钟 (橙色) */}
|
|
<View style={[styles.ringPosition]}>
|
|
<CircularRing
|
|
size={26}
|
|
strokeWidth={2}
|
|
trackColor="rgba(255, 149, 0, 0.15)"
|
|
progressColor="#FF9500"
|
|
progress={exerciseProgress}
|
|
showCenterText={false}
|
|
resetToken={resetToken}
|
|
startAngleDeg={-90}
|
|
/>
|
|
</View>
|
|
|
|
{/* 内圈 - 站立小时 (蓝色) */}
|
|
<View style={[styles.ringPosition]}>
|
|
<CircularRing
|
|
size={16}
|
|
strokeWidth={1.5}
|
|
trackColor="rgba(0, 122, 255, 0.15)"
|
|
progressColor="#007AFF"
|
|
progress={standProgress}
|
|
showCenterText={false}
|
|
resetToken={resetToken}
|
|
startAngleDeg={-90}
|
|
/>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
|
|
{/* 右侧数据显示 */}
|
|
<View style={styles.dataContainer}>
|
|
<View style={styles.dataRow}>
|
|
<Text style={styles.dataText}>
|
|
{loading ? (
|
|
<Text style={styles.dataValue}>--</Text>
|
|
) : (
|
|
<>
|
|
<Text style={styles.dataValue}>{Math.round(activeCalories)}</Text>
|
|
<Text style={styles.dataGoal}>/{activeCaloriesGoal}</Text>
|
|
</>
|
|
)}
|
|
</Text>
|
|
<Text style={styles.dataUnit}>千卡</Text>
|
|
</View>
|
|
|
|
<View style={styles.dataRow}>
|
|
<Text style={styles.dataText}>
|
|
{loading ? (
|
|
<Text style={styles.dataValue}>--</Text>
|
|
) : (
|
|
<>
|
|
<Text style={styles.dataValue}>{Math.round(exerciseMinutes)}</Text>
|
|
<Text style={styles.dataGoal}>/{exerciseMinutesGoal}</Text>
|
|
</>
|
|
)}
|
|
</Text>
|
|
<Text style={styles.dataUnit}>分钟</Text>
|
|
</View>
|
|
|
|
<View style={styles.dataRow}>
|
|
<Text style={styles.dataText}>
|
|
{loading ? (
|
|
<Text style={styles.dataValue}>--</Text>
|
|
) : (
|
|
<>
|
|
<Text style={styles.dataValue}>{Math.round(standHours)}</Text>
|
|
<Text style={styles.dataGoal}>/{standHoursGoal}</Text>
|
|
</>
|
|
)}
|
|
</Text>
|
|
<Text style={styles.dataUnit}>小时</Text>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
</TouchableOpacity>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
borderRadius: 16,
|
|
shadowColor: '#000',
|
|
shadowOffset: {
|
|
width: 0,
|
|
height: 2,
|
|
},
|
|
shadowOpacity: 0.08,
|
|
shadowRadius: 8,
|
|
elevation: 3,
|
|
},
|
|
contentContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
},
|
|
ringsContainer: {
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
marginRight: 12,
|
|
},
|
|
ringWrapper: {
|
|
position: 'relative',
|
|
width: 36,
|
|
height: 36,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
ringPosition: {
|
|
position: 'absolute',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
dataContainer: {
|
|
flex: 1,
|
|
gap: 3,
|
|
},
|
|
dataRow: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
},
|
|
dataText: {
|
|
fontSize: 12,
|
|
fontWeight: '700',
|
|
flex: 1,
|
|
},
|
|
dataValue: {
|
|
color: '#192126',
|
|
},
|
|
dataGoal: {
|
|
color: '#9AA3AE',
|
|
},
|
|
dataUnit: {
|
|
fontSize: 10,
|
|
color: '#9AA3AE',
|
|
fontWeight: '500',
|
|
minWidth: 25,
|
|
textAlign: 'right',
|
|
},
|
|
}); |