@applicaster/zapp-react-native-ui-components 15.0.0-rc.1 → 15.0.0-rc.100

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 (123) hide show
  1. package/Components/AnimatedInOut/index.tsx +69 -26
  2. package/Components/BaseFocusable/index.ios.ts +12 -2
  3. package/Components/Cell/Cell.tsx +14 -3
  4. package/Components/Cell/CellWithFocusable.tsx +9 -0
  5. package/Components/Cell/FocusableWrapper.tsx +47 -0
  6. package/Components/Cell/TvOSCellComponent.tsx +106 -19
  7. package/Components/Focusable/Focusable.tsx +4 -2
  8. package/Components/Focusable/FocusableTvOS.tsx +18 -1
  9. package/Components/Focusable/__tests__/__snapshots__/FocusableTvOS.test.tsx.snap +1 -0
  10. package/Components/FocusableGroup/FocusableTvOS.tsx +32 -1
  11. package/Components/GeneralContentScreen/utils/__tests__/useCurationAPI.test.js +1 -1
  12. package/Components/GeneralContentScreen/utils/useCurationAPI.ts +31 -17
  13. package/Components/HandlePlayable/HandlePlayable.tsx +17 -65
  14. package/Components/HandlePlayable/const.ts +3 -0
  15. package/Components/HandlePlayable/utils.ts +74 -0
  16. package/Components/Layout/TV/LayoutBackground.tsx +5 -2
  17. package/Components/Layout/TV/ScreenContainer.tsx +2 -6
  18. package/Components/Layout/TV/index.tsx +3 -4
  19. package/Components/Layout/TV/index.web.tsx +3 -4
  20. package/Components/LinkHandler/LinkHandler.tsx +2 -2
  21. package/Components/MasterCell/DefaultComponents/BorderContainerView/__tests__/index.test.tsx +16 -1
  22. package/Components/MasterCell/DefaultComponents/BorderContainerView/index.tsx +30 -2
  23. package/Components/MasterCell/DefaultComponents/Image/Image.android.tsx +5 -1
  24. package/Components/MasterCell/DefaultComponents/Image/Image.ios.tsx +11 -3
  25. package/Components/MasterCell/DefaultComponents/Image/Image.web.tsx +9 -1
  26. package/Components/MasterCell/DefaultComponents/Image/hooks/useImage.ts +15 -14
  27. package/Components/MasterCell/DefaultComponents/LiveImage/index.tsx +10 -6
  28. package/Components/MasterCell/DefaultComponents/SecondaryImage/Image.tsx +40 -39
  29. package/Components/MasterCell/DefaultComponents/SecondaryImage/__tests__/Image.test.tsx +95 -0
  30. package/Components/MasterCell/DefaultComponents/SecondaryImage/__tests__/__snapshots__/Image.test.tsx.snap +86 -0
  31. package/Components/MasterCell/DefaultComponents/SecondaryImage/__tests__/index.test.ts +141 -0
  32. package/Components/MasterCell/DefaultComponents/SecondaryImage/hooks/__tests__/useGetImageDimensions.test.ts +7 -6
  33. package/Components/MasterCell/DefaultComponents/SecondaryImage/index.ts +1 -1
  34. package/Components/MasterCell/DefaultComponents/Text/index.tsx +8 -8
  35. package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/index.ts +6 -2
  36. package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/utils/__tests__/getPluginIdentifier.test.ts +233 -11
  37. package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/utils/index.ts +19 -15
  38. package/Components/MasterCell/hoc/__tests__/withAsyncRender.test.tsx +219 -0
  39. package/Components/MasterCell/hoc/withAsyncRender.tsx +9 -7
  40. package/Components/MasterCell/index.tsx +2 -0
  41. package/Components/MasterCell/utils/__tests__/resolveColor.test.js +82 -3
  42. package/Components/MasterCell/utils/index.ts +61 -31
  43. package/Components/MeasurmentsPortal/MeasurementsPortal.tsx +102 -87
  44. package/Components/MeasurmentsPortal/__tests__/MeasurementsPortal.test.tsx +355 -0
  45. package/Components/OfflineHandler/NotificationView/NotificationView.lg.tsx +17 -9
  46. package/Components/OfflineHandler/NotificationView/NotificationView.samsung.tsx +16 -8
  47. package/Components/OfflineHandler/NotificationView/NotificationView.tsx +2 -2
  48. package/Components/OfflineHandler/NotificationView/__tests__/index.test.tsx +17 -18
  49. package/Components/OfflineHandler/NotificationView/utils.ts +34 -0
  50. package/Components/OfflineHandler/__tests__/index.test.tsx +27 -18
  51. package/Components/PlayerContainer/PlayerContainer.tsx +51 -55
  52. package/Components/PlayerContainer/useRestrictMobilePlayback.tsx +101 -0
  53. package/Components/PlayerImageBackground/index.tsx +3 -22
  54. package/Components/River/ComponentsMap/ComponentsMap.tsx +65 -42
  55. package/Components/River/ComponentsMap/ContextProviders/ComponentsMapHeightContext.ts +8 -0
  56. package/Components/River/ComponentsMap/ContextProviders/ComponentsMapRefContext.ts +8 -0
  57. package/Components/River/ComponentsMap/hooks/__tests__/useLoadingState.test.ts +1 -1
  58. package/Components/River/TV/River.tsx +31 -14
  59. package/Components/River/TV/index.tsx +8 -4
  60. package/Components/River/TV/utils/__tests__/toStringOrEmpty.test.ts +30 -0
  61. package/Components/River/TV/utils/index.ts +4 -0
  62. package/Components/River/TV/withFocusableGroupForContent.tsx +71 -0
  63. package/Components/River/__tests__/__snapshots__/componentsMap.test.js.snap +2 -0
  64. package/Components/River/__tests__/componentsMap.test.js +38 -0
  65. package/Components/Screen/TV/hooks/useInitialFocus.ts +14 -4
  66. package/Components/Screen/TV/index.web.tsx +4 -2
  67. package/Components/Screen/__tests__/Screen.test.tsx +65 -42
  68. package/Components/Screen/__tests__/__snapshots__/Screen.test.tsx.snap +68 -42
  69. package/Components/Screen/hooks.ts +2 -3
  70. package/Components/Screen/index.tsx +24 -8
  71. package/Components/Screen/navigationHandler.ts +49 -24
  72. package/Components/Screen/orientationHandler.ts +10 -13
  73. package/Components/ScreenResolver/index.tsx +21 -9
  74. package/Components/ScreenRevealManager/ScreenRevealManager.ts +40 -8
  75. package/Components/ScreenRevealManager/__tests__/ScreenRevealManager.test.ts +86 -69
  76. package/Components/ScreenRevealManager/utils/index.ts +23 -0
  77. package/Components/ScreenRevealManager/withScreenRevealManager.tsx +54 -24
  78. package/Components/Tabs/TV/Tabs.tsx +20 -3
  79. package/Components/Tabs/TabContent.tsx +7 -4
  80. package/Components/Transitioner/Scene.tsx +15 -2
  81. package/Components/Transitioner/index.js +3 -3
  82. package/Components/VideoLive/__tests__/__snapshots__/PlayerLiveImageComponent.test.tsx.snap +1 -0
  83. package/Components/VideoModal/ModalAnimation/ModalAnimationContext.tsx +118 -171
  84. package/Components/VideoModal/ModalAnimation/index.ts +2 -13
  85. package/Components/VideoModal/ModalAnimation/utils.ts +1 -327
  86. package/Components/VideoModal/PlayerDetails.tsx +5 -5
  87. package/Components/VideoModal/PlayerWrapper.tsx +14 -88
  88. package/Components/VideoModal/VideoModal.tsx +1 -5
  89. package/Components/VideoModal/__tests__/PlayerWrapper.test.tsx +1 -0
  90. package/Components/VideoModal/hooks/__tests__/useDelayedPlayerDetails.test.ts +15 -7
  91. package/Components/VideoModal/hooks/useModalSize.ts +10 -5
  92. package/Components/VideoModal/playerWrapperStyle.ts +70 -0
  93. package/Components/VideoModal/playerWrapperUtils.ts +91 -0
  94. package/Components/VideoModal/utils.ts +19 -9
  95. package/Components/Viewport/ViewportEvents/__tests__/viewportEvents.test.js +1 -1
  96. package/Components/ZappFrameworkComponents/BarView/BarView.tsx +4 -6
  97. package/Components/ZappFrameworkComponents/BarView/__tests__/BarView.test.tsx +2 -2
  98. package/Contexts/ScreenContext/index.tsx +25 -18
  99. package/Contexts/ScreenTrackedViewPositionsContext/__tests__/index.test.tsx +1 -1
  100. package/Contexts/ZappHookModalContext/index.tsx +37 -61
  101. package/Contexts/index.ts +0 -2
  102. package/Decorators/Analytics/index.tsx +6 -5
  103. package/Decorators/ConfigurationWrapper/__tests__/__snapshots__/withConfigurationProvider.test.tsx.snap +1 -0
  104. package/Decorators/ConfigurationWrapper/const.ts +1 -0
  105. package/Decorators/RiverFeedLoader/utils/getDatasourceUrl.ts +6 -10
  106. package/Decorators/ZappPipesDataConnector/__tests__/zappPipesDataConnector.test.js +1 -1
  107. package/Decorators/ZappPipesDataConnector/index.tsx +2 -2
  108. package/Decorators/ZappPipesDataConnector/resolvers/StaticFeedResolver.tsx +1 -1
  109. package/Helpers/DataSourceHelper/__tests__/itemLimitForData.test.ts +80 -0
  110. package/Helpers/DataSourceHelper/index.ts +19 -0
  111. package/events/index.ts +3 -0
  112. package/events/scrollEndReached.ts +15 -0
  113. package/index.d.ts +7 -0
  114. package/package.json +6 -5
  115. package/Components/River/TV/withTVEventHandler.tsx +0 -27
  116. package/Components/VideoModal/ModalAnimation/AnimatedPlayerModalWrapper.tsx +0 -60
  117. package/Components/VideoModal/ModalAnimation/AnimatedScrollModal.tsx +0 -415
  118. package/Components/VideoModal/ModalAnimation/AnimatedScrollModal.web.tsx +0 -294
  119. package/Components/VideoModal/ModalAnimation/AnimatedVideoPlayerComponent.tsx +0 -176
  120. package/Components/VideoModal/ModalAnimation/AnimatedVideoPlayerComponent.web.tsx +0 -93
  121. package/Components/VideoModal/ModalAnimation/AnimationComponent.tsx +0 -500
  122. package/Components/VideoModal/ModalAnimation/__tests__/getMoveUpValue.test.ts +0 -108
  123. package/Helpers/DataSourceHelper/index.js +0 -19
@@ -0,0 +1,71 @@
1
+ import * as React from "react";
2
+ import { View, StyleSheet } from "react-native";
3
+
4
+ import { FocusableGroup } from "@applicaster/zapp-react-native-ui-components/Components/FocusableGroup";
5
+ import { riverFocusManager } from "@applicaster/zapp-react-native-utils/appUtils/RiverFocusManager";
6
+
7
+ import { topMenuLayoutChange$ } from "@applicaster/zapp-react-native-tvos-app/Layout/topMenu";
8
+
9
+ const styles = StyleSheet.create({
10
+ flexOne: {
11
+ flex: 1,
12
+ },
13
+ });
14
+
15
+ export const withFocusableGroupForContent = (Component) => {
16
+ return function WithFocusableGroupForContent(props) {
17
+ const { screenId, isInsideContainer } = props;
18
+
19
+ const [topMenuHeight, setTopMenuHeight] = React.useState(0);
20
+
21
+ React.useEffect(() => {
22
+ const subscription = topMenuLayoutChange$.subscribe((layout) => {
23
+ setTopMenuHeight(layout.height);
24
+ });
25
+
26
+ return () => {
27
+ subscription.unsubscribe();
28
+ };
29
+ }, []);
30
+
31
+ const focusableId = React.useMemo(
32
+ () =>
33
+ riverFocusManager.screenFocusableGroupId({
34
+ screenId,
35
+ isInsideContainer,
36
+ }),
37
+ [screenId, isInsideContainer]
38
+ );
39
+
40
+ if (isInsideContainer) {
41
+ return <Component {...props} />;
42
+ }
43
+
44
+ return (
45
+ <FocusableGroup
46
+ key={focusableId}
47
+ id={focusableId}
48
+ // The top menu is rendered in its own FocusableGroup, anchored at the top of the screen.
49
+ // When the "content" FocusableGroup starts at y = 0 as well, the two groups visually overlap.
50
+ // On TvOS platform this overlap can confuse the focus engine, because the focusable bounds of
51
+ // the top-menu group and the content group intersect, leading to erratic navigation between
52
+ // the menu and the content (e.g. unexpected jumps or focus getting "stuck").
53
+ //
54
+ // To avoid this, we shift the entire content FocusableGroup down by the dynamic top menu
55
+ // height (marginTop: topMenuHeight). This separates the focus regions of the two groups in
56
+ // focus space, so they no longer intersect.
57
+ //
58
+ // The inner <View> below then applies the inverse margin (marginTop: -topMenuHeight) so that
59
+ // the actual visual position of the content on screen does not change; only the focusable
60
+ // bounds of the outer group are offset.
61
+ style={[styles.flexOne, { marginTop: topMenuHeight }]}
62
+ // this group does not have parent
63
+ groupId={undefined}
64
+ >
65
+ <View style={[styles.flexOne, { marginTop: -1 * topMenuHeight }]}>
66
+ <Component {...props} groupId={focusableId} />
67
+ </View>
68
+ </FocusableGroup>
69
+ );
70
+ };
71
+ };
@@ -137,6 +137,7 @@ exports[`componentsMap renders renders components map correctly 1`] = `
137
137
  keyExtractor={[Function]}
138
138
  maxToRenderPerBatch={10}
139
139
  onContentSizeChange={[Function]}
140
+ onEndReached={[Function]}
140
141
  onLayout={[Function]}
141
142
  onMomentumScrollBegin={[Function]}
142
143
  onMomentumScrollEnd={[Function]}
@@ -154,6 +155,7 @@ exports[`componentsMap renders renders components map correctly 1`] = `
154
155
  }
155
156
  }
156
157
  stickyHeaderIndices={[]}
158
+ testID="components-map-flat-list"
157
159
  viewabilityConfigCallbackPairs={[]}
158
160
  windowSize={12}
159
161
  >
@@ -139,7 +139,13 @@ jest.mock(
139
139
  })
140
140
  );
141
141
 
142
+ jest.mock("@applicaster/zapp-react-native-ui-components/events", () => ({
143
+ ...jest.requireActual("@applicaster/zapp-react-native-ui-components/events"),
144
+ emitScrollEndReached: jest.fn(),
145
+ }));
146
+
142
147
  const { View } = require("react-native");
148
+ const events = require("@applicaster/zapp-react-native-ui-components/events");
143
149
  const { ComponentsMap } = require("../ComponentsMap/ComponentsMap");
144
150
  const theme = require("./theme-mock.json");
145
151
 
@@ -190,4 +196,36 @@ describe("componentsMap", () => {
190
196
 
191
197
  expect(toJSON()).toMatchSnapshot();
192
198
  });
199
+
200
+ it("calls emitScrollEndReached when onScroll was called and isScreenWrappedInContainer is false", () => {
201
+ themeSpy = jest
202
+ .spyOn(themeUtils, "useTheme")
203
+ .mockImplementation(() => () => theme);
204
+
205
+ events.emitScrollEndReached.mockClear();
206
+
207
+ const { getByTestId } = render(
208
+ <Provider store={store}>
209
+ <ComponentsMap
210
+ {...props}
211
+ isScreenWrappedInContainer={false}
212
+ feed={{ entry: [] }}
213
+ />
214
+ </Provider>
215
+ );
216
+
217
+ const flatList = getByTestId("components-map-flat-list");
218
+
219
+ flatList.props.onScroll({
220
+ nativeEvent: {
221
+ contentOffset: { y: 0 },
222
+ layoutMeasurement: { height: 100 },
223
+ contentSize: { height: 200 },
224
+ },
225
+ });
226
+
227
+ flatList.props.onEndReached();
228
+
229
+ expect(events.emitScrollEndReached).toHaveBeenCalledTimes(1);
230
+ });
193
231
  });
@@ -10,6 +10,8 @@ import {
10
10
  setFocusOnMenu,
11
11
  } from "@applicaster/zapp-react-native-utils/appUtils/focusManagerAux";
12
12
 
13
+ import { waitUntilScreenRevealManagerIsReady } from "@applicaster/zapp-react-native-ui-components/Components/ScreenRevealManager/utils";
14
+
13
15
  type Return =
14
16
  | {
15
17
  onContent: true;
@@ -57,14 +59,22 @@ export const useInitialFocus = (): void => {
57
59
  React.useEffect(() => {
58
60
  const initialFocus = getInitialFocus(focusOnContent, isNavBarVisible);
59
61
 
60
- if (initialFocus.onContent) {
61
- setFocusOnContent(currentRoute);
62
+ if (initialFocus.onMenu) {
63
+ setFocusOnMenu(currentRoute);
62
64
 
63
65
  return;
64
66
  }
65
67
 
66
- if (initialFocus.onMenu) {
67
- setFocusOnMenu(currentRoute);
68
+ if (initialFocus.onContent) {
69
+ const subscription = waitUntilScreenRevealManagerIsReady().subscribe(
70
+ () => {
71
+ setFocusOnContent(currentRoute);
72
+ }
73
+ );
74
+
75
+ return () => {
76
+ subscription.unsubscribe();
77
+ };
68
78
  }
69
79
  }, []);
70
80
  };
@@ -9,9 +9,10 @@ import {
9
9
  import {
10
10
  useIsScreenActive,
11
11
  useNavigation,
12
+ useRivers,
12
13
  } from "@applicaster/zapp-react-native-utils/reactHooks";
13
14
  import { noop } from "@applicaster/zapp-react-native-utils/functionUtils";
14
- import { usePickFromState } from "@applicaster/zapp-react-native-redux/hooks";
15
+ import { usePlugins } from "@applicaster/zapp-react-native-redux/hooks";
15
16
  import {
16
17
  useNavbarState,
17
18
  useScreenBackgroundColor,
@@ -102,7 +103,8 @@ export const Screen = ({ route, Components }: Props) => {
102
103
  }
103
104
 
104
105
  const navigator = useNavigation();
105
- const { plugins = [], rivers = [] } = usePickFromState(["plugins", "rivers"]);
106
+ const plugins = usePlugins();
107
+ const rivers = useRivers();
106
108
 
107
109
  const pathAttributes = getPathAttributes({ pathname: route });
108
110
  const routeState = navigator.getStackForPathname(route);
@@ -1,18 +1,15 @@
1
1
  import * as React from "react";
2
2
  import { View } from "react-native";
3
- import { render } from "@testing-library/react-native";
3
+ import { renderWithProviders } from "@applicaster/zapp-react-native-utils/testUtils";
4
4
 
5
5
  const Mocked_RouteManager = jest.fn((props) => (
6
6
  <View testID="routeManager" {...props} />
7
7
  ));
8
8
 
9
- const mock_navBarVisibleFlag = true;
10
-
11
- const mockIsNavBarVisible = jest.fn(() => mock_navBarVisibleFlag);
12
-
13
9
  const mockIsOrientationCompatible = jest.fn(() => true);
14
10
 
15
11
  jest.mock("react-native-safe-area-context", () => ({
12
+ ...jest.requireActual("react-native-safe-area-context"),
16
13
  useSafeAreaInsets: () => ({ top: 44 }),
17
14
  }));
18
15
 
@@ -35,12 +32,14 @@ jest.mock(
35
32
  );
36
33
 
37
34
  jest.mock("@applicaster/zapp-react-native-utils/analyticsUtils", () => ({
35
+ ...jest.requireActual("@applicaster/zapp-react-native-utils/analyticsUtils"),
38
36
  useAnalytics: jest.fn(() => ({
39
37
  sendScreenEvent: jest.fn(),
40
38
  })),
41
39
  }));
42
40
 
43
41
  jest.mock("@applicaster/zapp-react-native-utils/theme", () => ({
42
+ ...jest.requireActual("@applicaster/zapp-react-native-utils/theme"),
44
43
  useTheme: jest.fn(() => ({
45
44
  app_background_color: "blue",
46
45
  })),
@@ -77,21 +76,44 @@ jest.mock(
77
76
  })
78
77
  );
79
78
 
80
- jest.mock("@applicaster/zapp-react-native-utils/reactHooks/navigation", () => ({
81
- isNavBarVisible: mockIsNavBarVisible,
82
- useIsScreenActive: jest.fn().mockReturnValue(true),
83
- useNavigation: jest.fn(() => ({
84
- canGoBack: () => false,
85
- currentRoute: "/river/testId",
86
- activeRiver: { id: "testId" },
87
- screenData: { id: "testId" },
88
- data: { screen: { id: "testId" } },
89
- })),
90
- useRoute: jest.fn(() => ({
91
- pathname: "/river/testId",
92
- screenData: { id: "testId" },
93
- })),
94
- }));
79
+ jest.mock(
80
+ "@applicaster/zapp-react-native-utils/reactHooks/navigation/useNavigation",
81
+ () => ({
82
+ ...jest.requireActual(
83
+ "@applicaster/zapp-react-native-utils/reactHooks/navigation/useNavigation"
84
+ ),
85
+ useNavigation: jest.fn(() => ({
86
+ canGoBack: () => false,
87
+ currentRoute: "/river/testId",
88
+ activeRiver: { id: "testId" },
89
+ screenData: { id: "testId" },
90
+ data: { screen: { id: "testId" } },
91
+ })),
92
+ })
93
+ );
94
+
95
+ jest.mock(
96
+ "@applicaster/zapp-react-native-utils/reactHooks/navigation/useIsScreenActive",
97
+ () => ({
98
+ ...jest.requireActual(
99
+ "@applicaster/zapp-react-native-utils/reactHooks/navigation/useIsScreenActive"
100
+ ),
101
+ useIsScreenActive: jest.fn().mockReturnValue(true),
102
+ })
103
+ );
104
+
105
+ jest.mock(
106
+ "@applicaster/zapp-react-native-utils/reactHooks/navigation/useRoute",
107
+ () => ({
108
+ ...jest.requireActual(
109
+ "@applicaster/zapp-react-native-utils/reactHooks/navigation/useRoute"
110
+ ),
111
+ useRoute: jest.fn(() => ({
112
+ pathname: "/river/testId",
113
+ screenData: { id: "testId" },
114
+ })),
115
+ })
116
+ );
95
117
 
96
118
  jest.mock("@applicaster/zapp-react-native-utils/reactHooks", () => ({
97
119
  ...jest.requireActual("@applicaster/zapp-react-native-utils/reactHooks"),
@@ -112,26 +134,6 @@ jest.mock("@applicaster/zapp-react-native-utils/reactHooks", () => ({
112
134
  useIsTablet: jest.fn(() => false),
113
135
  }));
114
136
 
115
- jest.mock("@applicaster/zapp-react-native-redux/hooks", () => {
116
- const View = jest.requireActual("react-native").View;
117
-
118
- return {
119
- ...jest.requireActual("@applicaster/zapp-react-native-redux/hooks"),
120
- usePickFromState: () => ({
121
- plugins: [
122
- {
123
- name: "Offline Plugin",
124
- identifier: "offline-experience",
125
- type: "general",
126
- module: {
127
- OfflineFallbackScreen: ({ children }) => <View>{children}</View>, // eslint-disable-line
128
- },
129
- },
130
- ],
131
- }),
132
- };
133
- });
134
-
135
137
  const {
136
138
  allowedOrientationsForScreen,
137
139
  getOrientation,
@@ -151,6 +153,19 @@ const screenProps = {
151
153
 
152
154
  const { Screen } = require("..");
153
155
 
156
+ const store = {
157
+ plugins: [
158
+ {
159
+ name: "Offline Plugin",
160
+ identifier: "offline-experience",
161
+ type: "general",
162
+ module: {
163
+ OfflineFallbackScreen: ({ children }) => <View>{children}</View>, // eslint-disable-line
164
+ },
165
+ },
166
+ ],
167
+ };
168
+
154
169
  describe("<Screen Component />", () => {
155
170
  beforeEach(() => {
156
171
  allowedOrientationsForScreen.mockClear();
@@ -160,14 +175,22 @@ describe("<Screen Component />", () => {
160
175
 
161
176
  describe("when the navbar should show", () => {
162
177
  it("renders correctly", () => {
163
- const { toJSON } = render(<Screen {...screenProps} />);
178
+ const { toJSON } = renderWithProviders(
179
+ <Screen {...screenProps} />,
180
+ store
181
+ );
182
+
164
183
  expect(toJSON()).toMatchSnapshot();
165
184
  });
166
185
  });
167
186
 
168
187
  describe("when the navbar should be hidden", () => {
169
188
  it("renders correctly", () => {
170
- const { toJSON } = render(<Screen {...screenProps} />);
189
+ const { toJSON } = renderWithProviders(
190
+ <Screen {...screenProps} />,
191
+ store
192
+ );
193
+
171
194
  expect(toJSON()).toMatchSnapshot();
172
195
  });
173
196
  });
@@ -1,65 +1,91 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`<Screen Component /> when the navbar should be hidden renders correctly 1`] = `
4
- <View
4
+ <RNCSafeAreaProvider
5
+ onInsetsChange={[Function]}
5
6
  style={
6
- {
7
- "backgroundColor": "blue",
8
- "flex": 1,
9
- "paddingTop": 0,
10
- }
7
+ [
8
+ {
9
+ "flex": 1,
10
+ },
11
+ undefined,
12
+ ]
11
13
  }
12
14
  >
13
15
  <View
14
- hasMenu={false}
15
- id="/river/testId"
16
- pathname="/river/testId"
17
- selected="testId"
18
- testID="navBar"
19
- title="Test Title"
20
- />
21
- <View>
16
+ importantForAccessibility="yes"
17
+ style={
18
+ {
19
+ "backgroundColor": "blue",
20
+ "flex": 1,
21
+ "paddingTop": 0,
22
+ }
23
+ }
24
+ >
22
25
  <View
26
+ hasMenu={false}
27
+ id="/river/testId"
23
28
  pathname="/river/testId"
24
- screenData={
25
- {
26
- "id": "testId",
27
- }
28
- }
29
- testID="routeManager"
29
+ selected="testId"
30
+ testID="navBar"
31
+ title="Test Title"
30
32
  />
33
+ <View>
34
+ <View
35
+ pathname="/river/testId"
36
+ screenData={
37
+ {
38
+ "id": "testId",
39
+ }
40
+ }
41
+ testID="routeManager"
42
+ />
43
+ </View>
31
44
  </View>
32
- </View>
45
+ </RNCSafeAreaProvider>
33
46
  `;
34
47
 
35
48
  exports[`<Screen Component /> when the navbar should show renders correctly 1`] = `
36
- <View
49
+ <RNCSafeAreaProvider
50
+ onInsetsChange={[Function]}
37
51
  style={
38
- {
39
- "backgroundColor": "blue",
40
- "flex": 1,
41
- "paddingTop": 0,
42
- }
52
+ [
53
+ {
54
+ "flex": 1,
55
+ },
56
+ undefined,
57
+ ]
43
58
  }
44
59
  >
45
60
  <View
46
- hasMenu={false}
47
- id="/river/testId"
48
- pathname="/river/testId"
49
- selected="testId"
50
- testID="navBar"
51
- title="Test Title"
52
- />
53
- <View>
61
+ importantForAccessibility="yes"
62
+ style={
63
+ {
64
+ "backgroundColor": "blue",
65
+ "flex": 1,
66
+ "paddingTop": 0,
67
+ }
68
+ }
69
+ >
54
70
  <View
71
+ hasMenu={false}
72
+ id="/river/testId"
55
73
  pathname="/river/testId"
56
- screenData={
57
- {
58
- "id": "testId",
59
- }
60
- }
61
- testID="routeManager"
74
+ selected="testId"
75
+ testID="navBar"
76
+ title="Test Title"
62
77
  />
78
+ <View>
79
+ <View
80
+ pathname="/river/testId"
81
+ screenData={
82
+ {
83
+ "id": "testId",
84
+ }
85
+ }
86
+ testID="routeManager"
87
+ />
88
+ </View>
63
89
  </View>
64
- </View>
90
+ </RNCSafeAreaProvider>
65
91
  `;
@@ -1,4 +1,4 @@
1
- import { usePickFromState } from "@applicaster/zapp-react-native-redux/hooks";
1
+ import { useAppData } from "@applicaster/zapp-react-native-redux/hooks";
2
2
  import {
3
3
  useGetScreenOrientation,
4
4
  isOrientationCompatible,
@@ -25,8 +25,7 @@ export const useWaitForValidOrientation = () => {
25
25
 
26
26
  const isTablet = useIsTablet();
27
27
 
28
- const { appData } = usePickFromState(["appData"]);
29
- const isTabletPortrait = appData?.isTabletPortrait;
28
+ const { isTabletPortrait } = useAppData();
30
29
 
31
30
  const layoutData = useMemo(
32
31
  () => ({ isTablet, isTabletPortrait, width: screenWidth, height }),
@@ -1,8 +1,7 @@
1
1
  /// <reference types="@applicaster/applicaster-types" />
2
2
  import React from "react";
3
- import { View } from "react-native";
4
- import { usePickFromState } from "@applicaster/zapp-react-native-redux/hooks";
5
-
3
+ import { AccessibilityInfo, findNodeHandle, View } from "react-native";
4
+ import { usePlugins } from "@applicaster/zapp-react-native-redux/hooks";
6
5
  import { useTheme } from "@applicaster/zapp-react-native-utils/theme";
7
6
  import { getComponentModule } from "@applicaster/zapp-react-native-utils/pluginUtils";
8
7
  import {
@@ -12,6 +11,7 @@ import {
12
11
  } from "@applicaster/zapp-react-native-utils/navigationUtils";
13
12
  import {
14
13
  useCurrentScreenData,
14
+ useIsScreenActive,
15
15
  useNavbarState,
16
16
  useNavigation,
17
17
  useRoute,
@@ -40,7 +40,7 @@ type Props = {
40
40
  export function Screen(_props: Props) {
41
41
  const theme = useTheme<BaseThemePropertiesMobile>();
42
42
  const navigation = useNavigation();
43
- const { plugins } = usePickFromState(["plugins"]);
43
+ const plugins = usePlugins();
44
44
 
45
45
  // Gets the data for the current screen configuration
46
46
  const currentScreenData = useCurrentScreenData();
@@ -57,8 +57,8 @@ export function Screen(_props: Props) {
57
57
  const hasMenu = shouldNavBarDisplayMenu(currentRiver, plugins);
58
58
 
59
59
  const navBarProps = React.useMemo<MobileNavBarPluginProps | null>(
60
- getNavBarProps(currentRiver, pathname, title),
61
- [currentRiver, pathname]
60
+ () => getNavBarProps(currentRiver, pathname, title),
61
+ [currentRiver, pathname, title]
62
62
  );
63
63
 
64
64
  const NavBar = React.useMemo(
@@ -89,13 +89,29 @@ export function Screen(_props: Props) {
89
89
  [theme.app_background_color, backgroundColor]
90
90
  );
91
91
 
92
- // Set ready state when screen is rotated to desired orientation
92
+ const isActive = useIsScreenActive();
93
+
94
+ const ref = React.useRef(null);
93
95
  const isReady = useWaitForValidOrientation();
94
96
 
97
+ React.useEffect(() => {
98
+ if (ref.current && isActive && isReady) {
99
+ const nodeHandle = findNodeHandle(ref.current);
100
+
101
+ if (nodeHandle != null) {
102
+ AccessibilityInfo.setAccessibilityFocus(nodeHandle);
103
+ }
104
+ }
105
+ }, [isActive, isReady]);
106
+
95
107
  // We prevent rendering of the screen until UI is actually rotated to screen desired orientation.
96
108
  // This saves unnecessary re-renders and user will not see distorted aspect screen.
97
109
  return (
98
- <View style={style}>
110
+ <View
111
+ ref={ref}
112
+ style={style}
113
+ importantForAccessibility={!isActive ? "no-hide-descendants" : "yes"}
114
+ >
99
115
  {isReady ? (
100
116
  <>
101
117
  {navBarProps ? <NavBar {...navBarProps} hasMenu={hasMenu} /> : null}
@@ -1,35 +1,19 @@
1
1
  import { resolveNavigationPlugin } from "@applicaster/zapp-react-native-utils/navigationUtils";
2
2
 
3
- /**
4
- * This function helps to decide wether the menu should be presented on the screen
5
- * based on route and / or screen Data
6
- *
7
- * is similar to the navbar, except that it covers scenarios where only the navbar (and not)
8
- * the menu, will be hidden
9
- *
10
- * - playable screens
11
- * - qb_search_screen
12
- * - screen hooks that specify showNavBar or presentFullScreen
13
- * - screens or nested screens that have allow_screen_plugin_presentation set to true
14
- *
15
- * @param {String} route current route of the screen
16
- * @param {Object} screenData payload associated with the currently presented screen
17
- * @returns {Boolean}
18
- */
19
- export function isMenuVisible(route, screenData, plugins) {
20
- const plugin = resolveNavigationPlugin({
3
+ export const BOTTOM_TABS_PLUGIN_ID = "quick-brick-bottom-tabs";
4
+
5
+ export const SIDE_MENU_PLUGIN_ID = "quick_brick_side_menu";
6
+
7
+ export function getMenuPlugin(screenData, plugins) {
8
+ return resolveNavigationPlugin({
21
9
  category: "menu",
22
10
  navigations:
23
11
  screenData?.navigations || screenData?.targetScreen?.navigations,
24
12
  plugins,
25
13
  });
14
+ }
26
15
 
27
- const isBottomTabsPlugin = plugin?.identifier === "quick-brick-bottom-tabs";
28
-
29
- if (!isBottomTabsPlugin) {
30
- return false;
31
- }
32
-
16
+ function shouldShowNavigation(route, screenData) {
33
17
  if (route.includes("playable")) {
34
18
  return false;
35
19
  }
@@ -56,3 +40,44 @@ export function isMenuVisible(route, screenData, plugins) {
56
40
 
57
41
  return true;
58
42
  }
43
+
44
+ /**
45
+ * This function helps to decide whether the menu should be presented on the screen
46
+ * based on route and / or screen Data
47
+ *
48
+ * is similar to the navbar, except that it covers scenarios where only the navbar (and not)
49
+ * the menu will be hidden
50
+ *
51
+ * - playable screens
52
+ * - qb_search_screen
53
+ * - screen hooks that specify showNavBar or presentFullScreen
54
+ * - screens or nested screens that have allow_screen_plugin_presentation set to true
55
+ *
56
+ * @param {String} route current route of the screen
57
+ * @param {Object} screenData payload associated with the currently presented screen
58
+ * @returns {Boolean}
59
+ */
60
+ export function isMenuVisible(route, screenData, plugins) {
61
+ const plugin = getMenuPlugin(screenData, plugins);
62
+
63
+ const isBottomTabsPlugin = plugin?.identifier === BOTTOM_TABS_PLUGIN_ID;
64
+ const isSideMenuPlugin = plugin?.identifier === SIDE_MENU_PLUGIN_ID;
65
+
66
+ if (!isBottomTabsPlugin && !isSideMenuPlugin) {
67
+ return false;
68
+ }
69
+
70
+ return shouldShowNavigation(route, screenData);
71
+ }
72
+
73
+ export function isBottomTabVisible(route, screenData, plugins) {
74
+ const plugin = getMenuPlugin(screenData, plugins);
75
+
76
+ const isBottomTabsPlugin = plugin?.identifier === BOTTOM_TABS_PLUGIN_ID;
77
+
78
+ if (!isBottomTabsPlugin) {
79
+ return false;
80
+ }
81
+
82
+ return shouldShowNavigation(route, screenData);
83
+ }