From f8bd850465916d9d7755edb95f678c2f64e261ea Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 14 Apr 2025 19:00:39 +0300 Subject: Fix labeler header scroll and loading/error states (#8088) * add forwardRef to Layout.Content * lift scrollview up out of inner component * fix scrolling on android (#8188) --- src/components/Layout/index.tsx | 108 +++++++++++++++++++++------------------- 1 file changed, 57 insertions(+), 51 deletions(-) (limited to 'src/components/Layout/index.tsx') diff --git a/src/components/Layout/index.tsx b/src/components/Layout/index.tsx index a61192b86..5891ca863 100644 --- a/src/components/Layout/index.tsx +++ b/src/components/Layout/index.tsx @@ -1,12 +1,12 @@ -import React, {useContext, useMemo} from 'react' -import {StyleSheet, View, ViewProps, ViewStyle} from 'react-native' -import {StyleProp} from 'react-native' +import {forwardRef, memo, useContext, useMemo} from 'react' +import {StyleSheet, View, type ViewProps, type ViewStyle} from 'react-native' +import {type StyleProp} from 'react-native' import { KeyboardAwareScrollView, - KeyboardAwareScrollViewProps, + type KeyboardAwareScrollViewProps, } from 'react-native-keyboard-controller' import Animated, { - AnimatedScrollViewProps, + type AnimatedScrollViewProps, useAnimatedProps, } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' @@ -35,7 +35,7 @@ export type ScreenProps = React.ComponentProps & { /** * Outermost component of every screen */ -export const Screen = React.memo(function Screen({ +export const Screen = memo(function Screen({ style, noInsetTop, ...props @@ -61,49 +61,55 @@ export type ContentProps = AnimatedScrollViewProps & { /** * Default scroll view for simple pages */ -export const Content = React.memo(function Content({ - children, - style, - contentContainerStyle, - ignoreTabletLayoutOffset, - ...props -}: ContentProps) { - const t = useTheme() - const {footerHeight} = useShellLayout() - const animatedProps = useAnimatedProps(() => { - return { - scrollIndicatorInsets: { - bottom: footerHeight.get(), - top: 0, - right: 1, - }, - } satisfies AnimatedScrollViewProps - }) +export const Content = memo( + forwardRef(function Content( + { + children, + style, + contentContainerStyle, + ignoreTabletLayoutOffset, + ...props + }, + ref, + ) { + const t = useTheme() + const {footerHeight} = useShellLayout() + const animatedProps = useAnimatedProps(() => { + return { + scrollIndicatorInsets: { + bottom: footerHeight.get(), + top: 0, + right: 1, + }, + } satisfies AnimatedScrollViewProps + }) - return ( - - {isWeb ? ( -
- {/* @ts-expect-error web only -esb */} - {children} -
- ) : ( - children - )} -
- ) -}) + return ( + + {isWeb ? ( +
+ {/* @ts-expect-error web only -esb */} + {children} +
+ ) : ( + children + )} +
+ ) + }), +) const scrollViewStyles = StyleSheet.create({ common: { @@ -124,7 +130,7 @@ export type KeyboardAwareContentProps = KeyboardAwareScrollViewProps & { * * BE SURE TO TEST THIS WHEN USING, it's untested as of writing this comment. */ -export const KeyboardAwareContent = React.memo(function LayoutScrollView({ +export const KeyboardAwareContent = memo(function LayoutKeyboardAwareContent({ children, style, contentContainerStyle, @@ -147,7 +153,7 @@ export const KeyboardAwareContent = React.memo(function LayoutScrollView({ /** * Utility component to center content within the screen */ -export const Center = React.memo(function LayoutContent({ +export const Center = memo(function LayoutCenter({ children, style, ignoreTabletLayoutOffset, @@ -192,7 +198,7 @@ export const Center = React.memo(function LayoutContent({ /** * Only used within `Layout.Screen`, not for reuse */ -const WebCenterBorders = React.memo(function LayoutContent() { +const WebCenterBorders = memo(function LayoutWebCenterBorders() { const t = useTheme() const {gtMobile} = useBreakpoints() const {centerColumnOffset} = useLayoutBreakpoints() -- cgit 1.4.1