Commit 74d3ef42 by nguyenquangtung004

TODO: Đã fix thành công SafeAreaView không bị khoảng trắng

parent cd549183
......@@ -6,7 +6,6 @@ const styles = StyleSheet.create({
containerBoxHeader: {
flexDirection: "row",
marginHorizontal: 15,
marginTop: 15,
maxHeight: 40,
},
boxLogo:{
......
......@@ -10,6 +10,8 @@ import {
Keyboard,
SafeAreaView,
Image,
StatusBar, // FEATURE: Thêm StatusBar để control status bar
Platform, // FEATURE: Check platform để xử lý khác biệt iOS/Android
} from "react-native";
import HeaderCus from "../home/header";
import R from "../../assets/R";
......@@ -17,6 +19,7 @@ import ItemGrid from "./item";
import styles from "./style";
import { useNavigation } from "@react-navigation/native";
import * as SCREENNAME from "../../routers/ScreenNames";
const HomeView = (props) => {
const {
menuActivity,
......@@ -29,13 +32,18 @@ const HomeView = (props) => {
onSearchChange,
} = props;
const navigate = useNavigation();
// FUNCTIONALITY: Render menu item với tối ưu performance
const renderMenuItem = ({ item }) => {
return <ItemGrid item={item} onPress={() => onMenuItemPress(item)} />;
};
const cardItemInfo =()=>{
return <View style={styles.profileCard}>
// UI/UX: Card thông tin user với layout tối ưu
const cardItemInfo = () => {
return (
<View style={styles.profileCard}>
<View style={styles.profile_left}>
{/* Avatar */}
{/* FEATURE: Avatar với fallback placeholder */}
<View style={styles.avatar}>
{userProfile?.avatar ? (
<Image
......@@ -46,46 +54,53 @@ const HomeView = (props) => {
) : (
<View style={styles.avatar_placeholder}>
<Text style={styles.avatar_text}>
{userProfile?.name?.charAt(0)}
{userProfile?.name?.charAt(0) || "U"}
</Text>
</View>
)}
</View>
{/* Information */}
{/* FEATURE: Thông tin user với null safety */}
<View style={styles.information}>
<Text
style={styles.text_card_info}
numberOfLines={1}
ellipsizeMode="tail"
>
{userProfile?.name?? "Không có dữ liệu"}
{userProfile?.name ?? "Không có dữ liệu"}
</Text>
<Text
style={styles.text_card_info}
numberOfLines={1}
ellipsizeMode="tail"
>
{userProfile?.phone??"Không có dữ liệu"}
{userProfile?.phone ?? "Không có dữ liệu"}
</Text>
</View>
</View>
<TouchableOpacity style={styles.profile_btn} onPress={() => navigate.navigate(SCREENNAME.PROFILE)}>
{/* FEATURE: Button navigate tới profile */}
<TouchableOpacity
style={styles.profile_btn}
onPress={() => navigate.navigate(SCREENNAME.PROFILE)}
activeOpacity={0.7}
>
<Text style={styles.btn_text}>H sơ cá nhân</Text>
<View style={styles.iconNext}>
<Image
source={R.images.icNext}
maxWidth={5}
maxHeight={10}
style={{ width: 5, height: 10 }} // OPTIMIZE: Dùng style thay maxWidth/maxHeight
/>
</View>
</TouchableOpacity>
</View>
}
);
};
const renderMenuActivity =()=>{
return <View style={styles.menu_container}>
// FUNCTIONALITY: Render menu activity với FlatList tối ưu
const renderMenuActivity = () => {
return (
<View style={styles.menu_container}>
<Text style={styles.menu_title}>Ging dy</Text>
<FlatList
data={menuActivity}
......@@ -95,11 +110,17 @@ const HomeView = (props) => {
scrollEnabled={false}
columnWrapperStyle={styles.row}
ListEmptyComponent={renderItemEmpty}
removeClippedSubviews={true} // PERFORMANCE: Tối ưu memory
maxToRenderPerBatch={9} // PERFORMANCE: Render tối đa 9 items/batch
/>
</View>
}
const renderMenuStatistics =()=>{
return <View style={styles.menu_container}>
);
};
// FUNCTIONALITY: Render menu statistics
const renderMenuStatistics = () => {
return (
<View style={styles.menu_container}>
<Text style={styles.menu_title}>Thng kê</Text>
<FlatList
data={menuStatistics}
......@@ -109,11 +130,17 @@ const HomeView = (props) => {
scrollEnabled={false}
columnWrapperStyle={styles.row}
ListEmptyComponent={renderItemEmpty}
removeClippedSubviews={true}
maxToRenderPerBatch={9}
/>
</View>
}
const renderMenuNotification =()=>{
return <View style={styles.menu_container}>
);
};
// FUNCTIONALITY: Render menu notification
const renderMenuNotification = () => {
return (
<View style={styles.menu_container}>
<Text style={styles.menu_title}>Văn bn và thông báo</Text>
<FlatList
data={menuNotification}
......@@ -123,29 +150,47 @@ const HomeView = (props) => {
scrollEnabled={false}
columnWrapperStyle={styles.row}
ListEmptyComponent={renderItemEmpty}
removeClippedSubviews={true}
maxToRenderPerBatch={9}
/>
</View>
}
);
};
const renderItemEmpty =()=>{
return <View style={styles.cardItemEmpty}>
// UI/UX: Empty state component
const renderItemEmpty = () => {
return (
<View style={styles.cardItemEmpty}>
<Image
source={R.images.icNoData}
maxWidth={50}
maxHeight={50}
style={{ width: 50, height: 50 }} // OPTIMIZE: Dùng style object
/>
<Text style={[styles.menu_text,{color:R.colors.red}]}>Không có d liu</Text>
<Text style={[styles.menu_text, { color: R.colors.red }]}>
Không có d liu
</Text>
</View>
}
);
};
return (
<>
{/* FIXME: StatusBar để control màu status bar và remove white space */}
<StatusBar
barStyle="light-content" // Text trắng trên status bar
backgroundColor="transparent" // Background trong suốt
translucent={true} // Cho phép content hiển thị dưới status bar
/>
<TouchableWithoutFeedback onPress={Keyboard.dismiss} accessible={false}>
<SafeAreaView style={styles.safeArea}>
{/* FIXME: Dùng View thay SafeAreaView để loại bỏ white space */}
<View style={[styles.safeArea, { paddingTop: Platform.OS === 'ios' ? 0 : StatusBar.currentHeight }]}>
<View style={styles.container_body}>
<ImageBackground
source={R.images.igBackground}
style={styles.background_header}
style={[styles.background_header, {
// FIXME: Extend background lên trên để cover status bar
paddingTop: Platform.OS === 'ios' ? 50 : (StatusBar.currentHeight || 0) + 10,
}]}
>
<HeaderCus
value={searchText}
......@@ -153,18 +198,22 @@ const HomeView = (props) => {
/>
{cardItemInfo()}
</ImageBackground>
<ScrollView
showsVerticalScrollIndicator={false}
style={styles.scroll}>
style={styles.scroll}
bounces={false} // OPTIMIZE: Tắt bounce effect
overScrollMode="never" // OPTIMIZE: Android không over scroll
>
{renderMenuActivity()}
{renderMenuStatistics()}
{renderMenuNotification()}
</ScrollView>
</View>
</SafeAreaView>
</View>
</TouchableWithoutFeedback>
</>
);
};
export default HomeView;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment