- Updated app.json to set userInterfaceStyle to automatic for improved theme adaptability. - Refactored layout components to utilize useAppColors for dynamic theming, ensuring consistent color usage. - Introduced SystemChrome component to manage system UI background color based on theme. - Enhanced TabsLayout, ProfileStackLayout, and other components to leverage new theming structure. - Improved QRCodeScanner, SearchBar, and CommentItem styles to align with the updated theme system. - Consolidated styles in SystemMessageItem and TabBar for better maintainability and visual coherence.
253 lines
7.2 KiB
TypeScript
253 lines
7.2 KiB
TypeScript
/**
|
|
* 应用中心:与首页顶栏、个人主页帖子卡片同一套圆角 / 阴影 / 主色体系
|
|
*/
|
|
|
|
import React, { useCallback, useMemo } from 'react';
|
|
import { View, StyleSheet, ScrollView, TouchableOpacity, StatusBar } from 'react-native';
|
|
import { SafeAreaView, useSafeAreaInsets } from 'react-native-safe-area-context';
|
|
import { useRouter } from 'expo-router';
|
|
import { MaterialCommunityIcons } from '@expo/vector-icons';
|
|
|
|
import {
|
|
spacing,
|
|
fontSizes,
|
|
borderRadius,
|
|
shadows,
|
|
useAppColors,
|
|
useResolvedColorScheme,
|
|
type AppColors,
|
|
} from '../../theme';
|
|
import * as hrefs from '../../navigation/hrefs';
|
|
import { Text, ResponsiveContainer } from '../../components/common';
|
|
import { useResponsive, useResponsiveSpacing, useBreakpointGTE } from '../../hooks/useResponsive';
|
|
|
|
type AppItem = {
|
|
id: string;
|
|
title: string;
|
|
subtitle: string;
|
|
icon: React.ComponentProps<typeof MaterialCommunityIcons>['name'];
|
|
href: string;
|
|
};
|
|
|
|
const APP_ENTRIES: AppItem[] = [
|
|
{
|
|
id: 'schedule',
|
|
title: '课表',
|
|
subtitle: '周课表、教务同步与课程管理',
|
|
icon: 'calendar-week',
|
|
href: hrefs.hrefSchedule(),
|
|
},
|
|
];
|
|
|
|
export const AppsScreen: React.FC = () => {
|
|
const colors = useAppColors();
|
|
const resolvedScheme = useResolvedColorScheme();
|
|
const statusBarStyle = resolvedScheme === 'dark' ? 'light-content' : 'dark-content';
|
|
const styles = useMemo(() => createAppsStyles(colors), [colors]);
|
|
/** 与个人主页 PostCard 外层 `postWrapper` 一致 */
|
|
const postCardShell = useMemo(
|
|
() => ({
|
|
marginBottom: spacing.md,
|
|
backgroundColor: colors.background.paper,
|
|
borderRadius: 16,
|
|
overflow: 'hidden' as const,
|
|
shadowColor: '#000',
|
|
shadowOffset: { width: 0, height: 2 },
|
|
shadowOpacity: 0.06,
|
|
shadowRadius: 8,
|
|
elevation: 2,
|
|
}),
|
|
[colors]
|
|
);
|
|
const router = useRouter();
|
|
const insets = useSafeAreaInsets();
|
|
const { isMobile } = useResponsive();
|
|
/** 与 MessageListScreen 顶栏宽屏 padding 一致 */
|
|
const isWideScreen = useBreakpointGTE('lg');
|
|
const responsivePadding = useResponsiveSpacing({ xs: 8, sm: 12, md: 16, lg: 24, xl: 32 });
|
|
|
|
const scrollBottomInset = isMobile ? 88 + insets.bottom + spacing.md : spacing['3xl'];
|
|
|
|
const onOpenApp = useCallback(
|
|
(href: string) => {
|
|
router.push(href);
|
|
},
|
|
[router]
|
|
);
|
|
|
|
const renderTiles = () => (
|
|
<>
|
|
<Text variant="caption" color={colors.text.secondary} style={styles.pageSubtitle}>
|
|
与社区账号打通的轻应用入口
|
|
</Text>
|
|
{APP_ENTRIES.map(item => (
|
|
<TouchableOpacity
|
|
key={item.id}
|
|
style={postCardShell}
|
|
onPress={() => onOpenApp(item.href)}
|
|
activeOpacity={0.88}
|
|
>
|
|
<View style={styles.appCardInner}>
|
|
<View style={styles.appIconCircle}>
|
|
<MaterialCommunityIcons name={item.icon} size={26} color={colors.primary.contrast} />
|
|
</View>
|
|
<View style={styles.appCardText}>
|
|
<Text variant="body" color={colors.text.primary} style={styles.appTitle}>
|
|
{item.title}
|
|
</Text>
|
|
<Text variant="caption" color={colors.text.secondary} style={styles.appSubtitle}>
|
|
{item.subtitle}
|
|
</Text>
|
|
</View>
|
|
<MaterialCommunityIcons name="chevron-right" size={22} color={colors.primary.main} />
|
|
</View>
|
|
</TouchableOpacity>
|
|
))}
|
|
|
|
<View style={styles.footer}>
|
|
<Text variant="caption" color={colors.text.hint}>
|
|
更多应用陆续上线
|
|
</Text>
|
|
</View>
|
|
</>
|
|
);
|
|
|
|
return (
|
|
<SafeAreaView style={styles.container} edges={['top', 'bottom']}>
|
|
<StatusBar barStyle={statusBarStyle} backgroundColor={colors.background.default} />
|
|
|
|
{/* 与 MessageListScreen 顶栏同一结构 / 样式 */}
|
|
<View style={[styles.msgHeader, isWideScreen && styles.msgHeaderWide]}>
|
|
<View style={styles.msgHeaderLeft} />
|
|
<View style={styles.msgHeaderCenter}>
|
|
<Text style={[styles.msgHeaderTitle, ...(isWideScreen ? [styles.msgHeaderTitleWide] : [])]}>
|
|
应用
|
|
</Text>
|
|
</View>
|
|
<View style={styles.msgHeaderRight}>
|
|
<View style={styles.msgHeaderRightSpacer} />
|
|
</View>
|
|
</View>
|
|
|
|
{isWideScreen ? (
|
|
<ResponsiveContainer maxWidth={720}>
|
|
<ScrollView
|
|
style={styles.scroll}
|
|
contentContainerStyle={[styles.scrollContent, { paddingBottom: scrollBottomInset }]}
|
|
showsVerticalScrollIndicator={false}
|
|
>
|
|
{renderTiles()}
|
|
</ScrollView>
|
|
</ResponsiveContainer>
|
|
) : (
|
|
<ScrollView
|
|
style={styles.scroll}
|
|
contentContainerStyle={[
|
|
styles.scrollContent,
|
|
{ paddingBottom: scrollBottomInset, paddingHorizontal: responsivePadding },
|
|
]}
|
|
showsVerticalScrollIndicator={false}
|
|
>
|
|
{renderTiles()}
|
|
</ScrollView>
|
|
)}
|
|
</SafeAreaView>
|
|
);
|
|
};
|
|
|
|
export default AppsScreen;
|
|
|
|
function createAppsStyles(colors: AppColors) {
|
|
const headerBg = colors.background.default;
|
|
return StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: colors.background.default,
|
|
},
|
|
msgHeader: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-between',
|
|
paddingHorizontal: spacing.md,
|
|
paddingVertical: spacing.md,
|
|
backgroundColor: headerBg,
|
|
...shadows.sm,
|
|
},
|
|
msgHeaderWide: {
|
|
paddingHorizontal: spacing.lg,
|
|
paddingVertical: spacing.lg,
|
|
},
|
|
msgHeaderLeft: {
|
|
width: 44,
|
|
},
|
|
msgHeaderCenter: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
gap: spacing.xs,
|
|
},
|
|
msgHeaderTitle: {
|
|
fontSize: 19,
|
|
fontWeight: '700',
|
|
color: colors.text.primary,
|
|
},
|
|
msgHeaderTitleWide: {
|
|
fontSize: 22,
|
|
},
|
|
msgHeaderRight: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
},
|
|
/** 与消息页「+」按钮同占位宽度,标题视觉居中 */
|
|
msgHeaderRightSpacer: {
|
|
width: 36,
|
|
height: 44,
|
|
},
|
|
pageSubtitle: {
|
|
marginBottom: spacing.md,
|
|
lineHeight: fontSizes.sm * 1.45,
|
|
},
|
|
/** 与消息列表区同色,避免顶栏阴影落在灰底上像一条线 */
|
|
scroll: {
|
|
flex: 1,
|
|
backgroundColor: headerBg,
|
|
},
|
|
scrollContent: {
|
|
paddingTop: spacing.md,
|
|
flexGrow: 1,
|
|
backgroundColor: headerBg,
|
|
},
|
|
appCardInner: {
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
paddingVertical: spacing.lg,
|
|
paddingHorizontal: spacing.lg,
|
|
},
|
|
/** 与首页发帖 FAB 同主色实心圆 */
|
|
appIconCircle: {
|
|
width: 52,
|
|
height: 52,
|
|
borderRadius: borderRadius.full,
|
|
backgroundColor: colors.primary.main,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
appCardText: {
|
|
flex: 1,
|
|
marginLeft: spacing.md,
|
|
marginRight: spacing.sm,
|
|
},
|
|
appTitle: {
|
|
fontWeight: '700',
|
|
fontSize: fontSizes.md + 1,
|
|
},
|
|
appSubtitle: {
|
|
marginTop: 4,
|
|
},
|
|
footer: {
|
|
alignItems: 'center',
|
|
paddingTop: spacing.xl,
|
|
paddingBottom: spacing.md,
|
|
},
|
|
});
|
|
}
|