@applicaster/zapp-react-native-ui-components 15.0.0-alpha.6141436051 → 15.0.0-alpha.9361645236

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.
@@ -2,10 +2,6 @@ import React, { PropsWithChildren } from "react";
2
2
  import { ImageBackground, View } from "react-native";
3
3
 
4
4
  import { imageSrcFromMediaItem } from "@applicaster/zapp-react-native-utils/configurationUtils";
5
- import {
6
- AnimationComponent,
7
- ComponentAnimationType,
8
- } from "@applicaster/zapp-react-native-ui-components/Components/VideoModal/ModalAnimation";
9
5
 
10
6
  type Props = PropsWithChildren<{
11
7
  entry: ZappEntry;
@@ -23,7 +19,6 @@ const PlayerImageBackgroundComponent = ({
23
19
  style,
24
20
  imageStyle,
25
21
  imageKey,
26
- defaultImageDimensions,
27
22
  }: Props) => {
28
23
  const source = React.useMemo(
29
24
  () => ({ uri: imageSrcFromMediaItem(entry, [imageKey]) }),
@@ -34,11 +29,7 @@ const PlayerImageBackgroundComponent = ({
34
29
 
35
30
  return (
36
31
  <View style={style}>
37
- <AnimationComponent
38
- style={style}
39
- animationType={ComponentAnimationType.player}
40
- additionalData={defaultImageDimensions}
41
- >
32
+ <View style={style}>
42
33
  <ImageBackground
43
34
  resizeMode="cover"
44
35
  style={imageSize}
@@ -47,7 +38,7 @@ const PlayerImageBackgroundComponent = ({
47
38
  >
48
39
  {children}
49
40
  </ImageBackground>
50
- </AnimationComponent>
41
+ </View>
51
42
  </View>
52
43
  );
53
44
  };
@@ -1,78 +1,19 @@
1
1
  import React, { useEffect, 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
7
  import { useIsTabletLandscape } from "@applicaster/zapp-react-native-utils/reactHooks/device/useMemoizedIsTablet";
15
8
 
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
- }
23
-
24
- export type PlayerAnimationStateT = number | PlayerAnimationStateEnum | null;
25
-
26
9
  export type ModalAnimationContextT = {
27
10
  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;
34
11
  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
12
  };
51
13
 
52
14
  export const ReactContext = React.createContext<ModalAnimationContextT>({
53
15
  yTranslate: React.createRef<Animated.Value | null>(),
54
- isActiveGesture: false,
55
- playerAnimationState: null,
56
- setPlayerAnimationState: () => null,
57
- startComponentsAnimation: false,
58
- setStartComponentsAnimation: () => null,
59
- resetPlayerAnimationState: () => null,
60
16
  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
17
  });
77
18
 
78
19
  const Provider = ({ children }: { children: React.ReactNode }) => {
@@ -80,49 +21,18 @@ const Provider = ({ children }: { children: React.ReactNode }) => {
80
21
  new Animated.Value(Dimensions.get("window").height)
81
22
  );
82
23
 
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);
93
-
94
24
  const {
95
- videoModalState: { mode, visible, item },
25
+ videoModalState: { visible },
96
26
  } = useNavigation();
97
27
 
98
- const isLiveItem = isLive(item);
99
28
  const { minimised_height: minimisedHeight } = useConfiguration();
100
29
 
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
30
  const isTabletLandscape = useIsTabletLandscape();
119
31
  const windowDimensions = Dimensions.get("window");
120
32
 
121
33
  useEffect(() => {
122
34
  // Reset player animation state when video modal is closed
123
35
  if (!visible) {
124
- resetPlayerAnimationState();
125
-
126
36
  if (!isTabletLandscape) {
127
37
  // restore to portrait ( in portrait mode height is bigger)
128
38
  if (windowDimensions.height > windowDimensions.width) {
@@ -134,79 +44,19 @@ const Provider = ({ children }: { children: React.ReactNode }) => {
134
44
  }
135
45
  }, [
136
46
  visible,
137
- resetPlayerAnimationState,
138
47
  windowDimensions.height,
139
48
  isTabletLandscape,
49
+ windowDimensions.width,
140
50
  ]);
141
51
 
142
- React.useEffect(() => {
143
- if (visible && mode === "MAXIMIZED" && height !== safeAreaFrameHeight) {
144
- setHeight(safeAreaFrameHeight);
145
- }
146
- }, [height, safeAreaFrameHeight, mode, visible]);
147
-
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
- */
152
-
153
- const minValue =
154
- height -
155
- (minimisedHeight + bottomTabBarHeight + progressBarHeight + bottomSafeArea);
156
-
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);
163
-
164
52
  return (
165
53
  <ReactContext.Provider
166
54
  value={useMemo(
167
55
  () => ({
168
56
  yTranslate,
169
- startComponentsAnimation,
170
- setStartComponentsAnimation,
171
- isActiveGesture: playerAnimationState !== null,
172
- playerAnimationState,
173
- setPlayerAnimationState,
174
- resetPlayerAnimationState,
175
57
  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,
191
58
  }),
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
- ]
59
+ [minimisedHeight]
210
60
  )}
211
61
  >
212
62
  {children}
@@ -1,12 +1,7 @@
1
- export {
2
- withModalAnimationProvider,
3
- PlayerAnimationStateEnum,
4
- } from "./ModalAnimationContext";
1
+ export { withModalAnimationProvider } from "./ModalAnimationContext";
5
2
 
6
3
  export { useModalAnimationContext } from "./useModalAnimationContext";
7
4
 
8
- export { AnimationComponent } from "./AnimationComponent";
9
-
10
- export { ComponentAnimationType, defaultAspectRatioWidth } from "./utils";
5
+ export { defaultAspectRatioWidth } from "./utils";
11
6
 
12
7
  export { DURATION_TO_MINIMIZE, DURATION_TO_MAXIMIZE } from "./const";
@@ -1,16 +1,5 @@
1
- /* eslint-disable padding-line-between-statements */
2
-
3
- export enum ComponentAnimationType {
4
- bottomBar = "bottomBar",
5
- player = "player",
6
- componentFade = "componentFade",
7
- componentAppears = "componentAppears",
8
- moveUpComponent = "moveUpComponent",
9
- moveComponentHorizontal = "moveComponentHorizontal",
10
- audioPlayerPaddingHorizontal = "audioPlayerPaddingHorizontal",
11
- }
12
-
13
1
  export const AUDIO_PLAYER_HORIZONTAL_PADDING = 15;
2
+
14
3
  export const PROGRESS_BAR_HEIGHT = 3;
15
4
 
16
5
  export const defaultAspectRatioWidth = (height: number): number =>
@@ -1,6 +1,10 @@
1
1
  import * as React from "react";
2
2
  import { StyleSheet, View, ViewStyle } from "react-native";
3
- import { Edge, SafeAreaView } from "react-native-safe-area-context";
3
+ import {
4
+ Edge,
5
+ SafeAreaView,
6
+ useSafeAreaInsets,
7
+ } from "react-native-safe-area-context";
4
8
  import { isTV } from "@applicaster/zapp-react-native-utils/reactUtils";
5
9
  import { useIsTablet } from "@applicaster/zapp-react-native-utils/reactHooks";
6
10
  import { playerDimensionsHack } from "./utils";
@@ -63,8 +67,12 @@ const PlayerWrapperComponent = (props: Props) => {
63
67
  [isInlineModal, isTabletLandscape, tabletWidth]
64
68
  );
65
69
 
70
+ const insets = useSafeAreaInsets();
71
+
66
72
  const aspectRatio = React.useMemo(
67
- () => calculateAspectRatio(isInlineModal, pip),
73
+ () => calculateAspectRatio(isInlineModal, pip, insets),
74
+ // ignoring insets - only initial needed
75
+ // eslint-disable-next-line react-hooks/exhaustive-deps
68
76
  [isInlineModal, pip]
69
77
  );
70
78
 
@@ -46,6 +46,7 @@ jest.mock("@applicaster/zapp-react-native-utils/theme", () => ({
46
46
 
47
47
  jest.mock("@applicaster/zapp-react-native-utils/reactUtils", () => ({
48
48
  isTV: jest.fn(() => false),
49
+ isAndroidPlatform: jest.fn(() => false),
49
50
  isApplePlatform: jest.fn(() => true),
50
51
  platformSelect: jest.fn((props) => props.android),
51
52
  }));
@@ -1,6 +1,16 @@
1
1
  import { Dimensions, Platform } from "react-native";
2
2
  import { Edge } from "react-native-safe-area-context";
3
3
 
4
+ import {
5
+ isAndroidPlatform,
6
+ isAndroidVersionAtLeast,
7
+ } from "@applicaster/zapp-react-native-utils/reactUtils";
8
+
9
+ const MIN_SUPPORTED_ANDROID_API = 34;
10
+
11
+ export const isOldAndroidDevice =
12
+ isAndroidPlatform() && !isAndroidVersionAtLeast(MIN_SUPPORTED_ANDROID_API);
13
+
4
14
  export type DimensionsT = {
5
15
  width: number | string;
6
16
  height: number | string | undefined;
@@ -31,11 +41,15 @@ export const getMinWindowDimension = () => {
31
41
  return Math.min(width, height);
32
42
  };
33
43
 
34
- export const getScreenAspectRatio = () => {
44
+ export const getScreenAspectRatio = (insets?: {
45
+ top: number;
46
+ bottom: number;
47
+ }) => {
35
48
  const longEdge = getMaxWindowDimension();
36
49
  const shortEdge = getMinWindowDimension();
37
50
 
38
- return longEdge / shortEdge;
51
+ // subtract insets to get correct aspect ratio on devices with notches
52
+ return longEdge / (shortEdge - ((insets?.top ?? 0) + (insets?.bottom ?? 0)));
39
53
  };
40
54
 
41
55
  export const getEdges = (
@@ -64,9 +78,12 @@ export const getBaseDimensions = (
64
78
 
65
79
  export const calculateAspectRatio = (
66
80
  isInlineModal: boolean,
67
- pip?: boolean
81
+ pip?: boolean,
82
+ insets?: { top: number; bottom: number }
68
83
  ): number => {
69
- return !isInlineModal && !pip ? getScreenAspectRatio() : 16 / 9;
84
+ return !isInlineModal && !pip
85
+ ? getScreenAspectRatio(isOldAndroidDevice ? insets : undefined)
86
+ : 16 / 9;
70
87
  };
71
88
 
72
89
  export const getPlayerDimensions = (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-native-ui-components",
3
- "version": "15.0.0-alpha.6141436051",
3
+ "version": "15.0.0-alpha.9361645236",
4
4
  "description": "Applicaster Zapp React Native ui components for the Quick Brick App",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -28,10 +28,10 @@
28
28
  },
29
29
  "homepage": "https://github.com/applicaster/quickbrick#readme",
30
30
  "dependencies": {
31
- "@applicaster/applicaster-types": "15.0.0-alpha.6141436051",
32
- "@applicaster/zapp-react-native-bridge": "15.0.0-alpha.6141436051",
33
- "@applicaster/zapp-react-native-redux": "15.0.0-alpha.6141436051",
34
- "@applicaster/zapp-react-native-utils": "15.0.0-alpha.6141436051",
31
+ "@applicaster/applicaster-types": "15.0.0-alpha.9361645236",
32
+ "@applicaster/zapp-react-native-bridge": "15.0.0-alpha.9361645236",
33
+ "@applicaster/zapp-react-native-redux": "15.0.0-alpha.9361645236",
34
+ "@applicaster/zapp-react-native-utils": "15.0.0-alpha.9361645236",
35
35
  "promise": "^8.3.0",
36
36
  "url": "^0.11.0",
37
37
  "uuid": "^3.3.2"
@@ -1,17 +0,0 @@
1
- import React from "react";
2
- import { View } from "react-native";
3
-
4
- type Props = {
5
- animationType: string;
6
- children: React.ReactNode;
7
- style?: Record<string, any>;
8
- additionalData?: { [key: string]: any };
9
- };
10
-
11
- export const AnimationComponent = (props: Props) => {
12
- const { style } = props;
13
-
14
- const Component = style ? View : React.Fragment;
15
-
16
- return <Component {...props}>{props.children}</Component>;
17
- };