新增完整的轻断食功能,包括: - 断食计划列表和详情页面,支持12-12、14-10、16-8、18-6四种计划 - 断食状态实时追踪和倒计时显示 - 自定义开始时间选择器 - 断食通知提醒功能 - Redux状态管理和数据持久化 - 新增tab导航入口和路由配置
214 lines
6.6 KiB
TypeScript
214 lines
6.6 KiB
TypeScript
import type { BottomTabNavigationOptions } from '@react-navigation/bottom-tabs';
|
|
import { GlassContainer, GlassView, isLiquidGlassAvailable } from 'expo-glass-effect';
|
|
import * as Haptics from 'expo-haptics';
|
|
import { Tabs, usePathname } from 'expo-router';
|
|
import { Icon, Label, NativeTabs } from 'expo-router/unstable-native-tabs';
|
|
|
|
import React from 'react';
|
|
import { Text, TouchableOpacity, View, ViewStyle } from 'react-native';
|
|
|
|
import { IconSymbol } from '@/components/ui/IconSymbol';
|
|
import { Colors } from '@/constants/Colors';
|
|
import { ROUTES } from '@/constants/Routes';
|
|
import { TAB_BAR_BOTTOM_OFFSET, TAB_BAR_HEIGHT } from '@/constants/TabBar';
|
|
import { useColorScheme } from '@/hooks/useColorScheme';
|
|
|
|
// Tab configuration
|
|
type TabConfig = {
|
|
icon: string;
|
|
title: string;
|
|
};
|
|
|
|
const TAB_CONFIGS: Record<string, TabConfig> = {
|
|
statistics: { icon: 'chart.pie.fill', title: '健康' },
|
|
fasting: { icon: 'timer', title: '断食' },
|
|
goals: { icon: 'flag.fill', title: '习惯' },
|
|
challenges: { icon: 'trophy.fill', title: '挑战' },
|
|
personal: { icon: 'person.fill', title: '个人' },
|
|
};
|
|
|
|
export default function TabLayout() {
|
|
const theme = (useColorScheme() ?? 'light') as 'light' | 'dark';
|
|
const colorTokens = Colors[theme];
|
|
const pathname = usePathname();
|
|
const glassEffectAvailable = isLiquidGlassAvailable();
|
|
|
|
// Helper function to determine if a tab is selected
|
|
const isTabSelected = (routeName: string): boolean => {
|
|
const routeMap: Record<string, string> = {
|
|
statistics: ROUTES.TAB_STATISTICS,
|
|
fasting: ROUTES.TAB_FASTING,
|
|
goals: ROUTES.TAB_GOALS,
|
|
challenges: ROUTES.TAB_CHALLENGES,
|
|
personal: ROUTES.TAB_PERSONAL,
|
|
};
|
|
|
|
return routeMap[routeName] === pathname || pathname.includes(routeName);
|
|
};
|
|
|
|
// Custom tab button component
|
|
const createTabButton = (routeName: string) => (props: any) => {
|
|
const { onPress } = props;
|
|
const tabConfig = TAB_CONFIGS[routeName];
|
|
|
|
if (!tabConfig) return null;
|
|
|
|
const isSelected = isTabSelected(routeName);
|
|
|
|
const handlePress = (event: any) => {
|
|
if (process.env.EXPO_OS === 'ios') {
|
|
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light);
|
|
}
|
|
onPress?.(event);
|
|
};
|
|
|
|
return (
|
|
<TouchableOpacity
|
|
onPress={handlePress}
|
|
accessibilityRole="button"
|
|
activeOpacity={1}
|
|
style={{
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
flexDirection: 'row',
|
|
marginHorizontal: 2,
|
|
marginVertical: 10,
|
|
borderRadius: 25,
|
|
backgroundColor: isSelected ? colorTokens.tabBarActiveBackground : 'transparent',
|
|
paddingHorizontal: isSelected ? 8 : 4,
|
|
paddingVertical: 8,
|
|
}}
|
|
>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
<IconSymbol
|
|
size={22}
|
|
name={tabConfig.icon as any}
|
|
color={isSelected ? colorTokens.tabIconSelected : colorTokens.tabIconDefault}
|
|
/>
|
|
{isSelected && (
|
|
<Text
|
|
style={{
|
|
color: colorTokens.tabIconSelected,
|
|
fontSize: 12,
|
|
fontWeight: '600',
|
|
marginLeft: 6,
|
|
}}
|
|
numberOfLines={1}
|
|
>
|
|
{tabConfig.title}
|
|
</Text>
|
|
)}
|
|
</View>
|
|
</TouchableOpacity>
|
|
);
|
|
};
|
|
|
|
// Custom tab bar background component
|
|
const TabBarBackground = () => {
|
|
if (glassEffectAvailable) {
|
|
return (
|
|
<GlassContainer
|
|
spacing={8}
|
|
style={{
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
borderRadius: 34,
|
|
}}
|
|
>
|
|
<GlassView
|
|
isInteractive
|
|
glassEffectStyle="regular"
|
|
tintColor={theme === 'dark' ? 'rgba(0,0,0,0.3)' : 'rgba(255,255,255,0.3)'}
|
|
style={{
|
|
flex: 1,
|
|
borderRadius: 34,
|
|
}}
|
|
/>
|
|
</GlassContainer>
|
|
);
|
|
}
|
|
return null;
|
|
};
|
|
|
|
// Common screen options
|
|
const getScreenOptions = (routeName: string): BottomTabNavigationOptions => ({
|
|
headerShown: false,
|
|
tabBarActiveTintColor: colorTokens.tabIconSelected,
|
|
tabBarButton: createTabButton(routeName),
|
|
tabBarBackground: TabBarBackground,
|
|
tabBarStyle: {
|
|
position: 'absolute',
|
|
bottom: TAB_BAR_BOTTOM_OFFSET,
|
|
height: TAB_BAR_HEIGHT,
|
|
borderRadius: 34,
|
|
backgroundColor: glassEffectAvailable ? 'transparent' : colorTokens.tabBarBackground,
|
|
shadowColor: '#000',
|
|
shadowOffset: { width: 0, height: 2 },
|
|
shadowOpacity: glassEffectAvailable ? 0.1 : 0.2,
|
|
shadowRadius: 10,
|
|
elevation: 5,
|
|
paddingHorizontal: 6,
|
|
paddingTop: 0,
|
|
paddingBottom: 0,
|
|
marginHorizontal: 16,
|
|
left: 16,
|
|
right: 16,
|
|
alignSelf: 'center',
|
|
borderWidth: glassEffectAvailable ? 1 : 0,
|
|
borderColor: glassEffectAvailable ? (theme === 'dark' ? 'rgba(255,255,255,0.1)' : 'rgba(0,0,0,0.1)') : 'transparent',
|
|
} as ViewStyle,
|
|
tabBarItemStyle: {
|
|
backgroundColor: 'transparent',
|
|
height: TAB_BAR_HEIGHT,
|
|
marginTop: 0,
|
|
marginBottom: 0,
|
|
paddingTop: 0,
|
|
paddingBottom: 0,
|
|
},
|
|
tabBarShowLabel: false,
|
|
});
|
|
|
|
if (glassEffectAvailable) {
|
|
return <NativeTabs>
|
|
<NativeTabs.Trigger name="statistics">
|
|
<Label>健康</Label>
|
|
<Icon sf="chart.pie.fill" drawable="custom_android_drawable" />
|
|
</NativeTabs.Trigger>
|
|
<NativeTabs.Trigger name="fasting">
|
|
<Icon sf="timer" drawable="custom_android_drawable" />
|
|
<Label>断食</Label>
|
|
</NativeTabs.Trigger>
|
|
<NativeTabs.Trigger name="goals">
|
|
<Icon sf="flag.fill" drawable="custom_settings_drawable" />
|
|
<Label>习惯</Label>
|
|
</NativeTabs.Trigger>
|
|
<NativeTabs.Trigger name="challenges">
|
|
<Icon sf="trophy.fill" drawable="custom_android_drawable" />
|
|
<Label>挑战</Label>
|
|
</NativeTabs.Trigger>
|
|
<NativeTabs.Trigger name="personal">
|
|
<Icon sf="person.fill" drawable="custom_settings_drawable" />
|
|
<Label>我的</Label>
|
|
</NativeTabs.Trigger>
|
|
</NativeTabs>
|
|
}
|
|
|
|
return (
|
|
<Tabs
|
|
initialRouteName="statistics"
|
|
screenOptions={({ route }) => getScreenOptions(route.name)}
|
|
>
|
|
|
|
<Tabs.Screen name="statistics" options={{ title: '健康' }} />
|
|
<Tabs.Screen name="fasting" options={{ title: '断食' }} />
|
|
<Tabs.Screen name="goals" options={{ title: '习惯' }} />
|
|
<Tabs.Screen name="challenges" options={{ title: '挑战' }} />
|
|
<Tabs.Screen name="personal" options={{ title: '个人' }} />
|
|
</Tabs>
|
|
);
|
|
}
|