55 lines
1.5 KiB
TypeScript
55 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import { ScrollView, StyleSheet, View } from 'react-native';
|
|
|
|
import { themes } from '../constants/colors';
|
|
import sharedStyles from '../views/Styles';
|
|
import scrollPersistTaps from '../utils/scrollPersistTaps';
|
|
import KeyboardView from '../presentation/KeyboardView';
|
|
import StatusBar from './StatusBar';
|
|
import AppVersion from './AppVersion';
|
|
import { isTablet } from '../utils/deviceInfo';
|
|
import SafeAreaView from './SafeAreaView';
|
|
|
|
interface IFormContainer {
|
|
theme: string;
|
|
testID: string;
|
|
children: JSX.Element;
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
scrollView: {
|
|
minHeight: '100%',
|
|
},
|
|
});
|
|
|
|
export const FormContainerInner = ({ children }: {children: JSX.Element}) => (
|
|
<View style={[sharedStyles.container, isTablet && sharedStyles.tabletScreenContent]}>
|
|
{children}
|
|
</View>
|
|
);
|
|
|
|
const FormContainer = ({ children, theme, testID, ...props }: IFormContainer) => (
|
|
// @ts-ignore
|
|
<KeyboardView
|
|
style={{ backgroundColor: themes[theme].backgroundColor }}
|
|
contentContainerStyle={sharedStyles.container}
|
|
keyboardVerticalOffset={128}
|
|
>
|
|
<StatusBar />
|
|
{/* @ts-ignore*/}
|
|
<ScrollView
|
|
style={sharedStyles.container}
|
|
contentContainerStyle={[sharedStyles.containerScrollView, styles.scrollView]}
|
|
{...scrollPersistTaps}
|
|
{...props}
|
|
>
|
|
<SafeAreaView testID={testID} style={{ backgroundColor: themes[theme].backgroundColor }}>
|
|
{children}
|
|
<AppVersion theme={theme} />
|
|
</SafeAreaView>
|
|
</ScrollView>
|
|
</KeyboardView>
|
|
);
|
|
|
|
export default FormContainer;
|