@applicaster/zapp-react-native-ui-components 16.0.0-alpha.1803625751 → 16.0.0-alpha.1816065263
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/AudioPlayer/tv/__tests__/audioPlayer.test.js +19 -0
- package/Components/AudioPlayer/tv/__tests__/index.test.tsx +120 -0
- package/Components/AudioPlayer/tv/index.tsx +5 -1
- package/Components/CellRendererResolver/index.ts +1 -1
- package/Components/Layout/FullWidthRow.tsx +38 -0
- package/Components/MasterCell/DefaultComponents/Image/hoc/utils/__tests__/withDimensions.test.ts +420 -125
- package/Components/MasterCell/DefaultComponents/Image/hoc/utils/index.ts +114 -19
- package/Components/MasterCell/DefaultComponents/Image/hoc/withDimensions.tsx +19 -8
- package/Components/MasterCell/DefaultComponents/ImageContainer/index.tsx +1 -0
- package/Components/MasterCell/DefaultComponents/PressableView.tsx +27 -7
- package/Components/MasterCell/DefaultComponents/Text/hooks/useText.ts +4 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/ActionButton.tsx +154 -136
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/Button.ts +30 -10
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/Spacer.ts +6 -4
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/TextLabelsContainer.ts +0 -1
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/__tests__/PressableView.test.tsx +32 -21
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/__tests__/index.test.ts +15 -4
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/index.ts +21 -15
- package/Components/MasterCell/contexts/PressedStateContext.ts +3 -0
- package/Components/MasterCell/dataAdapter.ts +15 -5
- package/Components/MasterCell/hooks/index.ts +2 -0
- package/Components/MasterCell/hooks/usePressedState.ts +4 -0
- package/Components/MasterCell/index.tsx +30 -5
- package/Components/MasterCell/utils/__tests__/resolveColor.test.js +169 -132
- package/Components/MasterCell/utils/__tests__/resolveColorForProp.test.js +92 -0
- package/Components/MasterCell/utils/index.ts +85 -46
- package/Components/ModalComponent/AudioPlayer/Components/Action.tsx +332 -0
- package/Components/ModalComponent/AudioPlayer/Components/Button.tsx +402 -0
- package/Components/ModalComponent/AudioPlayer/Components/Header.tsx +811 -0
- package/Components/ModalComponent/AudioPlayer/Components/Input.tsx +671 -0
- package/Components/ModalComponent/AudioPlayer/Components/Item.tsx +878 -0
- package/Components/ModalComponent/AudioPlayer/Components/index.ts +9 -0
- package/Components/ModalComponent/BottomSheetDragArea.tsx +33 -0
- package/Components/ModalComponent/BottomSheetModalContent.tsx +49 -26
- package/Components/ModalComponent/__tests__/BottomSheetDragArea.test.tsx +74 -0
- package/Components/OfflineHandler/__tests__/__snapshots__/index.test.tsx.snap +4 -85
- package/Components/OfflineHandler/__tests__/index.test.tsx +78 -18
- package/Components/OfflineHandler/hooks.ts +123 -0
- package/Components/OfflineHandler/index.tsx +51 -73
- package/Components/OfflineHandler/utils/index.ts +1 -13
- package/Components/PlayerContainer/PlayerContainer.tsx +18 -10
- package/Components/PlayerContainer/ProgramInfo/index.tsx +3 -4
- package/Components/PlayerContainer/__tests__/PlayerContainer.test.tsx +66 -13
- package/Components/PreloaderWrapper/index.tsx +1 -1
- package/Components/River/ComponentsMap/ComponentsMap.tsx +2 -2
- package/Components/River/__tests__/__snapshots__/componentsMap.test.js.snap +3 -15
- package/Components/Screen/index.tsx +8 -4
- package/Components/ScreenFeedLoader/ScreenFeedLoader.tsx +5 -3
- package/Components/ScreenResolverFeedProvider/ScreenResolverFeedProvider.tsx +1 -1
- package/Components/TopCutoffOverlay/index.tsx +2 -2
- package/Components/Transitioner/Transitioner.tsx +28 -17
- package/Components/VideoLive/LiveImageManager.ts +1 -1
- package/Components/ZappFrameworkComponents/BarView/BarView.tsx +12 -5
- package/Components/ZappFrameworkComponents/BarView/__tests__/BarView.test.tsx +2 -2
- package/Contexts/CachedDimensionsContext/__tests__/index.test.ts +154 -0
- package/Contexts/CachedDimensionsContext/index.ts +17 -2
- package/package.json +5 -5
- package/Components/OfflineHandler/NotificationView/NotificationView.lg.tsx +0 -112
- package/Components/OfflineHandler/NotificationView/NotificationView.samsung.tsx +0 -107
- package/Components/OfflineHandler/NotificationView/NotificationView.tsx +0 -153
- package/Components/OfflineHandler/NotificationView/__tests__/index.test.tsx +0 -66
- package/Components/OfflineHandler/NotificationView/utils.ts +0 -34
- package/Components/Screen/utils.ts +0 -16
- /package/Components/BackgroundImage/{BackgroundImage.tv.android.tsx → BackgroundImage.android.tv.tsx} +0 -0
- /package/Components/BackgroundImage/{BackgroundImage.tv.ios.tsx → BackgroundImage.ios.tv.tsx} +0 -0
- /package/Components/MasterCell/DefaultComponents/ButtonContainerView/{index.tv.android.tsx → index.android.tv.tsx} +0 -0
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { render } from "@testing-library/react-native";
|
|
3
3
|
|
|
4
|
+
let mockContent = { title: null, summary: null };
|
|
5
|
+
|
|
6
|
+
// Read lazily inside the factory: `jest.mock` is hoisted above the `let` above,
|
|
7
|
+
// so capturing the value eagerly would freeze it at `undefined`.
|
|
8
|
+
jest.mock(
|
|
9
|
+
"@applicaster/zapp-react-native-utils/appUtils/playerManager/usePlayerContent",
|
|
10
|
+
() => ({ usePlayerContent: () => mockContent })
|
|
11
|
+
);
|
|
12
|
+
|
|
4
13
|
import { AudioPlayerTV } from "..";
|
|
5
14
|
|
|
6
15
|
jest.mock("@applicaster/zapp-react-native-utils/audioPlayerUtils", () => ({
|
|
@@ -51,7 +60,17 @@ const audioPlayerProps = {
|
|
|
51
60
|
|
|
52
61
|
describe("<AudioPlayerTV />", () => {
|
|
53
62
|
it("renders correctly", () => {
|
|
63
|
+
// AudioPlayerTV no longer resolves its own title/summary from
|
|
64
|
+
// audio_item - it reads them from the player manager's content channel.
|
|
65
|
+
// Publishing the same values `audio_item.title`/`.summary` used to resolve
|
|
66
|
+
// to keeps this snapshot byte-for-byte identical to before that change.
|
|
67
|
+
mockContent = {
|
|
68
|
+
title: audioPlayerProps.audio_item.title,
|
|
69
|
+
summary: audioPlayerProps.audio_item.summary,
|
|
70
|
+
};
|
|
71
|
+
|
|
54
72
|
const { toJSON } = render(<AudioPlayerTV {...audioPlayerProps} />);
|
|
73
|
+
|
|
55
74
|
expect(toJSON()).toMatchSnapshot();
|
|
56
75
|
});
|
|
57
76
|
});
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { render } from "@testing-library/react-native";
|
|
3
|
+
|
|
4
|
+
import { AudioPlayerTV } from "..";
|
|
5
|
+
|
|
6
|
+
jest.mock("@applicaster/zapp-react-native-utils/audioPlayerUtils", () => ({
|
|
7
|
+
useArtworkImage: jest.fn(() => "artwork_url"),
|
|
8
|
+
}));
|
|
9
|
+
|
|
10
|
+
let mockContent: {
|
|
11
|
+
title: Option<string | number>;
|
|
12
|
+
summary: Option<string | number>;
|
|
13
|
+
} = { title: null, summary: null };
|
|
14
|
+
|
|
15
|
+
// Read lazily inside the factory: `jest.mock` is hoisted above the `let`
|
|
16
|
+
// above, so capturing the value eagerly would freeze it at `undefined`.
|
|
17
|
+
jest.mock(
|
|
18
|
+
"@applicaster/zapp-react-native-utils/appUtils/playerManager/usePlayerContent",
|
|
19
|
+
() => ({ usePlayerContent: () => mockContent })
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
const baseAudioItem = {
|
|
23
|
+
title: "tittle",
|
|
24
|
+
summary: "Summary",
|
|
25
|
+
content: {
|
|
26
|
+
src: "https://example.com",
|
|
27
|
+
},
|
|
28
|
+
media_group: [
|
|
29
|
+
{
|
|
30
|
+
type: "audio",
|
|
31
|
+
media_item: [
|
|
32
|
+
{
|
|
33
|
+
type: "audio",
|
|
34
|
+
src: "https://example.com",
|
|
35
|
+
key: "base_code",
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
],
|
|
40
|
+
extensions: {
|
|
41
|
+
audio_player_artwork_aspect_ratio: "1:1",
|
|
42
|
+
audio_player_background_image: "https://example.com",
|
|
43
|
+
audio_player_background_color: "black",
|
|
44
|
+
audio_player_channel_icon: "https://example.com",
|
|
45
|
+
audio_player_title_color: "white",
|
|
46
|
+
audio_player_summary_color: "white",
|
|
47
|
+
audio_player_rtl: true,
|
|
48
|
+
start_time: "10:10",
|
|
49
|
+
end_time: "11:11",
|
|
50
|
+
episode_name: "Episode Custom Title",
|
|
51
|
+
episode_summary: "Episode Custom Summary",
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
const basePluginConfiguration = {
|
|
56
|
+
audio_player_background_color: "black",
|
|
57
|
+
audio_player_title_color: "white",
|
|
58
|
+
audio_player_summary_color: "white",
|
|
59
|
+
audio_player_rtl: true,
|
|
60
|
+
audio_player_background_image: "https://example.com",
|
|
61
|
+
audio_player_artwork_aspect_ratio: "1:1",
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
function renderAudioPlayer(
|
|
65
|
+
plugin_configuration,
|
|
66
|
+
content: {
|
|
67
|
+
title?: Option<string | number>;
|
|
68
|
+
summary?: Option<string | number>;
|
|
69
|
+
} = {}
|
|
70
|
+
) {
|
|
71
|
+
mockContent = {
|
|
72
|
+
title: content.title ?? null,
|
|
73
|
+
summary: content.summary ?? null,
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
return render(
|
|
77
|
+
<AudioPlayerTV
|
|
78
|
+
audio_item={baseAudioItem}
|
|
79
|
+
plugin_configuration={plugin_configuration}
|
|
80
|
+
style={{}}
|
|
81
|
+
/>
|
|
82
|
+
);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
describe("<AudioPlayerTV /> player content", () => {
|
|
86
|
+
it("renders the title and summary published by the player manager", () => {
|
|
87
|
+
const { getByText } = renderAudioPlayer(basePluginConfiguration, {
|
|
88
|
+
title: "Episode Custom Title",
|
|
89
|
+
summary: "Episode Custom Summary",
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
expect(getByText("Episode Custom Title")).toBeTruthy();
|
|
93
|
+
expect(getByText("Episode Custom Summary")).toBeTruthy();
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
it("renders nothing for title/summary when the player published neither", () => {
|
|
97
|
+
const { queryByText } = renderAudioPlayer(basePluginConfiguration);
|
|
98
|
+
|
|
99
|
+
expect(queryByText("tittle")).toBeNull();
|
|
100
|
+
expect(queryByText("Summary")).toBeNull();
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
it("renders blank rather than crashing when no player is active", () => {
|
|
104
|
+
// `usePlayerContent` returns `{ title: null, summary: null }` when there is
|
|
105
|
+
// no player. A regression here means AudioPlayerTV crashes instead of
|
|
106
|
+
// rendering blank.
|
|
107
|
+
mockContent = { title: null, summary: null };
|
|
108
|
+
|
|
109
|
+
const { queryByText } = render(
|
|
110
|
+
<AudioPlayerTV
|
|
111
|
+
audio_item={baseAudioItem}
|
|
112
|
+
plugin_configuration={basePluginConfiguration}
|
|
113
|
+
style={{}}
|
|
114
|
+
/>
|
|
115
|
+
);
|
|
116
|
+
|
|
117
|
+
expect(queryByText("tittle")).toBeNull();
|
|
118
|
+
expect(queryByText("Summary")).toBeNull();
|
|
119
|
+
});
|
|
120
|
+
});
|
|
@@ -3,6 +3,8 @@ import React, { useCallback, useMemo } from "react";
|
|
|
3
3
|
import { platformSelect } from "@applicaster/zapp-react-native-utils/reactUtils";
|
|
4
4
|
import { useArtworkImage } from "@applicaster/zapp-react-native-utils/audioPlayerUtils";
|
|
5
5
|
|
|
6
|
+
import { usePlayerContent } from "@applicaster/zapp-react-native-utils/appUtils/playerManager/usePlayerContent";
|
|
7
|
+
|
|
6
8
|
import { AudioPlayerTVLayout } from "./Layout";
|
|
7
9
|
|
|
8
10
|
import { Channel } from "./Channel";
|
|
@@ -15,10 +17,12 @@ import { Props } from "../types";
|
|
|
15
17
|
|
|
16
18
|
export function AudioPlayerTV(props: Props) {
|
|
17
19
|
const { audio_item, plugin_configuration, style = {} } = props;
|
|
18
|
-
const { extensions
|
|
20
|
+
const { extensions } = audio_item;
|
|
19
21
|
|
|
20
22
|
const artwork = useArtworkImage(audio_item);
|
|
21
23
|
|
|
24
|
+
const { title, summary } = usePlayerContent();
|
|
25
|
+
|
|
22
26
|
const getProp = useCallback(
|
|
23
27
|
getPropertyFromEntryOrConfig({
|
|
24
28
|
entry: audio_item,
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { StyleSheet, View } from "react-native";
|
|
3
|
+
|
|
4
|
+
const styles = StyleSheet.create({
|
|
5
|
+
row: { flexDirection: "row" },
|
|
6
|
+
basis: {
|
|
7
|
+
maxWidth: "100%",
|
|
8
|
+
flexBasis: "100%",
|
|
9
|
+
},
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
type Props = {
|
|
13
|
+
children: React.ReactNode;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Constrains its child to exactly the available parent width.
|
|
18
|
+
*
|
|
19
|
+
* UI components such as Hero and List render their items inside a parent
|
|
20
|
+
* `ScrollView` (e.g. when wrapped by tabs). A child placed directly in a
|
|
21
|
+
* scroll container can size itself to its own content rather than to the
|
|
22
|
+
* viewport, which causes items to be measured at a stale width and resize
|
|
23
|
+
* unexpectedly after layout changes such as device rotation.
|
|
24
|
+
*
|
|
25
|
+
* Wrapping the content in a `flexDirection: "row"` parent with a
|
|
26
|
+
* `flexBasis: "100%"` / `maxWidth: "100%"` child forces the child to
|
|
27
|
+
* re-derive its width from the parent on every layout pass instead of
|
|
28
|
+
* caching a measured pixel width, keeping it full-width and stable.
|
|
29
|
+
*
|
|
30
|
+
* @param children - The content to render at full parent width.
|
|
31
|
+
*/
|
|
32
|
+
export function FullWidthRow({ children }: Props) {
|
|
33
|
+
return (
|
|
34
|
+
<View style={styles.row}>
|
|
35
|
+
<View style={styles.basis}>{children}</View>
|
|
36
|
+
</View>
|
|
37
|
+
);
|
|
38
|
+
}
|