@applicaster/zapp-react-native-ui-components 14.0.0-alpha.8419134002 → 14.0.0-alpha.9848043301

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 (47) hide show
  1. package/Components/AudioPlayer/{tv/Artwork.tsx → Artwork.tsx} +2 -3
  2. package/Components/AudioPlayer/{tv/index.tsx → AudioPlayer.tsx} +58 -17
  3. package/Components/AudioPlayer/AudioPlayerLayout.tsx +202 -0
  4. package/Components/AudioPlayer/{tv/Channel.tsx → Channel.tsx} +7 -7
  5. package/Components/AudioPlayer/{tv/Runtime.tsx → Runtime.tsx} +1 -7
  6. package/Components/AudioPlayer/{tv/Summary.tsx → Summary.tsx} +2 -6
  7. package/Components/AudioPlayer/{tv/Title.tsx → Title.tsx} +2 -6
  8. package/Components/AudioPlayer/{tv/__tests__ → __tests__}/__snapshots__/Runtime.test.js.snap +2 -2
  9. package/Components/AudioPlayer/{mobile/__tests__/__snapshots__/audioPlayerMobileLayout.test.js.snap → __tests__/__snapshots__/audioPlayer.test.js.snap} +8 -2
  10. package/Components/AudioPlayer/__tests__/__snapshots__/audioPlayerLayout.test.js.snap +72 -0
  11. package/Components/AudioPlayer/__tests__/__snapshots__/channel.test.js.snap +28 -0
  12. package/Components/AudioPlayer/{tv/__tests__ → __tests__}/__snapshots__/summary.test.js.snap +2 -1
  13. package/Components/AudioPlayer/{tv/__tests__ → __tests__}/__snapshots__/title.test.js.snap +2 -1
  14. package/Components/AudioPlayer/{tv/__tests__ → __tests__}/audioPlayer.test.js +3 -7
  15. package/Components/AudioPlayer/__tests__/audioPlayerLayout.test.js +26 -0
  16. package/Components/AudioPlayer/{tv/helpers.tsx → helpers.tsx} +2 -1
  17. package/Components/AudioPlayer/index.ts +1 -0
  18. package/Components/Cell/index.js +2 -6
  19. package/Components/MasterCell/index.tsx +1 -1
  20. package/Components/PlayerContainer/PlayerContainer.tsx +19 -7
  21. package/Components/PlayerImageBackground/index.tsx +1 -1
  22. package/Components/VideoModal/ModalAnimation/ModalAnimationContext.tsx +9 -1
  23. package/Components/VideoModal/PlayerDetails.tsx +24 -2
  24. package/Components/VideoModal/PlayerWrapper.tsx +26 -142
  25. package/Components/VideoModal/VideoModal.tsx +3 -17
  26. package/Components/VideoModal/__tests__/PlayerWrapper.test.tsx +1 -7
  27. package/Components/VideoModal/__tests__/__snapshots__/PlayerWrapper.test.tsx.snap +44 -240
  28. package/Components/VideoModal/hooks/index.ts +0 -2
  29. package/Components/VideoModal/utils.ts +6 -0
  30. package/Components/Viewport/VisibilitySensor/VisibilitySensor.tsx +3 -3
  31. package/Components/default-cell-renderer/viewTrees/tv/DefaultCell/index.ts +3 -3
  32. package/package.json +5 -5
  33. package/Components/AudioPlayer/index.tsx +0 -15
  34. package/Components/AudioPlayer/mobile/Layout.tsx +0 -66
  35. package/Components/AudioPlayer/mobile/__tests__/audioPlayerMobileLayout.test.js +0 -18
  36. package/Components/AudioPlayer/mobile/index.tsx +0 -18
  37. package/Components/AudioPlayer/tv/Layout.tsx +0 -168
  38. package/Components/AudioPlayer/tv/__tests__/__snapshots__/audioPlayer.test.js.snap +0 -164
  39. package/Components/AudioPlayer/tv/__tests__/__snapshots__/channel.test.js.snap +0 -19
  40. package/Components/AudioPlayer/types.ts +0 -40
  41. package/Components/VideoModal/hooks/useBackgroundColor.ts +0 -10
  42. /package/Components/AudioPlayer/{tv/__tests__ → __tests__}/Runtime.test.js +0 -0
  43. /package/Components/AudioPlayer/{tv/__tests__ → __tests__}/__snapshots__/artWork.test.js.snap +0 -0
  44. /package/Components/AudioPlayer/{tv/__tests__ → __tests__}/artWork.test.js +0 -0
  45. /package/Components/AudioPlayer/{tv/__tests__ → __tests__}/channel.test.js +0 -0
  46. /package/Components/AudioPlayer/{tv/__tests__ → __tests__}/summary.test.js +0 -0
  47. /package/Components/AudioPlayer/{tv/__tests__ → __tests__}/title.test.js +0 -0
@@ -21,87 +21,27 @@ exports[`PlayerWrapper renders inline 1`] = `
21
21
  "top": "additive",
22
22
  }
23
23
  }
24
- style={
25
- [
26
- {
27
- "backgroundColor": "transparent",
28
- },
29
- {
30
- "height": 800,
31
- "width": 300,
32
- },
33
- {},
34
- ]
35
- }
24
+ style={{}}
36
25
  >
37
26
  <View
38
- additionalData={
39
- {
40
- "saveArea": true,
41
- }
42
- }
43
- animationType="moveUpComponent"
44
27
  style={
45
28
  [
46
29
  {
47
- "flexDirection": "column",
30
+ "alignSelf": "center",
31
+ "position": "relative",
32
+ "zIndex": 200,
48
33
  },
34
+ {},
49
35
  {
50
- "flex": 1,
36
+ "aspectRatio": 1.7777777777777777,
37
+ "height": undefined,
38
+ "width": "100%",
51
39
  },
40
+ {},
52
41
  ]
53
42
  }
54
- >
55
- <View
56
- style={
57
- [
58
- {
59
- "alignSelf": "center",
60
- "position": "relative",
61
- "zIndex": 200,
62
- },
63
- {
64
- "aspectRatio": 1.7777777777777777,
65
- "height": undefined,
66
- "width": "100%",
67
- },
68
- {},
69
- {},
70
- ]
71
- }
72
- testID="test-player-container"
73
- />
74
- <View
75
- animationType="componentFade"
76
- style={
77
- {
78
- "flex": 1,
79
- }
80
- }
81
- >
82
- <View
83
- configuration={
84
- {
85
- "tablet_landscape_player_container_background_color": "red",
86
- "tablet_landscape_sidebar_width": "35%",
87
- }
88
- }
89
- entry={
90
- {
91
- "id": "test",
92
- }
93
- }
94
- isTablet={false}
95
- isTabletLandscape={false}
96
- style={
97
- {
98
- "flex": 1,
99
- "paddingTop": 20,
100
- }
101
- }
102
- />
103
- </View>
104
- </View>
43
+ testID="test-player-container"
44
+ />
105
45
  </RNCSafeAreaView>
106
46
  </RNCSafeAreaProvider>
107
47
  `;
@@ -127,57 +67,27 @@ exports[`PlayerWrapper renders inline and docked 1`] = `
127
67
  "top": "additive",
128
68
  }
129
69
  }
130
- style={
131
- [
132
- {
133
- "backgroundColor": "transparent",
134
- },
135
- {
136
- "height": undefined,
137
- "width": 300,
138
- },
139
- {},
140
- ]
141
- }
70
+ style={{}}
142
71
  >
143
72
  <View
144
- additionalData={
145
- {
146
- "saveArea": true,
147
- }
148
- }
149
- animationType="moveUpComponent"
150
73
  style={
151
74
  [
152
75
  {
153
- "flexDirection": "column",
76
+ "alignSelf": "center",
77
+ "position": "relative",
78
+ "zIndex": 200,
154
79
  },
80
+ {},
155
81
  {
156
- "flex": 1,
82
+ "aspectRatio": 1.7777777777777777,
83
+ "height": undefined,
84
+ "width": "100%",
157
85
  },
86
+ {},
158
87
  ]
159
88
  }
160
- >
161
- <View
162
- style={
163
- [
164
- {
165
- "alignSelf": "center",
166
- "position": "relative",
167
- "zIndex": 200,
168
- },
169
- {
170
- "aspectRatio": undefined,
171
- "height": undefined,
172
- "width": "100%",
173
- },
174
- {},
175
- {},
176
- ]
177
- }
178
- testID="test-player-container"
179
- />
180
- </View>
89
+ testID="test-player-container"
90
+ />
181
91
  </RNCSafeAreaView>
182
92
  </RNCSafeAreaProvider>
183
93
  `;
@@ -203,103 +113,27 @@ exports[`PlayerWrapper renders inline on tablet in landscape orientation 1`] = `
203
113
  "top": "additive",
204
114
  }
205
115
  }
206
- style={
207
- [
208
- {
209
- "backgroundColor": "red",
210
- },
211
- {
212
- "height": 800,
213
- "width": 300,
214
- },
215
- {},
216
- ]
217
- }
116
+ style={{}}
218
117
  >
219
118
  <View
220
- additionalData={
221
- {
222
- "saveArea": true,
223
- }
224
- }
225
- animationType="moveUpComponent"
226
119
  style={
227
120
  [
228
121
  {
229
- "flexDirection": "row",
122
+ "alignSelf": "center",
123
+ "position": "relative",
124
+ "zIndex": 200,
230
125
  },
126
+ {},
231
127
  {
232
- "flex": 1,
128
+ "aspectRatio": 1.7777777777777777,
129
+ "height": undefined,
130
+ "width": 195,
233
131
  },
132
+ {},
234
133
  ]
235
134
  }
236
- >
237
- <View
238
- style={
239
- [
240
- {
241
- "alignSelf": "center",
242
- "position": "relative",
243
- "zIndex": 200,
244
- },
245
- {
246
- "aspectRatio": 1.7777777777777777,
247
- "height": undefined,
248
- "width": 195,
249
- },
250
- {},
251
- {},
252
- ]
253
- }
254
- testID="test-player-container"
255
- >
256
- <View
257
- additionalData={
258
- {
259
- "disableAnimatedComponent": false,
260
- "resetAnimationValue": undefined,
261
- "useLayoutMeasure": true,
262
- }
263
- }
264
- animationType="moveUpComponent"
265
- style={
266
- {
267
- "flex": 1,
268
- }
269
- }
270
- />
271
- </View>
272
- <View
273
- animationType="componentFade"
274
- style={
275
- {
276
- "flex": 1,
277
- }
278
- }
279
- >
280
- <View
281
- configuration={
282
- {
283
- "tablet_landscape_player_container_background_color": "red",
284
- "tablet_landscape_sidebar_width": "35%",
285
- }
286
- }
287
- entry={
288
- {
289
- "id": "test",
290
- }
291
- }
292
- isTablet={true}
293
- isTabletLandscape={true}
294
- style={
295
- {
296
- "flex": 1,
297
- "paddingTop": 20,
298
- }
299
- }
300
- />
301
- </View>
302
- </View>
135
+ testID="test-player-container"
136
+ />
303
137
  </RNCSafeAreaView>
304
138
  </RNCSafeAreaProvider>
305
139
  `;
@@ -325,57 +159,27 @@ exports[`PlayerWrapper renders properly 1`] = `
325
159
  "top": "additive",
326
160
  }
327
161
  }
328
- style={
329
- [
330
- {
331
- "backgroundColor": "transparent",
332
- },
333
- {
334
- "height": 800,
335
- "width": 300,
336
- },
337
- {},
338
- ]
339
- }
162
+ style={{}}
340
163
  >
341
164
  <View
342
- additionalData={
343
- {
344
- "saveArea": true,
345
- }
346
- }
347
- animationType="moveUpComponent"
348
165
  style={
349
166
  [
350
167
  {
351
- "flexDirection": "column",
168
+ "alignSelf": "center",
169
+ "position": "relative",
170
+ "zIndex": 200,
352
171
  },
172
+ {},
353
173
  {
354
- "flex": 1,
174
+ "aspectRatio": 1.7786666666666666,
175
+ "height": undefined,
176
+ "width": "100%",
355
177
  },
178
+ {},
356
179
  ]
357
180
  }
358
- >
359
- <View
360
- style={
361
- [
362
- {
363
- "alignSelf": "center",
364
- "position": "relative",
365
- "zIndex": 200,
366
- },
367
- {
368
- "aspectRatio": 1.7786666666666666,
369
- "height": undefined,
370
- "width": "100%",
371
- },
372
- {},
373
- {},
374
- ]
375
- }
376
- testID="test-player-container"
377
- />
378
- </View>
181
+ testID="test-player-container"
182
+ />
379
183
  </RNCSafeAreaView>
380
184
  </RNCSafeAreaProvider>
381
185
  `;
@@ -1,5 +1,3 @@
1
- export { useBackgroundColor } from "./useBackgroundColor";
2
-
3
1
  export { useDelayedPlayerDetails } from "./useDelayedPlayerDetails";
4
2
 
5
3
  export { useInitialPlayerState } from "./useInitialPlayerState";
@@ -34,6 +34,9 @@ export const useConfiguration = () => {
34
34
  minimised_height = 0,
35
35
  minimised_height_tablet = 0,
36
36
  modal_background_color,
37
+ tablet_landscape_player_container_background_color,
38
+ screen_background_color,
39
+ audio_player_background_color,
37
40
  } = config;
38
41
 
39
42
  const minimisedHeight = useIsTablet()
@@ -43,6 +46,9 @@ export const useConfiguration = () => {
43
46
  return {
44
47
  minimised_height: Number(minimisedHeight),
45
48
  modal_background_color,
49
+ tablet_landscape_player_container_background_color,
50
+ audio_player_background_color,
51
+ screen_background_color,
46
52
  };
47
53
  };
48
54
 
@@ -4,8 +4,8 @@ which helps in detecting whether a given component is visible within the viewpor
4
4
  It is useful for implementing lazy loading or triggering specific actions when a component comes into view.
5
5
  */
6
6
 
7
- import React, { FC, ReactNode, useEffect, useRef, useState } from "react";
8
- import { Dimensions, View } from "react-native";
7
+ import React, { useEffect, useState, useRef, ReactNode, FC } from "react";
8
+ import { View, Dimensions } from "react-native";
9
9
  import { useIsRTL } from "@applicaster/zapp-react-native-utils/localizationUtils";
10
10
  import { isTV } from "@applicaster/zapp-react-native-utils/reactUtils";
11
11
 
@@ -78,7 +78,7 @@ const VisibilitySensorComponent: FC<Props> = ({
78
78
  };
79
79
 
80
80
  const stopWatching = () => {
81
- clearInterval(interval);
81
+ interval = clearInterval(interval);
82
82
  };
83
83
 
84
84
  const isInViewPort = () => {
@@ -1,10 +1,10 @@
1
1
  import {
2
+ getColor,
2
3
  ACTIVE_COLOR,
3
4
  BACKGROUND_COLOR,
4
- FOCUSED_TEXT_COLOR,
5
- getColor,
6
5
  MAIN_TEXT_COLOR,
7
- } from "../../../colors";
6
+ FOCUSED_TEXT_COLOR,
7
+ } from "../../../colors/index";
8
8
 
9
9
  const Image = "Image";
10
10
  const View = "View";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-native-ui-components",
3
- "version": "14.0.0-alpha.8419134002",
3
+ "version": "14.0.0-alpha.9848043301",
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",
@@ -31,10 +31,10 @@
31
31
  "redux-mock-store": "^1.5.3"
32
32
  },
33
33
  "dependencies": {
34
- "@applicaster/applicaster-types": "14.0.0-alpha.8419134002",
35
- "@applicaster/zapp-react-native-bridge": "14.0.0-alpha.8419134002",
36
- "@applicaster/zapp-react-native-redux": "14.0.0-alpha.8419134002",
37
- "@applicaster/zapp-react-native-utils": "14.0.0-alpha.8419134002",
34
+ "@applicaster/applicaster-types": "14.0.0-alpha.9848043301",
35
+ "@applicaster/zapp-react-native-bridge": "14.0.0-alpha.9848043301",
36
+ "@applicaster/zapp-react-native-redux": "14.0.0-alpha.9848043301",
37
+ "@applicaster/zapp-react-native-utils": "14.0.0-alpha.9848043301",
38
38
  "promise": "^8.3.0",
39
39
  "url": "^0.11.0",
40
40
  "uuid": "^3.3.2"
@@ -1,15 +0,0 @@
1
- import * as React from "react";
2
- import { isTV } from "@applicaster/zapp-react-native-utils/reactUtils";
3
-
4
- import { AudioPlayerTV } from "./tv";
5
- import { AudioPlayerMobile } from "./mobile";
6
-
7
- import { Props } from "./types";
8
-
9
- export function AudioPlayer(props: Props) {
10
- if (isTV()) {
11
- return <AudioPlayerTV {...props} />;
12
- }
13
-
14
- return <AudioPlayerMobile {...props} />;
15
- }
@@ -1,66 +0,0 @@
1
- import React, { useRef } from "react";
2
- import {
3
- View,
4
- ImageBackground,
5
- Animated,
6
- ViewStyle,
7
- StyleSheet,
8
- } from "react-native";
9
- import { platformSelect } from "@applicaster/zapp-react-native-utils/reactUtils";
10
-
11
- const THREE_SECONDS = 3000;
12
-
13
- const styles = StyleSheet.create({
14
- flex: {
15
- flex: 1,
16
- },
17
- });
18
-
19
- type Props = {
20
- backgroundImageSource: { uri: string };
21
- style: ViewStyle;
22
- };
23
-
24
- export function AudioPlayerMobileLayout({
25
- backgroundImageSource,
26
- style,
27
- }: Props) {
28
- const fadeAnimation = useRef(new Animated.Value(0)).current;
29
-
30
- const mainContainerStyles = platformSelect({
31
- native: {
32
- backgroundColor: "transparent",
33
- overflow: "hidden",
34
- ...style,
35
- },
36
- });
37
-
38
- React.useEffect(() => {
39
- Animated.timing(fadeAnimation, {
40
- toValue: 1,
41
- duration: THREE_SECONDS,
42
- useNativeDriver: true,
43
- }).start();
44
- }, []);
45
-
46
- return (
47
- <View style={mainContainerStyles} pointerEvents="none">
48
- <Animated.View
49
- style={[
50
- mainContainerStyles,
51
- {
52
- opacity: fadeAnimation,
53
- },
54
- ]}
55
- >
56
- <ImageBackground
57
- source={backgroundImageSource}
58
- style={styles.flex}
59
- resizeMode="cover"
60
- >
61
- <View style={mainContainerStyles} />
62
- </ImageBackground>
63
- </Animated.View>
64
- </View>
65
- );
66
- }
@@ -1,18 +0,0 @@
1
- import React from "react";
2
- import { render } from "@testing-library/react-native";
3
-
4
- import { AudioPlayerMobileLayout } from "../Layout";
5
-
6
- const audioPlayerLayoutProps = {
7
- backgroundImageSource: { uri: "background_image_url" },
8
- };
9
-
10
- describe("<AudioPlayerMobileLayout />", () => {
11
- it("renders correctly", () => {
12
- const { toJSON } = render(
13
- <AudioPlayerMobileLayout {...audioPlayerLayoutProps} />
14
- );
15
-
16
- expect(toJSON()).toMatchSnapshot();
17
- });
18
- });
@@ -1,18 +0,0 @@
1
- import * as React from "react";
2
- import { useBackgroundImage } from "@applicaster/zapp-react-native-utils/audioPlayerUtils";
3
-
4
- import { AudioPlayerMobileLayout } from "./Layout";
5
- import { Props } from "../types";
6
-
7
- export function AudioPlayerMobile(props: Props) {
8
- const { audio_item, style = {} } = props;
9
-
10
- const backgroundImageSource = useBackgroundImage(audio_item);
11
-
12
- return (
13
- <AudioPlayerMobileLayout
14
- backgroundImageSource={backgroundImageSource}
15
- style={style}
16
- />
17
- );
18
- }