- Set default contentPadding to 16px for consistent spacing - Added contentPadding prop to BaseProps interface - Updated documentation in TASK-004 Benefits: - All screens automatically have 16px padding - Cleaner code (no need to specify padding everywhere) - Still customizable (set to 0 or custom value if needed) - Box content not too tight to screen edges Phase 1 completed with consistent padding! Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
232 lines
6.8 KiB
TypeScript
232 lines
6.8 KiB
TypeScript
// NewWrapper_V2.tsx - Wrapper baru dengan keyboard handling
|
|
import { MainColor } from "@/constants/color-palet";
|
|
import { OS_HEIGHT } from "@/constants/constans-value";
|
|
import { GStyles } from "@/styles/global-styles";
|
|
import {
|
|
ImageBackground,
|
|
Keyboard,
|
|
KeyboardAvoidingView,
|
|
Platform,
|
|
ScrollView,
|
|
FlatList,
|
|
TouchableWithoutFeedback,
|
|
View,
|
|
StyleProp,
|
|
ViewStyle,
|
|
} from "react-native";
|
|
import {
|
|
NativeSafeAreaViewProps,
|
|
SafeAreaView,
|
|
} from "react-native-safe-area-context";
|
|
import type { ScrollViewProps, FlatListProps } from "react-native";
|
|
import Spacing from "./Spacing";
|
|
import { useKeyboardForm } from "@/hooks/useKeyboardForm";
|
|
|
|
interface BaseProps {
|
|
withBackground?: boolean;
|
|
headerComponent?: React.ReactNode;
|
|
footerComponent?: React.ReactNode;
|
|
floatingButton?: React.ReactNode;
|
|
hideFooter?: boolean;
|
|
edgesFooter?: NativeSafeAreaViewProps["edges"];
|
|
style?: StyleProp<ViewStyle>;
|
|
refreshControl?: ScrollViewProps["refreshControl"];
|
|
/**
|
|
* Enable keyboard handling with auto-scroll
|
|
* @default false
|
|
*/
|
|
enableKeyboardHandling?: boolean;
|
|
/**
|
|
* Scroll offset when keyboard appears (default: 100)
|
|
*/
|
|
keyboardScrollOffset?: number;
|
|
/**
|
|
* Extra padding bottom for content to avoid navigation bar (default: 80)
|
|
*/
|
|
contentPaddingBottom?: number;
|
|
/**
|
|
* Padding untuk content container (default: 16)
|
|
* Set to 0 untuk tidak ada padding, atau custom value sesuai kebutuhan
|
|
*/
|
|
contentPadding?: number;
|
|
}
|
|
|
|
interface StaticModeProps extends BaseProps {
|
|
children: React.ReactNode;
|
|
listData?: never;
|
|
renderItem?: never;
|
|
}
|
|
|
|
interface ListModeProps extends BaseProps {
|
|
children?: never;
|
|
listData?: any[];
|
|
renderItem?: FlatListProps<any>["renderItem"];
|
|
onEndReached?: () => void;
|
|
ListHeaderComponent?: React.ReactElement | null;
|
|
ListFooterComponent?: React.ReactElement | null;
|
|
ListEmptyComponent?: React.ReactElement | null;
|
|
keyExtractor?: FlatListProps<any>["keyExtractor"];
|
|
}
|
|
|
|
type NewWrapper_V2_Props = StaticModeProps | ListModeProps;
|
|
|
|
export function NewWrapper_V2(props: NewWrapper_V2_Props) {
|
|
const {
|
|
withBackground = false,
|
|
headerComponent,
|
|
footerComponent,
|
|
floatingButton,
|
|
hideFooter = false,
|
|
edgesFooter = [],
|
|
style,
|
|
refreshControl,
|
|
enableKeyboardHandling = false,
|
|
keyboardScrollOffset = 100,
|
|
contentPaddingBottom = 80, // Default 80 untuk navigasi device
|
|
contentPadding = 16, // Default 16 untuk padding konsisten
|
|
} = props;
|
|
|
|
const assetBackground = require("../../assets/images/main-background.png");
|
|
|
|
// Use keyboard hook if enabled
|
|
const keyboardForm = enableKeyboardHandling
|
|
? useKeyboardForm(keyboardScrollOffset)
|
|
: null;
|
|
|
|
const renderContainer = (content: React.ReactNode) => {
|
|
if (withBackground) {
|
|
return (
|
|
<ImageBackground
|
|
source={assetBackground}
|
|
resizeMode="cover"
|
|
style={GStyles.imageBackground}
|
|
>
|
|
<View style={[GStyles.containerWithBackground, style]}>
|
|
{content}
|
|
</View>
|
|
</ImageBackground>
|
|
);
|
|
}
|
|
return <View style={[GStyles.container, style]}>{content}</View>;
|
|
};
|
|
|
|
// 🔹 Mode Dinamis (FlatList)
|
|
if ("listData" in props) {
|
|
const listProps = props as ListModeProps;
|
|
|
|
return (
|
|
<KeyboardAvoidingView
|
|
behavior={Platform.OS === "ios" ? "padding" : undefined}
|
|
style={{ flex: 1, backgroundColor: MainColor.darkblue }}
|
|
>
|
|
{headerComponent && (
|
|
<View style={GStyles.stickyHeader}>{headerComponent}</View>
|
|
)}
|
|
<FlatList
|
|
data={listProps.listData}
|
|
renderItem={listProps.renderItem}
|
|
keyExtractor={
|
|
listProps.keyExtractor ||
|
|
((item, index) => `${String(item.id)}-${index}`)
|
|
}
|
|
refreshControl={refreshControl}
|
|
onEndReached={listProps.onEndReached}
|
|
onEndReachedThreshold={0.5}
|
|
ListHeaderComponent={listProps.ListHeaderComponent}
|
|
ListFooterComponent={listProps.ListFooterComponent}
|
|
ListEmptyComponent={listProps.ListEmptyComponent}
|
|
contentContainerStyle={{
|
|
flexGrow: 1,
|
|
paddingBottom: (footerComponent && !hideFooter ? OS_HEIGHT : 0) + contentPaddingBottom,
|
|
padding: contentPadding,
|
|
}}
|
|
keyboardShouldPersistTaps="handled"
|
|
/>
|
|
|
|
{/* Footer - Fixed di bawah dengan width 100% */}
|
|
{footerComponent && !hideFooter && (
|
|
<SafeAreaView
|
|
edges={Platform.OS === "ios" ? edgesFooter : ["bottom"]}
|
|
style={{ backgroundColor: MainColor.darkblue, width: "100%" }}
|
|
>
|
|
<View style={{ width: "100%" }}>
|
|
{footerComponent}
|
|
</View>
|
|
</SafeAreaView>
|
|
)}
|
|
|
|
{!footerComponent && !hideFooter && (
|
|
<SafeAreaView
|
|
edges={["bottom"]}
|
|
style={{ backgroundColor: MainColor.darkblue }}
|
|
/>
|
|
)}
|
|
|
|
{floatingButton && (
|
|
<View style={GStyles.floatingContainer}>{floatingButton}</View>
|
|
)}
|
|
</KeyboardAvoidingView>
|
|
);
|
|
}
|
|
|
|
// 🔹 Mode Statis (ScrollView)
|
|
const staticProps = props as StaticModeProps;
|
|
|
|
return (
|
|
<KeyboardAvoidingView
|
|
behavior={Platform.OS === "ios" ? "padding" : undefined}
|
|
style={{ flex: 1, backgroundColor: MainColor.darkblue }}
|
|
>
|
|
{headerComponent && (
|
|
<View style={GStyles.stickyHeader}>{headerComponent}</View>
|
|
)}
|
|
|
|
<ScrollView
|
|
ref={keyboardForm?.scrollViewRef}
|
|
style={{ flex: 1 }}
|
|
contentContainerStyle={{
|
|
flexGrow: 1,
|
|
paddingBottom: (footerComponent && !hideFooter ? OS_HEIGHT : 0) + contentPaddingBottom,
|
|
padding: contentPadding,
|
|
}}
|
|
keyboardShouldPersistTaps="handled"
|
|
showsVerticalScrollIndicator={false}
|
|
>
|
|
<TouchableWithoutFeedback onPress={Keyboard.dismiss}>
|
|
{renderContainer(staticProps.children)}
|
|
</TouchableWithoutFeedback>
|
|
</ScrollView>
|
|
|
|
{/* Footer - Fixed di bawah dengan width 100% */}
|
|
{footerComponent && !hideFooter && (
|
|
<SafeAreaView
|
|
edges={["bottom"]}
|
|
style={{
|
|
backgroundColor: MainColor.darkblue,
|
|
width: "100%",
|
|
position: Platform.OS === "android" ? "absolute" : undefined,
|
|
bottom: Platform.OS === "android" ? 0 : undefined,
|
|
left: 0,
|
|
right: 0,
|
|
}}
|
|
>
|
|
<View style={{ width: "100%" }}>
|
|
{footerComponent}
|
|
</View>
|
|
</SafeAreaView>
|
|
)}
|
|
|
|
{!footerComponent && !hideFooter && (
|
|
<SafeAreaView
|
|
edges={["bottom"]}
|
|
style={{ backgroundColor: MainColor.darkblue }}
|
|
/>
|
|
)}
|
|
|
|
{floatingButton && (
|
|
<View style={GStyles.floatingContainer}>{floatingButton}</View>
|
|
)}
|
|
</KeyboardAvoidingView>
|
|
);
|
|
}
|