feat(base/modal): renamed prop and fixed scroll inside webview
This commit is contained in:
parent
727b6dab9e
commit
ccba7e8f75
|
@ -24,6 +24,11 @@ type Props = {
|
|||
*/
|
||||
contentContainerStyle?: StyleType,
|
||||
|
||||
/**
|
||||
* Disable forced keyboard dismiss?
|
||||
*/
|
||||
disableForcedKeyboardDismiss?: boolean,
|
||||
|
||||
/**
|
||||
* Is a text input rendered at the bottom of the screen?
|
||||
*/
|
||||
|
@ -34,11 +39,6 @@ type Props = {
|
|||
*/
|
||||
hasTabNavigator: boolean,
|
||||
|
||||
/**
|
||||
* Is the keyboard already dismissible?
|
||||
*/
|
||||
keyboardAlreadyDismissible?: boolean,
|
||||
|
||||
/**
|
||||
* Additional style to be appended to the KeyboardAvoidingView.
|
||||
*/
|
||||
|
@ -51,7 +51,7 @@ const JitsiKeyboardAvoidingView = (
|
|||
contentContainerStyle,
|
||||
hasTabNavigator,
|
||||
hasBottomTextInput,
|
||||
keyboardAlreadyDismissible,
|
||||
disableForcedKeyboardDismiss,
|
||||
style
|
||||
}: Props) => {
|
||||
const headerHeight = useHeaderHeight();
|
||||
|
@ -74,7 +74,7 @@ const JitsiKeyboardAvoidingView = (
|
|||
? headerHeight + StatusBar.currentHeight : headerHeight;
|
||||
|
||||
// Tells the view what to do with taps
|
||||
const shouldSetResponse = useCallback(() => !keyboardAlreadyDismissible);
|
||||
const shouldSetResponse = useCallback(() => !disableForcedKeyboardDismiss);
|
||||
const onRelease = useCallback(() => Keyboard.dismiss());
|
||||
|
||||
return (
|
||||
|
|
|
@ -22,6 +22,11 @@ type Props = {
|
|||
*/
|
||||
children: React$Node,
|
||||
|
||||
/**
|
||||
* Disabled forced keyboard dismiss?
|
||||
*/
|
||||
disableForcedKeyboardDismiss?: boolean,
|
||||
|
||||
/**
|
||||
* Optional function that renders a footer component, if needed.
|
||||
*/
|
||||
|
@ -37,11 +42,6 @@ type Props = {
|
|||
*/
|
||||
hasTabNavigator?: boolean,
|
||||
|
||||
/**
|
||||
* Is the keyboard already dismissible?
|
||||
*/
|
||||
keyboardAlreadyDismissible?: boolean,
|
||||
|
||||
/**
|
||||
* Insets for the SafeAreaView.
|
||||
*/
|
||||
|
@ -59,7 +59,7 @@ const JitsiScreen = ({
|
|||
footerComponent,
|
||||
hasTabNavigator = false,
|
||||
hasBottomTextInput = false,
|
||||
keyboardAlreadyDismissible = false,
|
||||
disableForcedKeyboardDismiss = false,
|
||||
safeAreaInsets = [ 'left', 'right' ],
|
||||
style
|
||||
}: Props) => (
|
||||
|
@ -67,9 +67,9 @@ const JitsiScreen = ({
|
|||
style = { styles.jitsiScreenContainer }>
|
||||
<JitsiKeyboardAvoidingView
|
||||
contentContainerStyle = { contentContainerStyle }
|
||||
disableForcedKeyboardDismiss = { disableForcedKeyboardDismiss }
|
||||
hasBottomTextInput = { hasBottomTextInput }
|
||||
hasTabNavigator = { hasTabNavigator }
|
||||
keyboardAlreadyDismissible = { keyboardAlreadyDismissible }
|
||||
style = { style }>
|
||||
<SafeAreaView
|
||||
edges = { safeAreaInsets }
|
||||
|
|
|
@ -20,6 +20,7 @@ type Props = {
|
|||
|
||||
const JitsiScreenWebView = ({ source, style }: Props) => (
|
||||
<JitsiScreen
|
||||
disableForcedKeyboardDismiss = { true }
|
||||
style = { style }>
|
||||
<WebView source = {{ uri: source }} />
|
||||
</JitsiScreen>
|
||||
|
|
|
@ -53,9 +53,9 @@ class Chat extends AbstractChat<Props> {
|
|||
|
||||
return (
|
||||
<JitsiScreen
|
||||
disableForcedKeyboardDismiss = { true }
|
||||
hasBottomTextInput = { true }
|
||||
hasTabNavigator = { true }
|
||||
keyboardAlreadyDismissible = { true }
|
||||
style = { styles.chatContainer }>
|
||||
<MessageContainer messages = { _messages } />
|
||||
<MessageRecipient privateMessageRecipient = { privateMessageRecipient } />
|
||||
|
|
Loading…
Reference in New Issue