@applicaster/zapp-react-native-ui-components 15.0.0-rc.14 → 15.0.0-rc.140
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.
- package/Components/AnimatedInOut/index.tsx +69 -26
- package/Components/BaseFocusable/index.ios.ts +12 -2
- package/Components/Cell/Cell.tsx +14 -3
- package/Components/Cell/CellWithFocusable.tsx +9 -0
- package/Components/Cell/FocusableWrapper.tsx +3 -0
- package/Components/Cell/TvOSCellComponent.tsx +25 -6
- package/Components/Focusable/Focusable.tsx +4 -2
- package/Components/Focusable/FocusableTvOS.tsx +18 -1
- package/Components/Focusable/__tests__/__snapshots__/FocusableTvOS.test.tsx.snap +1 -0
- package/Components/FocusableGroup/FocusableTvOS.tsx +32 -1
- package/Components/GeneralContentScreen/GeneralContentScreen.tsx +39 -28
- package/Components/GeneralContentScreen/__tests__/GeneralContentScreen.test.tsx +104 -0
- package/Components/GeneralContentScreen/utils/__tests__/getScreenDataSource.test.ts +19 -0
- package/Components/GeneralContentScreen/utils/__tests__/useCurationAPI.test.js +1 -1
- package/Components/GeneralContentScreen/utils/getScreenDataSource.ts +9 -0
- package/Components/GeneralContentScreen/utils/useCurationAPI.ts +22 -6
- package/Components/HandlePlayable/HandlePlayable.tsx +33 -94
- package/Components/HandlePlayable/const.ts +3 -0
- package/Components/HandlePlayable/utils.ts +105 -0
- package/Components/HookRenderer/HookRenderer.tsx +40 -10
- package/Components/HookRenderer/__tests__/HookRenderer.test.tsx +60 -0
- package/Components/Layout/TV/LayoutBackground.tsx +5 -2
- package/Components/Layout/TV/NavBarContainer.tsx +1 -10
- package/Components/Layout/TV/ScreenContainer.tsx +2 -6
- package/Components/Layout/TV/__tests__/__snapshots__/NavBarContainer.test.tsx.snap +7 -12
- package/Components/Layout/TV/__tests__/__snapshots__/ScreenContainer.test.tsx.snap +7 -12
- package/Components/Layout/TV/index.tsx +3 -4
- package/Components/Layout/TV/index.web.tsx +3 -4
- package/Components/LinkHandler/LinkHandler.tsx +2 -2
- package/Components/MasterCell/DefaultComponents/ActionButtonsCore/__tests__/model.test.ts +80 -0
- package/Components/MasterCell/DefaultComponents/ActionButtonsCore/__tests__/placement.test.ts +187 -0
- package/Components/MasterCell/DefaultComponents/ActionButtonsCore/__tests__/selectors.test.ts +45 -0
- package/Components/MasterCell/DefaultComponents/ActionButtonsCore/__tests__/style.test.ts +49 -0
- package/Components/MasterCell/DefaultComponents/ActionButtonsCore/model.ts +47 -0
- package/Components/MasterCell/DefaultComponents/ActionButtonsCore/placement.ts +170 -0
- package/Components/MasterCell/DefaultComponents/ActionButtonsCore/selectors.ts +26 -0
- package/Components/MasterCell/DefaultComponents/ActionButtonsCore/style.ts +29 -0
- package/Components/MasterCell/DefaultComponents/ActionButtonsCore/types.ts +37 -0
- package/Components/MasterCell/DefaultComponents/BorderContainerView/__tests__/index.test.tsx +16 -1
- package/Components/MasterCell/DefaultComponents/BorderContainerView/index.tsx +30 -2
- package/Components/MasterCell/DefaultComponents/Button.tsx +0 -15
- package/Components/MasterCell/DefaultComponents/Image/Image.android.tsx +5 -1
- package/Components/MasterCell/DefaultComponents/Image/Image.ios.tsx +11 -3
- package/Components/MasterCell/DefaultComponents/Image/Image.web.tsx +9 -1
- package/Components/MasterCell/DefaultComponents/Image/hooks/useImage.ts +15 -14
- package/Components/MasterCell/DefaultComponents/LiveImage/__tests__/prepareEntry.test.ts +352 -0
- package/Components/MasterCell/DefaultComponents/LiveImage/executePreloadHooks.ts +136 -0
- package/Components/MasterCell/DefaultComponents/LiveImage/index.tsx +43 -22
- package/Components/MasterCell/DefaultComponents/PressableView.tsx +261 -0
- package/Components/MasterCell/DefaultComponents/SecondaryImage/Image.tsx +40 -39
- package/Components/MasterCell/DefaultComponents/SecondaryImage/__tests__/Image.test.tsx +95 -0
- package/Components/MasterCell/DefaultComponents/SecondaryImage/__tests__/__snapshots__/Image.test.tsx.snap +86 -0
- package/Components/MasterCell/DefaultComponents/SecondaryImage/__tests__/index.test.ts +141 -0
- package/Components/MasterCell/DefaultComponents/SecondaryImage/hooks/__tests__/useGetImageDimensions.test.ts +7 -6
- package/Components/MasterCell/DefaultComponents/SecondaryImage/index.ts +1 -1
- package/Components/MasterCell/DefaultComponents/Text/index.tsx +10 -14
- package/Components/MasterCell/DefaultComponents/index.ts +2 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/Asset.ts +42 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/Button.ts +127 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/ButtonContainerView.ts +23 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/Spacer.ts +16 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/TextLabel.ts +67 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/TextLabelsContainer.ts +32 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/__tests__/PressableView.test.tsx +195 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/__tests__/builders.test.ts +140 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/__tests__/index.test.ts +222 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/helpers.ts +105 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/index.ts +104 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/utils/__tests__/insertButtons.test.ts +118 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/utils/index.ts +73 -0
- package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/__tests__/index.test.ts +86 -0
- package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/index.ts +35 -48
- package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/utils/__tests__/getPluginIdentifier.test.ts +115 -29
- package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/utils/index.ts +39 -144
- package/Components/MasterCell/elementMapper.tsx +1 -0
- package/Components/MasterCell/hoc/__tests__/withAsyncRender.test.tsx +219 -0
- package/Components/MasterCell/hoc/withAsyncRender.tsx +9 -7
- package/Components/MasterCell/index.tsx +2 -0
- package/Components/MasterCell/utils/__tests__/resolveColor.test.js +82 -3
- package/Components/MasterCell/utils/index.ts +61 -31
- package/Components/MeasurmentsPortal/MeasurementsPortal.tsx +102 -87
- package/Components/MeasurmentsPortal/__tests__/MeasurementsPortal.test.tsx +355 -0
- package/Components/OfflineHandler/NotificationView/NotificationView.lg.tsx +17 -9
- package/Components/OfflineHandler/NotificationView/NotificationView.samsung.tsx +16 -8
- package/Components/OfflineHandler/NotificationView/NotificationView.tsx +2 -2
- package/Components/OfflineHandler/NotificationView/__tests__/index.test.tsx +17 -18
- package/Components/OfflineHandler/NotificationView/utils.ts +34 -0
- package/Components/OfflineHandler/__tests__/index.test.tsx +27 -18
- package/Components/PlayerContainer/PlayerContainer.tsx +43 -64
- package/Components/PlayerImageBackground/index.tsx +3 -22
- package/Components/PreloaderWrapper/__tests__/index.test.tsx +26 -0
- package/Components/PreloaderWrapper/index.tsx +15 -0
- package/Components/River/ComponentsMap/ComponentsMap.tsx +18 -16
- package/Components/River/ComponentsMap/hooks/__tests__/useLoadingState.test.ts +1 -1
- package/Components/River/RefreshControl.tsx +19 -82
- package/Components/River/River.tsx +9 -82
- package/Components/River/RiverItem.tsx +26 -20
- package/Components/River/TV/River.tsx +31 -14
- package/Components/River/TV/index.tsx +8 -4
- package/Components/River/TV/utils/__tests__/toStringOrEmpty.test.ts +30 -0
- package/Components/River/TV/utils/index.ts +4 -0
- package/Components/River/TV/withFocusableGroupForContent.tsx +71 -0
- package/Components/River/__tests__/__snapshots__/componentsMap.test.js.snap +2 -0
- package/Components/River/__tests__/componentsMap.test.js +38 -0
- package/Components/River/hooks/__tests__/usePullToRefresh.test.ts +132 -0
- package/Components/River/hooks/index.ts +1 -0
- package/Components/River/hooks/usePullToRefresh.ts +51 -0
- package/Components/Screen/TV/index.web.tsx +4 -2
- package/Components/Screen/__tests__/Screen.test.tsx +66 -42
- package/Components/Screen/__tests__/__snapshots__/Screen.test.tsx.snap +68 -44
- package/Components/Screen/hooks.ts +75 -6
- package/Components/Screen/index.tsx +9 -4
- package/Components/Screen/navigationHandler.ts +49 -24
- package/Components/Screen/orientationHandler.ts +10 -13
- package/Components/ScreenFeedLoader/ScreenFeedLoader.tsx +46 -0
- package/Components/ScreenFeedLoader/__tests__/ScreenFeedLoader.test.tsx +94 -0
- package/Components/ScreenFeedLoader/index.ts +1 -0
- package/Components/ScreenResolver/__tests__/screenResolver.test.js +24 -0
- package/Components/ScreenResolver/hooks/index.ts +3 -0
- package/Components/ScreenResolver/hooks/useGetComponent.ts +15 -0
- package/Components/ScreenResolver/hooks/useScreenComponentResolver.tsx +90 -0
- package/Components/ScreenResolver/index.tsx +15 -111
- package/Components/ScreenResolver/utils/__tests__/getScreenTypeProps.test.ts +45 -0
- package/Components/ScreenResolver/utils/getScreenTypeProps.ts +43 -0
- package/Components/ScreenResolver/utils/index.ts +1 -0
- package/Components/ScreenResolver/withDefaultScreenContext.tsx +16 -0
- package/Components/ScreenResolverFeedProvider/ScreenResolverFeedProvider.tsx +25 -0
- package/Components/ScreenResolverFeedProvider/__tests__/ScreenResolverFeedProvider.test.tsx +44 -0
- package/Components/ScreenResolverFeedProvider/index.ts +1 -0
- package/Components/ScreenRevealManager/ScreenRevealManager.ts +40 -8
- package/Components/ScreenRevealManager/__tests__/ScreenRevealManager.test.ts +86 -69
- package/Components/ScreenRevealManager/withScreenRevealManager.tsx +44 -26
- package/Components/Tabs/TV/Tabs.tsx +20 -3
- package/Components/Tabs/TabContent.tsx +7 -4
- package/Components/TopCutoffOverlay/hooks/__tests__/useMarginTop.test.ts +130 -0
- package/Components/TopCutoffOverlay/hooks/index.ts +1 -0
- package/Components/TopCutoffOverlay/hooks/useMarginTop.ts +59 -0
- package/Components/TopCutoffOverlay/index.tsx +55 -0
- package/Components/Transitioner/Scene.tsx +10 -3
- package/Components/Transitioner/index.js +3 -3
- package/Components/VideoLive/LiveImageManager.ts +199 -54
- package/Components/VideoLive/PlayerLiveImageComponent.tsx +31 -33
- package/Components/VideoLive/__tests__/PlayerLiveImageComponent.test.tsx +2 -17
- package/Components/VideoLive/__tests__/__snapshots__/PlayerLiveImageComponent.test.tsx.snap +1 -0
- package/Components/VideoModal/ModalAnimation/ModalAnimationContext.tsx +118 -171
- package/Components/VideoModal/ModalAnimation/index.ts +2 -13
- package/Components/VideoModal/ModalAnimation/utils.ts +1 -327
- package/Components/VideoModal/PlayerWrapper.tsx +14 -88
- package/Components/VideoModal/VideoModal.tsx +1 -5
- package/Components/VideoModal/__tests__/PlayerWrapper.test.tsx +1 -0
- package/Components/VideoModal/hooks/__tests__/useDelayedPlayerDetails.test.ts +15 -7
- package/Components/VideoModal/hooks/useModalSize.ts +10 -5
- package/Components/VideoModal/playerWrapperStyle.ts +70 -0
- package/Components/VideoModal/playerWrapperUtils.ts +91 -0
- package/Components/VideoModal/utils.ts +19 -9
- package/Components/Viewport/ViewportAware/__tests__/viewportAware.test.js +0 -2
- package/Components/Viewport/ViewportAware/index.tsx +16 -7
- package/Components/Viewport/ViewportEvents/__tests__/viewportEvents.test.js +1 -1
- package/Components/ZappUIComponent/index.tsx +12 -6
- package/Components/default-cell-renderer/viewTrees/mobile/index.ts +0 -3
- package/Components/index.js +1 -1
- package/Contexts/ScreenContext/__tests__/index.test.tsx +57 -0
- package/Contexts/ScreenContext/index.tsx +71 -19
- package/Contexts/ScreenTrackedViewPositionsContext/__tests__/index.test.tsx +1 -1
- package/Contexts/ZappHookModalContext/index.tsx +37 -61
- package/Contexts/ZappPipesContext/ZappPipesContextFactory.tsx +18 -7
- package/Contexts/index.ts +0 -2
- package/Decorators/Analytics/index.tsx +6 -5
- package/Decorators/ConfigurationWrapper/__tests__/__snapshots__/withConfigurationProvider.test.tsx.snap +1 -0
- package/Decorators/ConfigurationWrapper/const.ts +1 -0
- package/Decorators/ZappPipesDataConnector/ResolverSelector.tsx +25 -7
- package/Decorators/ZappPipesDataConnector/__tests__/ResolverSelector.test.tsx +212 -5
- package/Decorators/ZappPipesDataConnector/__tests__/UrlFeedResolver.test.tsx +39 -21
- package/Decorators/ZappPipesDataConnector/__tests__/zappPipesDataConnector.test.js +1 -1
- package/Decorators/ZappPipesDataConnector/index.tsx +2 -2
- package/Decorators/ZappPipesDataConnector/resolvers/StaticFeedResolver.tsx +1 -1
- package/Decorators/ZappPipesDataConnector/resolvers/UrlFeedResolver.tsx +18 -7
- package/Helpers/DataSourceHelper/__tests__/itemLimitForData.test.ts +80 -0
- package/Helpers/DataSourceHelper/index.ts +19 -0
- package/events/index.ts +3 -0
- package/events/scrollEndReached.ts +15 -0
- package/index.d.ts +7 -0
- package/package.json +6 -5
- package/Components/MasterCell/DefaultComponents/Text/utils/__tests__/withAdjustedLineHeight.test.ts +0 -46
- package/Components/MasterCell/DefaultComponents/Text/utils/index.ts +0 -21
- package/Components/PlayerContainer/ErrorDisplay/ErrorDisplay.tsx +0 -57
- package/Components/PlayerContainer/ErrorDisplay/index.ts +0 -9
- package/Components/River/TV/withTVEventHandler.tsx +0 -27
- package/Components/VideoModal/ModalAnimation/AnimatedPlayerModalWrapper.tsx +0 -60
- package/Components/VideoModal/ModalAnimation/AnimatedScrollModal.tsx +0 -417
- package/Components/VideoModal/ModalAnimation/AnimatedScrollModal.web.tsx +0 -294
- package/Components/VideoModal/ModalAnimation/AnimatedVideoPlayerComponent.tsx +0 -176
- package/Components/VideoModal/ModalAnimation/AnimatedVideoPlayerComponent.web.tsx +0 -93
- package/Components/VideoModal/ModalAnimation/AnimationComponent.tsx +0 -500
- package/Components/VideoModal/ModalAnimation/__tests__/getMoveUpValue.test.ts +0 -108
- package/Helpers/DataSourceHelper/index.js +0 -19
- /package/Components/HookRenderer/{index.tsx → index.ts} +0 -0
|
@@ -1,212 +1,159 @@
|
|
|
1
|
-
import 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 {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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
|
-
|
|
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.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
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
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
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(
|
|
55
|
+
new Animated.Value(height).interpolate<number>({
|
|
56
|
+
inputRange: [0, height],
|
|
57
|
+
outputRange: [0, height],
|
|
58
|
+
})
|
|
81
59
|
);
|
|
82
60
|
|
|
83
|
-
const
|
|
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: {
|
|
64
|
+
videoModalState: { visible, mode },
|
|
65
|
+
currentRoute,
|
|
66
|
+
screenData,
|
|
96
67
|
} = useNavigation();
|
|
97
68
|
|
|
98
|
-
const
|
|
99
|
-
const { minimised_height: minimisedHeight } = useConfiguration();
|
|
69
|
+
const { isTabletPortrait } = useAppData();
|
|
100
70
|
|
|
101
|
-
const
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
const
|
|
110
|
-
const
|
|
111
|
-
|
|
112
|
-
const
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
const
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
const
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
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
|
-
|
|
144
|
-
|
|
145
|
-
}
|
|
146
|
-
}, [height, safeAreaFrameHeight, mode, visible]);
|
|
98
|
+
videoModalStateRef.current = { visible, mode };
|
|
99
|
+
}, [visible, mode]);
|
|
147
100
|
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
Because of this we need to minus bottom SafeArea offset.
|
|
151
|
-
*/
|
|
101
|
+
const translateY = useMemo(() => {
|
|
102
|
+
const maxRange = heightAboveMinimised;
|
|
152
103
|
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
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
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
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
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
playerAnimationState,
|
|
173
|
-
setPlayerAnimationState,
|
|
174
|
-
resetPlayerAnimationState,
|
|
150
|
+
offsetAnimatedValueRef,
|
|
151
|
+
offset,
|
|
152
|
+
heightAboveMinimised,
|
|
175
153
|
minimisedHeight,
|
|
176
|
-
|
|
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
|
-
|
|
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 {
|
|
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 {
|
|
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";
|
|
@@ -1,332 +1,6 @@
|
|
|
1
|
-
/* eslint-disable padding-line-between-statements */
|
|
2
|
-
|
|
3
|
-
import { PlayerAnimationStateEnum } from "@applicaster/zapp-react-native-ui-components/Components/VideoModal/ModalAnimation";
|
|
4
|
-
import { toNumberWithDefaultZero } from "@applicaster/zapp-react-native-utils/numberUtils";
|
|
5
|
-
|
|
6
|
-
export enum ComponentAnimationType {
|
|
7
|
-
bottomBar = "bottomBar",
|
|
8
|
-
player = "player",
|
|
9
|
-
componentFade = "componentFade",
|
|
10
|
-
componentAppears = "componentAppears",
|
|
11
|
-
moveUpComponent = "moveUpComponent",
|
|
12
|
-
moveComponentHorizontal = "moveComponentHorizontal",
|
|
13
|
-
audioPlayerPaddingHorizontal = "audioPlayerPaddingHorizontal",
|
|
14
|
-
}
|
|
15
|
-
|
|
16
1
|
export const AUDIO_PLAYER_HORIZONTAL_PADDING = 15;
|
|
2
|
+
|
|
17
3
|
export const PROGRESS_BAR_HEIGHT = 3;
|
|
18
4
|
|
|
19
5
|
export const defaultAspectRatioWidth = (height: number): number =>
|
|
20
6
|
(height / 9) * 16;
|
|
21
|
-
|
|
22
|
-
export const getAnimationStyle = (component, animatedValue) => {
|
|
23
|
-
switch (component) {
|
|
24
|
-
case ComponentAnimationType.bottomBar: {
|
|
25
|
-
return { zIndex: 99, transform: [{ translateY: animatedValue }] };
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
case ComponentAnimationType.player: {
|
|
29
|
-
return { width: animatedValue.x, height: animatedValue.y };
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
case ComponentAnimationType.componentFade:
|
|
33
|
-
case ComponentAnimationType.componentAppears: {
|
|
34
|
-
return { opacity: animatedValue };
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
case ComponentAnimationType.moveUpComponent: {
|
|
38
|
-
return { transform: [{ translateY: animatedValue }] };
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
case ComponentAnimationType.audioPlayerPaddingHorizontal:
|
|
42
|
-
case ComponentAnimationType.moveComponentHorizontal: {
|
|
43
|
-
return { transform: [{ translateX: animatedValue }] };
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
default:
|
|
47
|
-
return null;
|
|
48
|
-
}
|
|
49
|
-
};
|
|
50
|
-
|
|
51
|
-
export const getAnimationDefaultValue = (component, bottomTabBarHeight) => {
|
|
52
|
-
switch (component) {
|
|
53
|
-
case ComponentAnimationType.bottomBar: {
|
|
54
|
-
return bottomTabBarHeight;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
case ComponentAnimationType.player: {
|
|
58
|
-
return { x: 0, y: 0 };
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
case ComponentAnimationType.componentFade: {
|
|
62
|
-
return 1;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
case ComponentAnimationType.audioPlayerPaddingHorizontal:
|
|
66
|
-
case ComponentAnimationType.moveComponentHorizontal:
|
|
67
|
-
case ComponentAnimationType.componentAppears:
|
|
68
|
-
case ComponentAnimationType.moveUpComponent: {
|
|
69
|
-
return 0;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
};
|
|
73
|
-
|
|
74
|
-
export const calculateAnimationValue = (animationType, dragPosition, data) => {
|
|
75
|
-
const {
|
|
76
|
-
isAudioItem,
|
|
77
|
-
bottomTabBarHeight,
|
|
78
|
-
minimisedHeight,
|
|
79
|
-
minimisedWidth,
|
|
80
|
-
defaultValue,
|
|
81
|
-
moveUpValue,
|
|
82
|
-
moveComponentHorizontalValue,
|
|
83
|
-
isTablet,
|
|
84
|
-
isTabletLandscape,
|
|
85
|
-
isRTL,
|
|
86
|
-
fromMiniPlayer,
|
|
87
|
-
inlineAudioPlayer,
|
|
88
|
-
} = data;
|
|
89
|
-
|
|
90
|
-
switch (animationType) {
|
|
91
|
-
case ComponentAnimationType.bottomBar: {
|
|
92
|
-
if (fromMiniPlayer) {
|
|
93
|
-
return dragPosition < bottomTabBarHeight
|
|
94
|
-
? dragPosition
|
|
95
|
-
: bottomTabBarHeight;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
return dragPosition < bottomTabBarHeight
|
|
99
|
-
? bottomTabBarHeight - dragPosition
|
|
100
|
-
: 0;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
case ComponentAnimationType.player: {
|
|
104
|
-
const value =
|
|
105
|
-
isAudioItem && !inlineAudioPlayer
|
|
106
|
-
? isTabletLandscape
|
|
107
|
-
? fromMiniPlayer
|
|
108
|
-
? { forWidth: 4, forHeight: 4.5 }
|
|
109
|
-
: { forWidth: 3, forHeight: 3 }
|
|
110
|
-
: { forWidth: 2, forHeight: 2 }
|
|
111
|
-
: isTabletLandscape
|
|
112
|
-
? { forWidth: 8, forHeight: 6.5 }
|
|
113
|
-
: { forWidth: 3.5, forHeight: 2 };
|
|
114
|
-
|
|
115
|
-
const minWidth =
|
|
116
|
-
isAudioItem && !inlineAudioPlayer ? minimisedHeight : minimisedWidth;
|
|
117
|
-
|
|
118
|
-
if (fromMiniPlayer) {
|
|
119
|
-
const calculationWidth =
|
|
120
|
-
dragPosition * value.forWidth < minWidth
|
|
121
|
-
? minWidth
|
|
122
|
-
: dragPosition * value.forWidth;
|
|
123
|
-
const calculationHeight =
|
|
124
|
-
dragPosition * value.forHeight < minimisedHeight
|
|
125
|
-
? minimisedHeight
|
|
126
|
-
: dragPosition * value.forHeight;
|
|
127
|
-
|
|
128
|
-
return {
|
|
129
|
-
x:
|
|
130
|
-
calculationWidth < defaultValue.x
|
|
131
|
-
? calculationWidth
|
|
132
|
-
: defaultValue.x,
|
|
133
|
-
y:
|
|
134
|
-
calculationHeight < defaultValue.y
|
|
135
|
-
? calculationHeight
|
|
136
|
-
: defaultValue.y,
|
|
137
|
-
};
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
const calculationWidth = defaultValue.x - dragPosition * value.forWidth;
|
|
141
|
-
|
|
142
|
-
const calculationHeight = defaultValue.y - dragPosition * value.forHeight;
|
|
143
|
-
|
|
144
|
-
return {
|
|
145
|
-
x: calculationWidth > minWidth ? calculationWidth : minWidth,
|
|
146
|
-
y:
|
|
147
|
-
calculationHeight > minimisedHeight
|
|
148
|
-
? calculationHeight
|
|
149
|
-
: minimisedHeight,
|
|
150
|
-
};
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
case ComponentAnimationType.componentFade: {
|
|
154
|
-
if (fromMiniPlayer) {
|
|
155
|
-
const calculation = dragPosition / (isTablet ? 200 : 150);
|
|
156
|
-
|
|
157
|
-
return calculation < 1 ? calculation : 1;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
const calculation = 1 - dragPosition / (isTablet ? 200 : 150);
|
|
161
|
-
|
|
162
|
-
return calculation > 0 ? calculation : 0;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
case ComponentAnimationType.componentAppears: {
|
|
166
|
-
if (fromMiniPlayer) {
|
|
167
|
-
const calculation = 1 - dragPosition / (isTablet ? 200 : 150);
|
|
168
|
-
|
|
169
|
-
return calculation > 0 ? calculation : 0;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
const calculation = dragPosition / (isTablet ? 200 : 150);
|
|
173
|
-
|
|
174
|
-
return calculation < 1 ? calculation : 1;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
case ComponentAnimationType.moveUpComponent: {
|
|
178
|
-
if (fromMiniPlayer) {
|
|
179
|
-
const calculation =
|
|
180
|
-
moveUpValue + dragPosition / (isTabletLandscape ? 1 : 4);
|
|
181
|
-
|
|
182
|
-
return calculation < 0 ? calculation : 0;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
const calculation = 0 - dragPosition / (isTabletLandscape ? 1 : 2);
|
|
186
|
-
|
|
187
|
-
return calculation > moveUpValue ? calculation : moveUpValue;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
case ComponentAnimationType.moveComponentHorizontal: {
|
|
191
|
-
if (fromMiniPlayer) {
|
|
192
|
-
const calculation = isRTL
|
|
193
|
-
? moveComponentHorizontalValue - dragPosition * 2
|
|
194
|
-
: moveComponentHorizontalValue + dragPosition * 2;
|
|
195
|
-
const condition = isRTL ? calculation > 0 : calculation < 0;
|
|
196
|
-
|
|
197
|
-
return condition ? calculation : 0;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
const calculation = isRTL ? dragPosition * 2 : -(dragPosition * 2);
|
|
201
|
-
const condition = isRTL
|
|
202
|
-
? calculation < moveComponentHorizontalValue
|
|
203
|
-
: calculation > moveComponentHorizontalValue;
|
|
204
|
-
|
|
205
|
-
return condition ? calculation : moveComponentHorizontalValue;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
case ComponentAnimationType.audioPlayerPaddingHorizontal: {
|
|
209
|
-
const padding = isRTL
|
|
210
|
-
? AUDIO_PLAYER_HORIZONTAL_PADDING
|
|
211
|
-
: -AUDIO_PLAYER_HORIZONTAL_PADDING;
|
|
212
|
-
|
|
213
|
-
if (fromMiniPlayer) {
|
|
214
|
-
const calculation = isRTL
|
|
215
|
-
? padding - dragPosition / 5
|
|
216
|
-
: padding + dragPosition / 5;
|
|
217
|
-
const condition = isRTL ? calculation > 0 : calculation < 0;
|
|
218
|
-
|
|
219
|
-
return condition ? calculation : 0;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
const calculation = isRTL ? dragPosition / 5 : -(dragPosition / 5);
|
|
223
|
-
const condition = isRTL ? calculation < padding : calculation > padding;
|
|
224
|
-
|
|
225
|
-
return condition ? calculation : padding;
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
};
|
|
229
|
-
|
|
230
|
-
export const gestureListenerHelper = (data) => {
|
|
231
|
-
const {
|
|
232
|
-
listenerValue,
|
|
233
|
-
preparedValue,
|
|
234
|
-
animationType,
|
|
235
|
-
animatedValue,
|
|
236
|
-
calculationData,
|
|
237
|
-
modalSnapPoint,
|
|
238
|
-
startComponentsAnimationDistance,
|
|
239
|
-
startComponentsAnimation,
|
|
240
|
-
setStartComponentsAnimation,
|
|
241
|
-
getAnimationValue,
|
|
242
|
-
} = data;
|
|
243
|
-
|
|
244
|
-
if (calculationData.fromMiniPlayer) {
|
|
245
|
-
if (listenerValue <= 0) {
|
|
246
|
-
if (
|
|
247
|
-
preparedValue >= 0 &&
|
|
248
|
-
preparedValue <= modalSnapPoint - startComponentsAnimationDistance
|
|
249
|
-
) {
|
|
250
|
-
!startComponentsAnimation && setStartComponentsAnimation(true);
|
|
251
|
-
|
|
252
|
-
animatedValue.setValue(
|
|
253
|
-
calculateAnimationValue(animationType, preparedValue, calculationData)
|
|
254
|
-
);
|
|
255
|
-
} else {
|
|
256
|
-
animatedValue.setValue(calculationData.defaultValue);
|
|
257
|
-
startComponentsAnimation && setStartComponentsAnimation(false);
|
|
258
|
-
}
|
|
259
|
-
} else {
|
|
260
|
-
const value = getAnimationValue(
|
|
261
|
-
animationType,
|
|
262
|
-
PlayerAnimationStateEnum.minimize
|
|
263
|
-
).toValue;
|
|
264
|
-
|
|
265
|
-
animatedValue.setValue(value);
|
|
266
|
-
}
|
|
267
|
-
} else {
|
|
268
|
-
if (preparedValue >= startComponentsAnimationDistance) {
|
|
269
|
-
!startComponentsAnimation && setStartComponentsAnimation(true);
|
|
270
|
-
const value = Math.round(
|
|
271
|
-
preparedValue - startComponentsAnimationDistance
|
|
272
|
-
);
|
|
273
|
-
|
|
274
|
-
animatedValue.setValue(
|
|
275
|
-
calculateAnimationValue(animationType, value, calculationData)
|
|
276
|
-
);
|
|
277
|
-
} else {
|
|
278
|
-
animatedValue.setValue(calculationData.defaultValue);
|
|
279
|
-
startComponentsAnimation && setStartComponentsAnimation(false);
|
|
280
|
-
}
|
|
281
|
-
}
|
|
282
|
-
};
|
|
283
|
-
|
|
284
|
-
export const setScrollModalAnimatedValue = (
|
|
285
|
-
animatedValue,
|
|
286
|
-
value,
|
|
287
|
-
setLastSnap
|
|
288
|
-
) => {
|
|
289
|
-
setLastSnap(value);
|
|
290
|
-
animatedValue.setValue(value);
|
|
291
|
-
};
|
|
292
|
-
|
|
293
|
-
export const resetScrollAnimatedValues = (
|
|
294
|
-
lastScrollY,
|
|
295
|
-
lastScrollYValue,
|
|
296
|
-
dragScrollY,
|
|
297
|
-
dragVideoPlayerY
|
|
298
|
-
) => {
|
|
299
|
-
lastScrollY.setValue(0);
|
|
300
|
-
lastScrollYValue.current = 0;
|
|
301
|
-
dragScrollY.setValue(0);
|
|
302
|
-
dragVideoPlayerY.setValue(0);
|
|
303
|
-
};
|
|
304
|
-
|
|
305
|
-
export const getMoveUpValue = ({
|
|
306
|
-
additionalData,
|
|
307
|
-
insets,
|
|
308
|
-
isAudioItem,
|
|
309
|
-
progressBarHeight,
|
|
310
|
-
isTablet,
|
|
311
|
-
isTabletLandscape,
|
|
312
|
-
tabletLandscapePlayerTopPosition,
|
|
313
|
-
}) => {
|
|
314
|
-
if (additionalData.saveArea) {
|
|
315
|
-
return -insets.top + (isAudioItem ? 0 : progressBarHeight);
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
if (isAudioItem) {
|
|
319
|
-
// for any layouts in audioPlayer
|
|
320
|
-
return -1 * toNumberWithDefaultZero(additionalData?.marginTop);
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
if (isTablet) {
|
|
324
|
-
if (isTabletLandscape) {
|
|
325
|
-
return -tabletLandscapePlayerTopPosition + progressBarHeight;
|
|
326
|
-
} else {
|
|
327
|
-
return -130;
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
|
|
331
|
-
return -50 + progressBarHeight;
|
|
332
|
-
};
|