@applicaster/zapp-react-native-ui-components 15.0.0-rc.1 → 15.0.0-rc.100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. package/Components/AnimatedInOut/index.tsx +69 -26
  2. package/Components/BaseFocusable/index.ios.ts +12 -2
  3. package/Components/Cell/Cell.tsx +14 -3
  4. package/Components/Cell/CellWithFocusable.tsx +9 -0
  5. package/Components/Cell/FocusableWrapper.tsx +47 -0
  6. package/Components/Cell/TvOSCellComponent.tsx +106 -19
  7. package/Components/Focusable/Focusable.tsx +4 -2
  8. package/Components/Focusable/FocusableTvOS.tsx +18 -1
  9. package/Components/Focusable/__tests__/__snapshots__/FocusableTvOS.test.tsx.snap +1 -0
  10. package/Components/FocusableGroup/FocusableTvOS.tsx +32 -1
  11. package/Components/GeneralContentScreen/utils/__tests__/useCurationAPI.test.js +1 -1
  12. package/Components/GeneralContentScreen/utils/useCurationAPI.ts +31 -17
  13. package/Components/HandlePlayable/HandlePlayable.tsx +17 -65
  14. package/Components/HandlePlayable/const.ts +3 -0
  15. package/Components/HandlePlayable/utils.ts +74 -0
  16. package/Components/Layout/TV/LayoutBackground.tsx +5 -2
  17. package/Components/Layout/TV/ScreenContainer.tsx +2 -6
  18. package/Components/Layout/TV/index.tsx +3 -4
  19. package/Components/Layout/TV/index.web.tsx +3 -4
  20. package/Components/LinkHandler/LinkHandler.tsx +2 -2
  21. package/Components/MasterCell/DefaultComponents/BorderContainerView/__tests__/index.test.tsx +16 -1
  22. package/Components/MasterCell/DefaultComponents/BorderContainerView/index.tsx +30 -2
  23. package/Components/MasterCell/DefaultComponents/Image/Image.android.tsx +5 -1
  24. package/Components/MasterCell/DefaultComponents/Image/Image.ios.tsx +11 -3
  25. package/Components/MasterCell/DefaultComponents/Image/Image.web.tsx +9 -1
  26. package/Components/MasterCell/DefaultComponents/Image/hooks/useImage.ts +15 -14
  27. package/Components/MasterCell/DefaultComponents/LiveImage/index.tsx +10 -6
  28. package/Components/MasterCell/DefaultComponents/SecondaryImage/Image.tsx +40 -39
  29. package/Components/MasterCell/DefaultComponents/SecondaryImage/__tests__/Image.test.tsx +95 -0
  30. package/Components/MasterCell/DefaultComponents/SecondaryImage/__tests__/__snapshots__/Image.test.tsx.snap +86 -0
  31. package/Components/MasterCell/DefaultComponents/SecondaryImage/__tests__/index.test.ts +141 -0
  32. package/Components/MasterCell/DefaultComponents/SecondaryImage/hooks/__tests__/useGetImageDimensions.test.ts +7 -6
  33. package/Components/MasterCell/DefaultComponents/SecondaryImage/index.ts +1 -1
  34. package/Components/MasterCell/DefaultComponents/Text/index.tsx +8 -8
  35. package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/index.ts +6 -2
  36. package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/utils/__tests__/getPluginIdentifier.test.ts +233 -11
  37. package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/utils/index.ts +19 -15
  38. package/Components/MasterCell/hoc/__tests__/withAsyncRender.test.tsx +219 -0
  39. package/Components/MasterCell/hoc/withAsyncRender.tsx +9 -7
  40. package/Components/MasterCell/index.tsx +2 -0
  41. package/Components/MasterCell/utils/__tests__/resolveColor.test.js +82 -3
  42. package/Components/MasterCell/utils/index.ts +61 -31
  43. package/Components/MeasurmentsPortal/MeasurementsPortal.tsx +102 -87
  44. package/Components/MeasurmentsPortal/__tests__/MeasurementsPortal.test.tsx +355 -0
  45. package/Components/OfflineHandler/NotificationView/NotificationView.lg.tsx +17 -9
  46. package/Components/OfflineHandler/NotificationView/NotificationView.samsung.tsx +16 -8
  47. package/Components/OfflineHandler/NotificationView/NotificationView.tsx +2 -2
  48. package/Components/OfflineHandler/NotificationView/__tests__/index.test.tsx +17 -18
  49. package/Components/OfflineHandler/NotificationView/utils.ts +34 -0
  50. package/Components/OfflineHandler/__tests__/index.test.tsx +27 -18
  51. package/Components/PlayerContainer/PlayerContainer.tsx +51 -55
  52. package/Components/PlayerContainer/useRestrictMobilePlayback.tsx +101 -0
  53. package/Components/PlayerImageBackground/index.tsx +3 -22
  54. package/Components/River/ComponentsMap/ComponentsMap.tsx +65 -42
  55. package/Components/River/ComponentsMap/ContextProviders/ComponentsMapHeightContext.ts +8 -0
  56. package/Components/River/ComponentsMap/ContextProviders/ComponentsMapRefContext.ts +8 -0
  57. package/Components/River/ComponentsMap/hooks/__tests__/useLoadingState.test.ts +1 -1
  58. package/Components/River/TV/River.tsx +31 -14
  59. package/Components/River/TV/index.tsx +8 -4
  60. package/Components/River/TV/utils/__tests__/toStringOrEmpty.test.ts +30 -0
  61. package/Components/River/TV/utils/index.ts +4 -0
  62. package/Components/River/TV/withFocusableGroupForContent.tsx +71 -0
  63. package/Components/River/__tests__/__snapshots__/componentsMap.test.js.snap +2 -0
  64. package/Components/River/__tests__/componentsMap.test.js +38 -0
  65. package/Components/Screen/TV/hooks/useInitialFocus.ts +14 -4
  66. package/Components/Screen/TV/index.web.tsx +4 -2
  67. package/Components/Screen/__tests__/Screen.test.tsx +65 -42
  68. package/Components/Screen/__tests__/__snapshots__/Screen.test.tsx.snap +68 -42
  69. package/Components/Screen/hooks.ts +2 -3
  70. package/Components/Screen/index.tsx +24 -8
  71. package/Components/Screen/navigationHandler.ts +49 -24
  72. package/Components/Screen/orientationHandler.ts +10 -13
  73. package/Components/ScreenResolver/index.tsx +21 -9
  74. package/Components/ScreenRevealManager/ScreenRevealManager.ts +40 -8
  75. package/Components/ScreenRevealManager/__tests__/ScreenRevealManager.test.ts +86 -69
  76. package/Components/ScreenRevealManager/utils/index.ts +23 -0
  77. package/Components/ScreenRevealManager/withScreenRevealManager.tsx +54 -24
  78. package/Components/Tabs/TV/Tabs.tsx +20 -3
  79. package/Components/Tabs/TabContent.tsx +7 -4
  80. package/Components/Transitioner/Scene.tsx +15 -2
  81. package/Components/Transitioner/index.js +3 -3
  82. package/Components/VideoLive/__tests__/__snapshots__/PlayerLiveImageComponent.test.tsx.snap +1 -0
  83. package/Components/VideoModal/ModalAnimation/ModalAnimationContext.tsx +118 -171
  84. package/Components/VideoModal/ModalAnimation/index.ts +2 -13
  85. package/Components/VideoModal/ModalAnimation/utils.ts +1 -327
  86. package/Components/VideoModal/PlayerDetails.tsx +5 -5
  87. package/Components/VideoModal/PlayerWrapper.tsx +14 -88
  88. package/Components/VideoModal/VideoModal.tsx +1 -5
  89. package/Components/VideoModal/__tests__/PlayerWrapper.test.tsx +1 -0
  90. package/Components/VideoModal/hooks/__tests__/useDelayedPlayerDetails.test.ts +15 -7
  91. package/Components/VideoModal/hooks/useModalSize.ts +10 -5
  92. package/Components/VideoModal/playerWrapperStyle.ts +70 -0
  93. package/Components/VideoModal/playerWrapperUtils.ts +91 -0
  94. package/Components/VideoModal/utils.ts +19 -9
  95. package/Components/Viewport/ViewportEvents/__tests__/viewportEvents.test.js +1 -1
  96. package/Components/ZappFrameworkComponents/BarView/BarView.tsx +4 -6
  97. package/Components/ZappFrameworkComponents/BarView/__tests__/BarView.test.tsx +2 -2
  98. package/Contexts/ScreenContext/index.tsx +25 -18
  99. package/Contexts/ScreenTrackedViewPositionsContext/__tests__/index.test.tsx +1 -1
  100. package/Contexts/ZappHookModalContext/index.tsx +37 -61
  101. package/Contexts/index.ts +0 -2
  102. package/Decorators/Analytics/index.tsx +6 -5
  103. package/Decorators/ConfigurationWrapper/__tests__/__snapshots__/withConfigurationProvider.test.tsx.snap +1 -0
  104. package/Decorators/ConfigurationWrapper/const.ts +1 -0
  105. package/Decorators/RiverFeedLoader/utils/getDatasourceUrl.ts +6 -10
  106. package/Decorators/ZappPipesDataConnector/__tests__/zappPipesDataConnector.test.js +1 -1
  107. package/Decorators/ZappPipesDataConnector/index.tsx +2 -2
  108. package/Decorators/ZappPipesDataConnector/resolvers/StaticFeedResolver.tsx +1 -1
  109. package/Helpers/DataSourceHelper/__tests__/itemLimitForData.test.ts +80 -0
  110. package/Helpers/DataSourceHelper/index.ts +19 -0
  111. package/events/index.ts +3 -0
  112. package/events/scrollEndReached.ts +15 -0
  113. package/index.d.ts +7 -0
  114. package/package.json +6 -5
  115. package/Components/River/TV/withTVEventHandler.tsx +0 -27
  116. package/Components/VideoModal/ModalAnimation/AnimatedPlayerModalWrapper.tsx +0 -60
  117. package/Components/VideoModal/ModalAnimation/AnimatedScrollModal.tsx +0 -415
  118. package/Components/VideoModal/ModalAnimation/AnimatedScrollModal.web.tsx +0 -294
  119. package/Components/VideoModal/ModalAnimation/AnimatedVideoPlayerComponent.tsx +0 -176
  120. package/Components/VideoModal/ModalAnimation/AnimatedVideoPlayerComponent.web.tsx +0 -93
  121. package/Components/VideoModal/ModalAnimation/AnimationComponent.tsx +0 -500
  122. package/Components/VideoModal/ModalAnimation/__tests__/getMoveUpValue.test.ts +0 -108
  123. package/Helpers/DataSourceHelper/index.js +0 -19
@@ -1,4 +1,4 @@
1
- import React from "react";
1
+ import React, { useEffect } from "react";
2
2
  import { equals } from "ramda";
3
3
  import { Animated, ViewProps, ViewStyle } from "react-native";
4
4
  import { useSafeAreaFrame } from "react-native-safe-area-context";
@@ -95,9 +95,22 @@ function SceneComponent({
95
95
  });
96
96
 
97
97
  const frame = useSafeAreaFrame();
98
+
99
+ const [memoFrame, setMemoFrame] = React.useState(frame);
100
+
101
+ useEffect(() => {
102
+ if (isActive) {
103
+ setMemoFrame((oldFrame) =>
104
+ oldFrame.width === frame.width && oldFrame.height === frame.height
105
+ ? oldFrame
106
+ : frame
107
+ );
108
+ }
109
+ }, [isActive, frame.width, frame.height]);
110
+
98
111
  const isAnimating = animating && overlayStyle;
99
112
 
100
- const dimensions = isAnimating ? fullWidthDimensions : frame;
113
+ const dimensions = isAnimating ? fullWidthDimensions : memoFrame;
101
114
 
102
115
  return (
103
116
  <Animated.View
@@ -1,7 +1,8 @@
1
1
  import * as React from "react";
2
2
  import { useNavigation } from "@applicaster/zapp-react-native-utils/reactHooks/navigation";
3
3
  import { useDimensions } from "@applicaster/zapp-react-native-utils/reactHooks/layout";
4
- import { usePickFromState } from "@applicaster/zapp-react-native-redux/hooks";
4
+ import { useAppData } from "@applicaster/zapp-react-native-redux";
5
+
5
6
  import { TransitionerComponent } from "./Transitioner";
6
7
 
7
8
  export const Transitioner = (props) => {
@@ -16,8 +17,7 @@ export const Transitioner = (props) => {
16
17
  deviceInfo: true,
17
18
  });
18
19
 
19
- const { appData } = usePickFromState(["appData"]);
20
- const isTabletPortrait = appData?.isTabletPortrait;
20
+ const { isTabletPortrait } = useAppData();
21
21
 
22
22
  return (
23
23
  <TransitionerComponent
@@ -9,6 +9,7 @@ exports[`PlayerLiveImageComponent should render correctly with default props 1`]
9
9
  <View>
10
10
  <View
11
11
  collapsable={false}
12
+ renderToHardwareTextureAndroid={false}
12
13
  style={
13
14
  {
14
15
  "opacity": 1,
@@ -1,212 +1,159 @@
1
- import React, { useEffect, useMemo } from "react";
1
+ import React, { useMemo } from "react";
2
2
  import { Animated, Dimensions } from "react-native";
3
3
 
4
- import {
5
- useSafeAreaInsets,
6
- useSafeAreaFrame,
7
- } from "react-native-safe-area-context";
8
- import { useGetBottomTabBarHeight } from "@applicaster/zapp-react-native-utils/reactHooks/navigation/useGetBottomTabBarHeight";
9
4
  import { useNavigation } from "@applicaster/zapp-react-native-utils/reactHooks/navigation/useNavigation";
10
- import { isLive } from "@applicaster/zapp-react-native-utils/playerUtils";
11
5
 
12
- import { PROGRESS_BAR_HEIGHT } from "./utils";
13
6
  import { useConfiguration } from "../utils";
14
- import { useIsTabletLandscape } from "@applicaster/zapp-react-native-utils/reactHooks/device/useMemoizedIsTablet";
15
-
16
- export enum PlayerAnimationStateEnum {
17
- minimize = "minimize",
18
- maximize = "maximize",
19
- drag_player = "drag_player",
20
- drag_scroll = "drag_scroll",
21
- appear_as_docked = "appear_as_docked",
22
- }
7
+ import {
8
+ useAppData,
9
+ usePlugins,
10
+ } from "@applicaster/zapp-react-native-redux/hooks";
11
+ import { isBottomTabVisible } from "../../Screen/navigationHandler";
23
12
 
24
- export type PlayerAnimationStateT = number | PlayerAnimationStateEnum | null;
13
+ import {
14
+ useSafeAreaFrame,
15
+ useSafeAreaInsets,
16
+ } from "react-native-safe-area-context";
17
+ import {
18
+ isAndroidPlatform,
19
+ isAndroidVersionAtLeast,
20
+ } from "@applicaster/zapp-react-native-utils/reactUtils";
21
+ import { getTabBarHeight } from "@applicaster/zapp-react-native-utils/reactHooks/navigation/getTabBarHeight";
22
+ import { PROGRESS_BAR_HEIGHT } from "./utils";
23
+ import { useIsTablet as getIsTablet } from "@applicaster/zapp-react-native-utils/reactHooks";
25
24
 
26
25
  export type ModalAnimationContextT = {
27
- yTranslate: React.MutableRefObject<Animated.Value | null>;
28
- isActiveGesture: boolean;
29
- playerAnimationState: PlayerAnimationStateT;
30
- setPlayerAnimationState: (value: PlayerAnimationStateT) => void;
31
- startComponentsAnimation: boolean;
32
- setStartComponentsAnimation: (value: boolean) => void;
33
- resetPlayerAnimationState: () => void;
26
+ yTranslate: React.MutableRefObject<Animated.AnimatedInterpolation<number>>;
27
+ offsetAnimatedValueRef: React.MutableRefObject<Animated.Value>;
28
+ offset: React.MutableRefObject<number>;
29
+ heightAboveMinimised: number;
30
+ gestureTranslationRef: React.MutableRefObject<Animated.Value>;
34
31
  minimisedHeight: number;
35
- animatedValues: {
36
- lastScrollY: Animated.Value;
37
- dragScrollY: Animated.Value;
38
- dragVideoPlayerY: Animated.Value;
39
- translateYOffset: Animated.Value;
40
- };
41
- lastScrollYValue: React.MutableRefObject<number>;
42
- scrollPosition: React.MutableRefObject<number>;
43
- modalSnapPoints: number[];
44
- lastSnap: number;
45
- setLastSnap: (value: number) => void;
46
- tabletLandscapePlayerTopPosition: number;
47
- setTabletLandscapePlayerTopPosition: (value: number) => void;
48
- startComponentsAnimationDistance: number;
49
- progressBarHeight: number;
50
32
  };
51
33
 
52
34
  export const ReactContext = React.createContext<ModalAnimationContextT>({
53
35
  yTranslate: React.createRef<Animated.Value | null>(),
54
- isActiveGesture: false,
55
- playerAnimationState: null,
56
- setPlayerAnimationState: () => null,
57
- startComponentsAnimation: false,
58
- setStartComponentsAnimation: () => null,
59
- resetPlayerAnimationState: () => null,
36
+ offsetAnimatedValueRef: React.createRef<Animated.Value>(),
37
+ offset: React.createRef<number>(),
38
+ heightAboveMinimised: 0,
39
+ gestureTranslationRef: React.createRef<Animated.Value>(),
60
40
  minimisedHeight: 60,
61
- animatedValues: {
62
- lastScrollY: new Animated.Value(0),
63
- dragScrollY: new Animated.Value(0),
64
- dragVideoPlayerY: new Animated.Value(0),
65
- translateYOffset: new Animated.Value(0),
66
- },
67
- lastScrollYValue: null,
68
- scrollPosition: null,
69
- modalSnapPoints: [0, 0],
70
- lastSnap: 0,
71
- setLastSnap: () => null,
72
- tabletLandscapePlayerTopPosition: 0,
73
- setTabletLandscapePlayerTopPosition: () => null,
74
- startComponentsAnimationDistance: 0,
75
- progressBarHeight: 0,
76
41
  });
77
42
 
43
+ const SAFE_AREA_BREAKING_API_VERSION = 35;
44
+
45
+ export const isOldAndroidDevice =
46
+ isAndroidPlatform() &&
47
+ !isAndroidVersionAtLeast(SAFE_AREA_BREAKING_API_VERSION);
48
+
49
+ const bottomTabBarHeight = getTabBarHeight();
50
+
78
51
  const Provider = ({ children }: { children: React.ReactNode }) => {
52
+ const { height } = Dimensions.get("window");
53
+
79
54
  const yTranslate = React.useRef(
80
- new Animated.Value(Dimensions.get("window").height)
55
+ new Animated.Value(height).interpolate<number>({
56
+ inputRange: [0, height],
57
+ outputRange: [0, height],
58
+ })
81
59
  );
82
60
 
83
- const [playerAnimationState, setPlayerAnimationState] =
84
- React.useState<PlayerAnimationStateT>(null);
85
-
86
- const [
87
- tabletLandscapePlayerTopPosition,
88
- setTabletLandscapePlayerTopPosition,
89
- ] = React.useState<number>(0);
90
-
91
- const [startComponentsAnimation, setStartComponentsAnimation] =
92
- React.useState<boolean>(false);
61
+ const { minimised_height: minimisedHeight } = useConfiguration();
93
62
 
94
63
  const {
95
- videoModalState: { mode, visible, item },
64
+ videoModalState: { visible, mode },
65
+ currentRoute,
66
+ screenData,
96
67
  } = useNavigation();
97
68
 
98
- const isLiveItem = isLive(item);
99
- const { minimised_height: minimisedHeight } = useConfiguration();
69
+ const { isTabletPortrait } = useAppData();
100
70
 
101
- const resetPlayerAnimationState = React.useCallback(() => {
102
- setPlayerAnimationState(null);
103
- setStartComponentsAnimation(false);
104
- }, []);
105
-
106
- // Animated values
107
- const lastScrollY = React.useRef(new Animated.Value(0)).current;
108
- const dragScrollY = React.useRef(new Animated.Value(0)).current;
109
- const translateYOffset = React.useRef(new Animated.Value(0)).current;
110
- const dragVideoPlayerY = React.useRef(new Animated.Value(0)).current;
111
-
112
- const { height: safeAreaFrameHeight } = useSafeAreaFrame();
113
- const [height, setHeight] = React.useState<number>(safeAreaFrameHeight);
114
- const progressBarHeight = isLiveItem ? 0 : PROGRESS_BAR_HEIGHT;
115
- const { bottom: bottomSafeArea } = useSafeAreaInsets();
116
- const bottomTabBarHeight = useGetBottomTabBarHeight();
117
- const startComponentsAnimationDistance = Math.round((height * 60) / 100);
118
- const isTabletLandscape = useIsTabletLandscape();
119
- const windowDimensions = Dimensions.get("window");
120
-
121
- useEffect(() => {
122
- // Reset player animation state when video modal is closed
123
- if (!visible) {
124
- resetPlayerAnimationState();
125
-
126
- if (!isTabletLandscape) {
127
- // restore to portrait ( in portrait mode height is bigger)
128
- if (windowDimensions.height > windowDimensions.width) {
129
- yTranslate.current?.setValue(windowDimensions.height);
130
- }
131
- } else {
132
- yTranslate.current?.setValue(windowDimensions.height);
133
- }
134
- }
135
- }, [
136
- visible,
137
- resetPlayerAnimationState,
138
- windowDimensions.height,
139
- isTabletLandscape,
140
- ]);
71
+ const plugins = usePlugins();
72
+
73
+ const bottomTabsVisible = isBottomTabVisible(
74
+ currentRoute,
75
+ screenData,
76
+ plugins
77
+ );
78
+
79
+ const frame = useSafeAreaFrame();
80
+ const insets = useSafeAreaInsets();
81
+
82
+ const [heightAboveMinimised, setHeightAboveMinimised] = React.useState(0);
83
+
84
+ // memoizing heightAboveMinimised value
85
+ const offset = React.useRef(heightAboveMinimised);
86
+
87
+ // Used for memoizing modal y position after start/end of transition
88
+ const offsetAnimatedValueRef = React.useRef(
89
+ new Animated.Value(-offset.current)
90
+ );
91
+
92
+ // Used for gesture handling
93
+ const gestureTranslationRef = React.useRef(new Animated.Value(0));
94
+
95
+ const videoModalStateRef = React.useRef({ visible, mode });
141
96
 
142
97
  React.useEffect(() => {
143
- if (visible && mode === "MAXIMIZED" && height !== safeAreaFrameHeight) {
144
- setHeight(safeAreaFrameHeight);
145
- }
146
- }, [height, safeAreaFrameHeight, mode, visible]);
98
+ videoModalStateRef.current = { visible, mode };
99
+ }, [visible, mode]);
147
100
 
148
- /*
149
- If bottomTabBarHeight is equal 0 it means an app does not use bottomTabBar.
150
- Because of this we need to minus bottom SafeArea offset.
151
- */
101
+ const translateY = useMemo(() => {
102
+ const maxRange = heightAboveMinimised;
152
103
 
153
- const minValue =
154
- height -
155
- (minimisedHeight + bottomTabBarHeight + progressBarHeight + bottomSafeArea);
104
+ const combined: Animated.AnimatedAddition<number> = Animated.add(
105
+ offsetAnimatedValueRef.current,
106
+ gestureTranslationRef.current
107
+ );
108
+
109
+ return combined.interpolate({
110
+ inputRange: [0, maxRange],
111
+ outputRange: [0, maxRange],
112
+ extrapolate: "clamp",
113
+ });
114
+ }, [visible, heightAboveMinimised]);
115
+
116
+ offset.current = heightAboveMinimised;
117
+ yTranslate.current = translateY;
118
+
119
+ React.useEffect(() => {
120
+ const collapsedHeight =
121
+ minimisedHeight +
122
+ (bottomTabsVisible ? bottomTabBarHeight : 0) +
123
+ (isOldAndroidDevice ? 0 : insets.bottom) + // insets.bottom is added to properly display docked modal
124
+ PROGRESS_BAR_HEIGHT;
125
+
126
+ const heightAboveMinimised = frame.height - collapsedHeight;
156
127
 
157
- const modalSnapPoints = React.useMemo(() => [0, minValue], [minValue]);
158
- // Last snap state which will helps us to make smooth responder to scrollview animation
159
- const [lastSnap, setLastSnap] = React.useState<number>(modalSnapPoints[0]);
160
- // Extracted animated values which we will use for calculations
161
- const lastScrollYValue = React.useRef<number>(0);
162
- const scrollPosition = React.useRef<number>(0);
128
+ const isLandscape = frame.width > frame.height;
129
+
130
+ const isTablet = getIsTablet();
131
+
132
+ const shouldIgnoreLandscape = isTablet ? isTabletPortrait : true;
133
+
134
+ if (
135
+ heightAboveMinimised !== offset.current &&
136
+ videoModalStateRef.current.mode !== "PIP" &&
137
+ videoModalStateRef.current.mode !== "FULLSCREEN"
138
+ ) {
139
+ if (isLandscape && shouldIgnoreLandscape) return;
140
+ setHeightAboveMinimised(heightAboveMinimised);
141
+ offset.current = heightAboveMinimised;
142
+ }
143
+ }, [frame.height, insets.bottom, bottomTabsVisible, minimisedHeight]);
163
144
 
164
145
  return (
165
146
  <ReactContext.Provider
166
147
  value={useMemo(
167
148
  () => ({
168
149
  yTranslate,
169
- startComponentsAnimation,
170
- setStartComponentsAnimation,
171
- isActiveGesture: playerAnimationState !== null,
172
- playerAnimationState,
173
- setPlayerAnimationState,
174
- resetPlayerAnimationState,
150
+ offsetAnimatedValueRef,
151
+ offset,
152
+ heightAboveMinimised,
175
153
  minimisedHeight,
176
- animatedValues: {
177
- lastScrollY,
178
- dragScrollY,
179
- dragVideoPlayerY,
180
- translateYOffset,
181
- },
182
- lastScrollYValue,
183
- scrollPosition,
184
- modalSnapPoints,
185
- lastSnap,
186
- setLastSnap,
187
- tabletLandscapePlayerTopPosition,
188
- setTabletLandscapePlayerTopPosition,
189
- startComponentsAnimationDistance,
190
- progressBarHeight,
154
+ gestureTranslationRef,
191
155
  }),
192
- // eslint-disable-next-line react-hooks/exhaustive-deps
193
- [
194
- startComponentsAnimation,
195
- playerAnimationState,
196
- minimisedHeight,
197
- lastScrollY,
198
- dragScrollY,
199
- dragVideoPlayerY,
200
- translateYOffset,
201
- lastSnap,
202
- modalSnapPoints,
203
- lastScrollYValue,
204
- scrollPosition,
205
- tabletLandscapePlayerTopPosition,
206
- startComponentsAnimationDistance,
207
- progressBarHeight,
208
- isLiveItem,
209
- ]
156
+ [minimisedHeight, heightAboveMinimised]
210
157
  )}
211
158
  >
212
159
  {children}
@@ -1,18 +1,7 @@
1
- export { AnimatedPlayerModalWrapper } from "./AnimatedPlayerModalWrapper";
2
-
3
- export { AnimatedScrollModal } from "./AnimatedScrollModal";
4
-
5
- export { AnimatedVideoPlayerComponent } from "./AnimatedVideoPlayerComponent";
6
-
7
- export {
8
- withModalAnimationProvider,
9
- PlayerAnimationStateEnum,
10
- } from "./ModalAnimationContext";
1
+ export { withModalAnimationProvider } from "./ModalAnimationContext";
11
2
 
12
3
  export { useModalAnimationContext } from "./useModalAnimationContext";
13
4
 
14
- export { AnimationComponent } from "./AnimationComponent";
15
-
16
- export { ComponentAnimationType, defaultAspectRatioWidth } from "./utils";
5
+ export { defaultAspectRatioWidth } from "./utils";
17
6
 
18
7
  export { DURATION_TO_MINIMIZE, DURATION_TO_MAXIMIZE } from "./const";