@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
@@ -1,168 +0,0 @@
1
- import * as React from "react";
2
- import { ImageBackground, View, ViewStyle } from "react-native";
3
-
4
- import { platformSelect } from "@applicaster/zapp-react-native-utils/reactUtils";
5
-
6
- import { Artwork } from "./Artwork";
7
- import { directionStyles } from "./helpers";
8
-
9
- type Props = {
10
- artwork: string;
11
- config: {
12
- titleColor: string;
13
- summaryColor: string;
14
- backgroundImageOverlay?: string;
15
- backgroundColor: string;
16
- backgroundImage: Option<string>;
17
- isRTL: boolean;
18
- artworkBorderRadius: Option<number>;
19
- };
20
- children: React.ReactNode;
21
- style: ViewStyle;
22
- };
23
-
24
- const backgroundImgStyles = platformSelect({
25
- tvos: {
26
- width: "100%",
27
- height: "100%",
28
- alignItems: "center",
29
- justifyContent: "center",
30
- },
31
- android_tv: {
32
- width: "100%",
33
- height: "100%",
34
- alignItems: "center",
35
- justifyContent: "center",
36
- },
37
- web: {
38
- position: "absolute",
39
- margin: "auto",
40
- display: "flex",
41
- flexWrap: "wrap",
42
- width: "100%",
43
- height: "100%",
44
- flex: 1,
45
- alignItems: "center",
46
- justifyContent: "center",
47
- },
48
- });
49
-
50
- export function AudioPlayerTVLayout({
51
- artwork,
52
- config,
53
- children,
54
- style,
55
- }: Props) {
56
- const { backgroundColor, backgroundImage, backgroundImageOverlay, isRTL } =
57
- config;
58
-
59
- const backgroundImageSource = { uri: backgroundImage };
60
-
61
- const backgroundColorStyle = backgroundImage
62
- ? "transparent"
63
- : backgroundColor;
64
-
65
- const textContainerStyles = platformSelect({
66
- tvos: {
67
- justifyContent: "center",
68
- alignItems: directionStyles(isRTL).justifyContent,
69
- },
70
- android_tv: {
71
- justifyContent: "center",
72
- alignItems: directionStyles(isRTL).justifyContent,
73
- },
74
- web: {
75
- justifyContent: "center",
76
- alignItems: directionStyles(isRTL).justifyContent,
77
- },
78
- });
79
-
80
- const mainContainerStyles = React.useMemo(
81
- () =>
82
- platformSelect({
83
- tvos: {
84
- width: "100%",
85
- height: "100%",
86
- alignItems: "center",
87
- justifyContent: "center",
88
- flexDirection: directionStyles(isRTL).flexDirection,
89
- backgroundColor: backgroundColorStyle,
90
- },
91
- android_tv: {
92
- width: "100%",
93
- height: "100%",
94
- alignItems: "center",
95
- justifyContent: "center",
96
- flexDirection: directionStyles(isRTL).flexDirection,
97
- backgroundColor: backgroundColorStyle,
98
- },
99
- web: {
100
- width: 1920,
101
- height: 1080,
102
- alignItems: "center",
103
- justifyContent: "center",
104
- flexDirection: directionStyles(isRTL).flexDirection,
105
- backgroundColor: backgroundColorStyle,
106
- },
107
- native: {
108
- backgroundColor: backgroundColorStyle,
109
- overflow: "hidden",
110
- ...style,
111
- },
112
- samsung_tv: {
113
- position: "absolute",
114
- margin: "auto",
115
- display: "flex",
116
- flexWrap: "wrap",
117
- height: "100vh",
118
- width: "100vw",
119
- alignItems: "center",
120
- justifyContent: "center",
121
- flexDirection: directionStyles(isRTL).flexDirection,
122
- backgroundColor: backgroundColorStyle,
123
- },
124
- lg_tv: {
125
- position: "absolute",
126
- margin: "auto",
127
- display: "flex",
128
- flexWrap: "wrap",
129
- height: "100vh",
130
- width: "100vw",
131
- alignItems: "center",
132
- justifyContent: "center",
133
- flexDirection: directionStyles(isRTL).flexDirection,
134
- backgroundColor: backgroundColorStyle,
135
- },
136
- }),
137
- [backgroundColorStyle, isRTL, style]
138
- );
139
-
140
- const backgroundOverlayStyles = React.useMemo(
141
- () => ({
142
- backgroundColor: backgroundImageOverlay,
143
- }),
144
- [backgroundImageOverlay]
145
- );
146
-
147
- if (backgroundImage) {
148
- return (
149
- <ImageBackground
150
- source={backgroundImageSource}
151
- style={backgroundImgStyles}
152
- resizeMode="cover"
153
- >
154
- <View style={[mainContainerStyles, backgroundOverlayStyles]}>
155
- <Artwork srcImage={artwork} config={config} />
156
- <View style={textContainerStyles}>{children}</View>
157
- </View>
158
- </ImageBackground>
159
- );
160
- }
161
-
162
- return (
163
- <View style={mainContainerStyles}>
164
- <Artwork srcImage={artwork} config={config} />
165
- <View style={textContainerStyles}>{children}</View>
166
- </View>
167
- );
168
- }
@@ -1,164 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`<AudioPlayerTV /> renders correctly 1`] = `
4
- <View
5
- accessibilityIgnoresInvertColors={true}
6
- >
7
- <Image
8
- resizeMode="cover"
9
- source={
10
- {
11
- "uri": "https://example.com",
12
- }
13
- }
14
- style={
15
- [
16
- {
17
- "bottom": 0,
18
- "left": 0,
19
- "position": "absolute",
20
- "right": 0,
21
- "top": 0,
22
- },
23
- {
24
- "height": undefined,
25
- "width": undefined,
26
- },
27
- undefined,
28
- ]
29
- }
30
- />
31
- <View
32
- style={
33
- [
34
- {
35
- "backgroundColor": "transparent",
36
- "overflow": "hidden",
37
- },
38
- {
39
- "backgroundColor": undefined,
40
- },
41
- ]
42
- }
43
- >
44
- <View
45
- style={
46
- {
47
- "marginHorizontal": 24,
48
- }
49
- }
50
- >
51
- <Image
52
- fadeDuration={0}
53
- resizeMode="cover"
54
- source={
55
- {
56
- "uri": "artwork_url",
57
- }
58
- }
59
- style={
60
- [
61
- {
62
- "height": 400,
63
- "width": 400,
64
- },
65
- {
66
- "borderRadius": 0,
67
- },
68
- ]
69
- }
70
- />
71
- </View>
72
- <View>
73
- <Image
74
- fadeDuration={0}
75
- source={
76
- {
77
- "uri": "https://example.com",
78
- }
79
- }
80
- style={
81
- {
82
- "height": 72,
83
- "marginBottom": 30,
84
- "width": 128,
85
- }
86
- }
87
- />
88
- <View
89
- style={
90
- {
91
- "marginBottom": 12,
92
- "width": 600,
93
- }
94
- }
95
- >
96
- <Text
97
- numberOfLines={3}
98
- style={
99
- {
100
- "color": "white",
101
- "fontFamily": null,
102
- "fontSize": 38,
103
- "fontWeight": "600",
104
- "textAlign": "right",
105
- }
106
- }
107
- >
108
- tittle
109
- </Text>
110
- </View>
111
- <View
112
- style={
113
- {
114
- "marginBottom": 30,
115
- "width": 600,
116
- }
117
- }
118
- >
119
- <Text
120
- numberOfLines={3}
121
- style={
122
- {
123
- "color": "white",
124
- "fontFamily": null,
125
- "fontSize": 20,
126
- "fontWeight": "600",
127
- "opacity": 0.8,
128
- "textAlign": "right",
129
- }
130
- }
131
- >
132
- Summary
133
- </Text>
134
- </View>
135
- <View
136
- style={
137
- {
138
- "justifyContent": "flex-end",
139
- "width": 600,
140
- }
141
- }
142
- >
143
- <Text
144
- numberOfLines={1}
145
- style={
146
- {
147
- "alignItems": "flex-start",
148
- "color": "white",
149
- "flexDirection": "row-reverse",
150
- "fontFamily": null,
151
- "fontSize": 20,
152
- "justifyContent": "flex-end",
153
- "opacity": 0.8,
154
- "textAlign": "right",
155
- }
156
- }
157
- >
158
- 10:10 - 11:11
159
- </Text>
160
- </View>
161
- </View>
162
- </View>
163
- </View>
164
- `;
@@ -1,19 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`<Channel /> renders correctly 1`] = `
4
- <Image
5
- fadeDuration={0}
6
- source={
7
- {
8
- "uri": "https://example.com",
9
- }
10
- }
11
- style={
12
- {
13
- "height": 72,
14
- "marginBottom": 30,
15
- "width": 128,
16
- }
17
- }
18
- />
19
- `;
@@ -1,40 +0,0 @@
1
- import { ViewStyle } from "react-native";
2
-
3
- export type Props = {
4
- audio_item: ZappEntry & {
5
- extensions?: {
6
- audio_player_artwork_aspect_ratio?: string;
7
- audio_player_background_image?: string;
8
- audio_player_background_color?: string;
9
- audio_player_channel_icon?: string;
10
- audio_player_title_color?: string;
11
- audio_player_summary_color?: string;
12
- audio_player_rtl?: boolean;
13
- audio_player_background_image_default_color?: string;
14
- start_time?: string;
15
- end_time?: string;
16
- };
17
- };
18
- plugin_configuration: {
19
- audio_player_background_color?: string;
20
- audio_player_title_color?: string;
21
- audio_player_summary_color?: string;
22
- audio_player_rtl?: string;
23
- audio_player_background_image_default_color?: string;
24
- audio_player_background_image?: string;
25
- audio_player_artwork_aspect_ratio?: string;
26
- lg_tv_audio_player_title_font_family?: string;
27
- lg_tv_audio_player_title_font_size?: number;
28
- lg_tv_audio_player_summary_font_family?: string;
29
- lg_tv_audio_player_summary_font_size?: number;
30
- samsung_tv_audio_player_title_font_family?: string;
31
- samsung_tv_audio_player_title_font_size?: number;
32
- samsung_tv_audio_player_summary_font_family?: string;
33
- samsung_tv_audio_player_summary_font_size?: number;
34
- tv_os_audio_player_title_font_family?: string;
35
- tv_os_audio_player_title_font_size?: number;
36
- tv_os_audio_player_summary_font_family?: string;
37
- tv_os_audio_player_summary_font_size?: number;
38
- };
39
- style?: ViewStyle;
40
- };
@@ -1,10 +0,0 @@
1
- import { useTheme } from "@applicaster/zapp-react-native-utils/theme";
2
- import { useConfiguration } from "../utils";
3
-
4
- export const useBackgroundColor = (): string => {
5
- const { modal_background_color: modalBackgroundColor } = useConfiguration();
6
-
7
- const theme = useTheme<BaseThemePropertiesMobile>();
8
-
9
- return modalBackgroundColor || theme?.status_background_color;
10
- };