OS_Wrapper System: - Simplify API: Remove PageWrapper, merge keyboard props into OS_Wrapper - Add auto-scroll when keyboard appears (Android only) - Add tap-to-dismiss keyboard for both Static and List modes - Fix contentPaddingBottom default to 250px (prevent keyboard overlap) - Change default contentPadding to 0 (per-screen control) - Remove Platform.OS checks from IOSWrapper and AndroidWrapper Constants: - Add PADDING_INLINE constant (16px) for consistent inline padding - Add OS_PADDING_TOP constants for tab layouts Job Screens Migration (9 files): - Apply PADDING_INLINE to all Job screens: - ScreenBeranda, ScreenBeranda2 - ScreenArchive, ScreenArchive2 - MainViewStatus, MainViewStatus2 - ScreenJobCreate, ScreenJobEdit - Job detail screen Keyboard Handling: - Simplified useKeyboardForm hook - Auto-scroll by keyboard height when keyboard appears - Track scroll position for accurate scroll targets - TouchableWithoutFeedback wraps all content for tap-to-dismiss Documentation: - Update TASK-005 with Phase 1 completion status - Update Quick Reference with unified API examples Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com> Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
246 lines
7.2 KiB
TypeScript
246 lines
7.2 KiB
TypeScript
// @/components/AndroidWrapper.tsx
|
|
// Android Wrapper - Based on NewWrapper_V2 (with keyboard handling for Android)
|
|
import { MainColor } from "@/constants/color-palet";
|
|
import { OS_HEIGHT } from "@/constants/constans-value";
|
|
import { GStyles } from "@/styles/global-styles";
|
|
import {
|
|
ImageBackground,
|
|
Keyboard,
|
|
KeyboardAvoidingView,
|
|
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 { useKeyboardForm } from "@/hooks/useKeyboardForm";
|
|
|
|
// --- Base Props ---
|
|
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 (Android only)
|
|
* @default false
|
|
*/
|
|
enableKeyboardHandling?: boolean;
|
|
/**
|
|
* Scroll offset when keyboard appears (Android only)
|
|
* @default 100
|
|
*/
|
|
keyboardScrollOffset?: number;
|
|
/**
|
|
* Extra padding bottom for content to avoid navigation bar (Android only)
|
|
* @default 80
|
|
*/
|
|
contentPaddingBottom?: number;
|
|
/**
|
|
* Padding untuk content container (Android only)
|
|
* Set to 0 untuk tidak ada padding, atau custom value sesuai kebutuhan
|
|
* @default 16
|
|
*/
|
|
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 AndroidWrapperProps = StaticModeProps | ListModeProps;
|
|
|
|
export function AndroidWrapper(props: AndroidWrapperProps) {
|
|
const {
|
|
withBackground = false,
|
|
headerComponent,
|
|
footerComponent,
|
|
floatingButton,
|
|
hideFooter = false,
|
|
edgesFooter = [],
|
|
style,
|
|
refreshControl,
|
|
enableKeyboardHandling = false,
|
|
keyboardScrollOffset,
|
|
contentPaddingBottom,
|
|
contentPadding,
|
|
} = props;
|
|
|
|
// Default values (should be set by OS_Wrapper, but fallback for direct usage)
|
|
const finalKeyboardScrollOffset = keyboardScrollOffset ?? 100;
|
|
const finalContentPaddingBottom = contentPaddingBottom ?? 250;
|
|
const finalContentPadding = contentPadding ?? 0;
|
|
|
|
const assetBackground = require("../../assets/images/main-background.png");
|
|
|
|
// Use keyboard hook if enabled
|
|
const keyboardForm = enableKeyboardHandling
|
|
? useKeyboardForm(finalKeyboardScrollOffset)
|
|
: 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 (
|
|
<TouchableWithoutFeedback onPress={Keyboard.dismiss} style={{ flex: 1 }}>
|
|
<KeyboardAvoidingView
|
|
behavior={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) +
|
|
finalContentPaddingBottom,
|
|
padding: finalContentPadding,
|
|
}}
|
|
keyboardShouldPersistTaps="handled"
|
|
/>
|
|
|
|
{/* Footer - Fixed di bawah dengan width 100% */}
|
|
{footerComponent && !hideFooter && (
|
|
<SafeAreaView
|
|
edges={["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>
|
|
</TouchableWithoutFeedback>
|
|
);
|
|
}
|
|
|
|
// 🔹 Mode Statis (ScrollView)
|
|
const staticProps = props as StaticModeProps;
|
|
|
|
return (
|
|
<KeyboardAvoidingView
|
|
behavior={undefined}
|
|
style={{ flex: 1, backgroundColor: MainColor.darkblue }}
|
|
>
|
|
{headerComponent && (
|
|
<View style={GStyles.stickyHeader}>{headerComponent}</View>
|
|
)}
|
|
|
|
<ScrollView
|
|
ref={keyboardForm?.scrollViewRef}
|
|
onScroll={keyboardForm?.handleScroll}
|
|
scrollEventThrottle={16}
|
|
style={{ flex: 1 }}
|
|
contentContainerStyle={{
|
|
flexGrow: 1,
|
|
paddingBottom:
|
|
(footerComponent && !hideFooter ? OS_HEIGHT : 0) +
|
|
finalContentPaddingBottom,
|
|
padding: finalContentPadding,
|
|
}}
|
|
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: "absolute",
|
|
bottom: 0,
|
|
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>
|
|
);
|
|
}
|
|
|
|
export default AndroidWrapper;
|