@applicaster/zapp-react-native-utils 14.0.0-alpha.5071825192 → 14.0.0-alpha.5219335081

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 (91) hide show
  1. package/actionsExecutor/ActionExecutorContext.tsx +1 -1
  2. package/analyticsUtils/AnalyticsEvents/helper.ts +81 -0
  3. package/analyticsUtils/AnalyticsEvents/sendHeaderClickEvent.ts +1 -1
  4. package/analyticsUtils/AnalyticsEvents/sendMenuClickEvent.ts +2 -1
  5. package/analyticsUtils/AnalyticsEvents/sendOnClickEvent.ts +14 -4
  6. package/analyticsUtils/__tests__/analyticsUtils.test.js +14 -0
  7. package/analyticsUtils/events.ts +8 -0
  8. package/analyticsUtils/index.tsx +3 -4
  9. package/analyticsUtils/manager.ts +1 -1
  10. package/appUtils/HooksManager/Hook.ts +4 -4
  11. package/appUtils/HooksManager/index.ts +11 -1
  12. package/appUtils/accessibilityManager/index.ts +5 -5
  13. package/appUtils/focusManager/__tests__/__snapshots__/focusManager.test.js.snap +3 -0
  14. package/appUtils/focusManager/__tests__/focusManager.test.js +1 -1
  15. package/appUtils/focusManager/index.ts +73 -11
  16. package/appUtils/focusManager/treeDataStructure/Tree/index.js +1 -1
  17. package/appUtils/focusManagerAux/utils/index.ts +90 -3
  18. package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +0 -15
  19. package/appUtils/playerManager/useChapterMarker.tsx +0 -1
  20. package/appUtils/playerManager/usePlayerControllerSetup.tsx +16 -0
  21. package/arrayUtils/__tests__/isEmptyArray.test.ts +63 -0
  22. package/arrayUtils/__tests__/isFilledArray.test.ts +1 -1
  23. package/arrayUtils/index.ts +8 -3
  24. package/audioPlayerUtils/__tests__/getArtworkImage.test.ts +144 -0
  25. package/audioPlayerUtils/__tests__/getBackgroundImage.test.ts +72 -0
  26. package/audioPlayerUtils/__tests__/getImageFromEntry.test.ts +110 -0
  27. package/audioPlayerUtils/assets/index.ts +2 -0
  28. package/audioPlayerUtils/index.ts +242 -0
  29. package/componentsUtils/__tests__/isTabsScreen.test.ts +38 -0
  30. package/componentsUtils/index.ts +4 -1
  31. package/conf/player/__tests__/selectors.test.ts +34 -0
  32. package/conf/player/selectors.ts +10 -0
  33. package/configurationUtils/__tests__/configurationUtils.test.js +0 -31
  34. package/configurationUtils/__tests__/getMediaItems.test.ts +65 -0
  35. package/configurationUtils/__tests__/imageSrcFromMediaItem.test.ts +34 -0
  36. package/configurationUtils/__tests__/manifestKeyParser.test.ts +547 -0
  37. package/configurationUtils/index.ts +63 -34
  38. package/configurationUtils/manifestKeyParser.ts +57 -32
  39. package/focusManager/FocusManager.ts +26 -16
  40. package/focusManager/Tree.ts +25 -21
  41. package/focusManager/__tests__/FocusManager.test.ts +50 -8
  42. package/index.d.ts +0 -9
  43. package/manifestUtils/_internals/getDefaultConfiguration.js +28 -0
  44. package/manifestUtils/{_internals.js → _internals/index.js} +2 -25
  45. package/manifestUtils/createConfig.js +4 -1
  46. package/manifestUtils/defaultManifestConfigurations/player.js +1239 -200
  47. package/manifestUtils/progressBar/__tests__/mobileProgressBar.test.js +0 -30
  48. package/navigationUtils/__tests__/mapContentTypesToRivers.test.ts +130 -0
  49. package/navigationUtils/index.ts +6 -4
  50. package/package.json +2 -3
  51. package/playerUtils/__tests__/configurationUtils.test.ts +1 -65
  52. package/playerUtils/__tests__/getPlayerActionButtons.test.ts +54 -0
  53. package/playerUtils/_internals/__tests__/utils.test.ts +71 -0
  54. package/playerUtils/_internals/index.ts +1 -0
  55. package/playerUtils/_internals/utils.ts +31 -0
  56. package/playerUtils/configurationUtils.ts +0 -44
  57. package/playerUtils/getPlayerActionButtons.ts +17 -0
  58. package/playerUtils/index.ts +53 -0
  59. package/playerUtils/useValidatePlayerConfig.tsx +22 -19
  60. package/reactHooks/autoscrolling/__tests__/useTrackedView.test.tsx +15 -14
  61. package/reactHooks/feed/__tests__/useBatchLoading.test.tsx +39 -88
  62. package/reactHooks/feed/useBatchLoading.ts +11 -9
  63. package/reactHooks/feed/useFeedLoader.tsx +12 -8
  64. package/reactHooks/feed/usePipesCacheReset.ts +3 -3
  65. package/reactHooks/flatList/useSequentialRenderItem.tsx +3 -3
  66. package/reactHooks/layout/__tests__/index.test.tsx +3 -1
  67. package/reactHooks/layout/isTablet/index.ts +12 -5
  68. package/reactHooks/layout/useDimensions/__tests__/useDimensions.test.ts +34 -36
  69. package/reactHooks/layout/useDimensions/useDimensions.ts +2 -3
  70. package/reactHooks/layout/useLayoutVersion.ts +5 -5
  71. package/reactHooks/navigation/index.ts +7 -5
  72. package/reactHooks/navigation/useIsScreenActive.ts +9 -5
  73. package/reactHooks/resolvers/__tests__/useCellResolver.test.tsx +4 -0
  74. package/reactHooks/screen/useScreenContext.ts +1 -1
  75. package/reactHooks/state/__tests__/ZStoreProvider.test.tsx +2 -1
  76. package/reactHooks/state/index.ts +7 -1
  77. package/reactHooks/state/useHomeRiver.ts +35 -2
  78. package/reactHooks/state/useRivers.ts +7 -8
  79. package/riverComponetsMeasurementProvider/index.tsx +1 -1
  80. package/screenPickerUtils/index.ts +10 -0
  81. package/services/js2native.ts +1 -0
  82. package/testUtils/index.tsx +7 -8
  83. package/time/BackgroundTimer.ts +6 -4
  84. package/utils/__tests__/find.test.ts +36 -0
  85. package/utils/__tests__/pathOr.test.ts +37 -0
  86. package/utils/__tests__/startsWith.test.ts +30 -0
  87. package/utils/find.ts +3 -0
  88. package/utils/index.ts +24 -1
  89. package/utils/pathOr.ts +5 -0
  90. package/utils/startsWith.ts +9 -0
  91. package/playerUtils/configurationGenerator.ts +0 -2572
@@ -25,7 +25,7 @@ import {
25
25
  resolveObjectValues,
26
26
  } from "../appUtils/contextKeysManager/contextResolver";
27
27
  import { useNavigation } from "../reactHooks";
28
- import { get } from "lodash";
28
+ import { get } from "../utils";
29
29
 
30
30
  import {
31
31
  useContentTypes,
@@ -4,9 +4,12 @@ import {
4
4
  ANALYTICS_COMPONENT_EVENTS,
5
5
  ANALYTICS_CORE_EVENTS,
6
6
  ANALYTICS_ENTRY_EVENTS,
7
+ ANALYTICS_PREFERENCES_EVENTS,
7
8
  DOWNLOADS_EVENTS,
8
9
  } from "../events";
9
10
  import { isEmptyOrNil } from "../../cellUtils";
11
+ import { get } from "lodash";
12
+ import { StorageMultiSelectProvider } from "@applicaster/zapp-react-native-bridge/ZappStorage/StorageMultiSelectProvider";
10
13
 
11
14
  export enum OfflineItemState {
12
15
  notExist = "NOT_EXISTS",
@@ -102,6 +105,84 @@ export function eventForComponent(
102
105
  return analyticsProps;
103
106
  }
104
107
 
108
+ /**
109
+ * Checks if an item is currently selected in localStorage based on its actions
110
+ * @param item - The item to check
111
+ * @returns boolean indicating if the item is currently selected
112
+ */
113
+ function isItemPreviouslySelected(item: any): boolean {
114
+ const actions = item?.extensions?.tap_actions?.actions;
115
+
116
+ if (!actions) {
117
+ return false;
118
+ }
119
+
120
+ const localStorageAction = actions.find(
121
+ (action) => action?.type === "localStorageToggleFlag"
122
+ );
123
+
124
+ if (!localStorageAction?.options?.key) {
125
+ return false;
126
+ }
127
+
128
+ const keyNamespace = localStorageAction.options.key;
129
+
130
+ const tag = localStorageAction.options?.selector
131
+ ? get(item, localStorageAction.options.selector)
132
+ : (item.extensions?.tag ?? item.id);
133
+
134
+ if (!tag) {
135
+ return false;
136
+ }
137
+
138
+ try {
139
+ const multiSelectProvider =
140
+ StorageMultiSelectProvider.getProvider(keyNamespace);
141
+
142
+ const selectedItems = multiSelectProvider.getSelectedItems();
143
+
144
+ return selectedItems.includes(tag);
145
+ } catch (error) {
146
+ return false;
147
+ }
148
+ }
149
+
150
+ export function getLocalStorageSetPayload(extraProps) {
151
+ const { item } = extraProps;
152
+
153
+ const hasLocalStorageSetAction = item?.extensions?.tap_actions?.actions?.some(
154
+ (action) => action?.type === "localStorageSet"
155
+ );
156
+
157
+ if (!hasLocalStorageSetAction) {
158
+ return null;
159
+ }
160
+
161
+ return {
162
+ [ANALYTICS_PREFERENCES_EVENTS.ITEM_SELECTED_STATUS]: true,
163
+ };
164
+ }
165
+
166
+ export function getLocalStorageToggleFlagPayload(extraProps) {
167
+ const { item } = extraProps;
168
+
169
+ const hasLocalStorageToggleAction =
170
+ item?.extensions?.tap_actions?.actions?.some(
171
+ (action) => action?.type === "localStorageToggleFlag"
172
+ );
173
+
174
+ if (!hasLocalStorageToggleAction) {
175
+ return null;
176
+ }
177
+
178
+ const previouslySelected = isItemPreviouslySelected(item);
179
+
180
+ return {
181
+ [ANALYTICS_PREFERENCES_EVENTS.ITEM_SELECTED_STATUS]: !previouslySelected,
182
+ [ANALYTICS_PREFERENCES_EVENTS.PREVIOUS_SELECTED_STATE]: previouslySelected,
183
+ };
184
+ }
185
+
105
186
  export function playEventForType(item) {
106
187
  const itemType = item?.type && item.type?.value;
107
188
 
@@ -4,7 +4,7 @@ import { postAnalyticEvent } from "../manager";
4
4
  import { ANALYTICS_CORE_EVENTS } from "../events";
5
5
 
6
6
  type SendHeaderClickEventProps = {
7
- extraProps: ExtraProps;
7
+ extraProps: Record<string, any>;
8
8
  component?: ZappUIComponent;
9
9
  zappPipesData?: ZappPipesData;
10
10
  item?: ZappEntry;
@@ -1,10 +1,11 @@
1
+ /// <reference types="../../" />
1
2
  import { log_error, log_debug } from "../logger";
2
3
  import { replaceAnalyticsPropsNils } from "./helper";
3
4
  import { postAnalyticEvent } from "../manager";
4
5
 
5
6
  import { ANALYTICS_CORE_EVENTS } from "../events";
6
7
 
7
- declare type AnalyticsDefaultHelperProperties = {
8
+ type AnalyticsDefaultHelperProperties = {
8
9
  analyticsScreenData: AnalyticsScreenProperties;
9
10
  extraProps: any;
10
11
  props;
@@ -1,13 +1,13 @@
1
1
  import { log_error, log_debug } from "../logger";
2
-
3
- import { ANALYTICS_CORE_EVENTS } from "../events";
4
-
2
+ import { ANALYTICS_CORE_EVENTS, ACTION_TYPE } from "../events";
5
3
  import { postAnalyticEvent } from "../manager";
6
4
  import {
7
5
  replaceAnalyticsPropsNils,
8
6
  eventForEntry,
9
7
  eventForComponent,
10
8
  extensionsEvents,
9
+ getLocalStorageSetPayload,
10
+ getLocalStorageToggleFlagPayload,
11
11
  } from "./helper";
12
12
 
13
13
  declare type AnalyticsDefaultHelperProperties = {
@@ -26,7 +26,16 @@ export const sendOnClickEvent = ({
26
26
  const castedExtraProps: ExtraProps = extraProps;
27
27
  const componentData = component || extraProps.component;
28
28
  const data = zappPipesData || extraProps.zappPipesData;
29
- const eventName = ANALYTICS_CORE_EVENTS.TAP_CELL;
29
+
30
+ const actionCellPayload =
31
+ extraProps?.item?.type?.value === ACTION_TYPE
32
+ ? getLocalStorageSetPayload(extraProps) ||
33
+ getLocalStorageToggleFlagPayload(extraProps)
34
+ : null;
35
+
36
+ const eventName = actionCellPayload
37
+ ? ANALYTICS_CORE_EVENTS.TAP_SELECTABLE_CELL
38
+ : ANALYTICS_CORE_EVENTS.TAP_CELL;
30
39
 
31
40
  if (!analyticsScreenData) {
32
41
  log_error(
@@ -44,6 +53,7 @@ export const sendOnClickEvent = ({
44
53
  ...replaceAnalyticsPropsNils({
45
54
  ...analyticsScreenData,
46
55
  }),
56
+ ...actionCellPayload,
47
57
  };
48
58
 
49
59
  if (analyticsCustomProperties) {
@@ -3,8 +3,22 @@ import { ANALYTICS_CORE_EVENTS } from "../events";
3
3
 
4
4
  jest.mock("@applicaster/zapp-react-native-utils/reactUtils", () => ({
5
5
  isWeb: jest.fn(),
6
+ platformSelect: jest.fn(
7
+ (options) => options.android || options.ios || options.web
8
+ ),
6
9
  }));
7
10
 
11
+ jest.mock(
12
+ "@applicaster/zapp-react-native-bridge/ZappStorage/StorageMultiSelectProvider",
13
+ () => ({
14
+ StorageMultiSelectProvider: {
15
+ getProvider: jest.fn(() => ({
16
+ getSelectedItems: jest.fn(() => []),
17
+ })),
18
+ },
19
+ })
20
+ );
21
+
8
22
  const mock_postAnalyticEvent = jest.fn();
9
23
  const mock_startAnalyticsTimedEvent = jest.fn();
10
24
  const mock_endAnalyticsTimedEvent = jest.fn();
@@ -17,8 +17,11 @@ export const SCREEN_VIEW_EVENTS = {
17
17
  TIME_ON_SCREEN: "time_on_screen",
18
18
  };
19
19
 
20
+ export const ACTION_TYPE = "action";
21
+
20
22
  export const TAPPING_EVENTS = {
21
23
  TAP_CELL: "tap_cell",
24
+ TAP_SELECTABLE_CELL: "tap_selectable_cell",
22
25
  TAP_MENU: "tap_menu",
23
26
  TAP_NAVBAR_BACK_BUTTON: "tap_navbar_back_button",
24
27
  };
@@ -99,6 +102,11 @@ export const ANALYTICS_COMPONENT_EVENTS = {
99
102
  COMPONENT_SOURCE: "component_source",
100
103
  };
101
104
 
105
+ export const ANALYTICS_PREFERENCES_EVENTS = {
106
+ ITEM_SELECTED_STATUS: "item_selected_status",
107
+ PREVIOUS_SELECTED_STATE: "previous_selected_state",
108
+ };
109
+
102
110
  // ---------------- EVENTS ---------------------
103
111
  export const AD_EVENT = {
104
112
  ad_break_start: "player_ad_break_start",
@@ -1,4 +1,3 @@
1
- /// <reference types="@applicaster/zapp-react-native-utils" />
2
1
  import * as R from "ramda";
3
2
  import * as React from "react";
4
3
  import { isWeb } from "@applicaster/zapp-react-native-utils/reactUtils";
@@ -31,7 +30,7 @@ import { ANALYTICS_CORE_EVENTS } from "./events";
31
30
  import { noop } from "../functionUtils";
32
31
 
33
32
  type ComponentWithChildrenProps = {
34
- children: React.ReactChildren;
33
+ children: React.ReactElement;
35
34
  };
36
35
 
37
36
  export function sendSelectCellEvent(item, component, headerTitle, itemIndex) {
@@ -120,11 +119,11 @@ export function getAnalyticsFunctions({
120
119
  export const AnalyticsContext =
121
120
  React.createContext<GetAnalyticsFunctions>(noop);
122
121
 
123
- export function AnalyticsProvider(props: ComponentWithChildrenProps) {
122
+ export function AnalyticsProvider({ children }: ComponentWithChildrenProps) {
124
123
  return (
125
124
  // @ts-ignore - this is a valid context provider
126
125
  <AnalyticsContext.Provider value={getAnalyticsFunctions}>
127
- {props?.children}
126
+ {children}
128
127
  </AnalyticsContext.Provider>
129
128
  );
130
129
  }
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable @typescript-eslint/no-use-before-define */
2
2
  import * as R from "ramda";
3
3
  import { NativeModules } from "react-native";
4
- import { ANALYTICS_CORE_EVENTS } from "@applicaster/zapp-react-native-utils/analyticsUtils/events";
4
+ import { ANALYTICS_CORE_EVENTS } from "./events";
5
5
 
6
6
  import { analyticsUtilsLogger } from "./logger";
7
7
 
@@ -65,10 +65,6 @@ export class Hook implements HookInterface {
65
65
  event: (typeof HOOKS_EVENTS)[keyof typeof HOOKS_EVENTS],
66
66
  ...args
67
67
  ) {
68
- if (this.state === hookState(HOOKS_EVENTS.CANCEL)) {
69
- return;
70
- }
71
-
72
68
  this.state = hookState(event);
73
69
  this.manager.subscriber.invokeHandler(event, ...args);
74
70
  }
@@ -198,4 +194,8 @@ export class Hook implements HookInterface {
198
194
  R.eqProps("weight", nextHook, this)
199
195
  );
200
196
  }
197
+
198
+ isCancelled(): boolean {
199
+ return this.state === hookState(HOOKS_EVENTS.CANCEL);
200
+ }
201
201
  }
@@ -255,7 +255,7 @@ export function HooksManager({
255
255
  * @param {Array<Hook>} restOfHooks to run
256
256
  * @returns {function} callback function
257
257
  */
258
- function hookCallback(hookPlugin, restOfHooks, initialPayload) {
258
+ function hookCallback(hookPlugin: Hook, restOfHooks: Hook[], initialPayload) {
259
259
  /**
260
260
  * callback invoked after a hook is executed
261
261
  * @param {object} options
@@ -273,6 +273,16 @@ export function HooksManager({
273
273
  }) {
274
274
  let callback = callbackArg;
275
275
 
276
+ if (hookPlugin.isCancelled()) {
277
+ logHookEvent(
278
+ hooksManagerLogger.info,
279
+ `hookCallback: hook was cancelled: ${hookPlugin["identifier"]}`,
280
+ {}
281
+ );
282
+
283
+ return;
284
+ }
285
+
276
286
  if (error) {
277
287
  logHookEvent(
278
288
  hooksManagerLogger.error,
@@ -1,9 +1,9 @@
1
1
  import { BehaviorSubject } from "rxjs";
2
2
  import { accessibilityManagerLogger as logger } from "./logger";
3
- import { TTSManager } from "../platform/platformUtils";
3
+ import { TTSManager } from "../platform";
4
4
  import { BUTTON_ACCESSIBILITY_KEYS } from "./const";
5
+ import { toString } from "../../utils";
5
6
  import { AccessibilityRole } from "react-native";
6
- import _ from "lodash";
7
7
 
8
8
  export class AccessibilityManager {
9
9
  private static _instance: AccessibilityManager | null = null;
@@ -137,7 +137,7 @@ export class AccessibilityManager {
137
137
  }
138
138
 
139
139
  public getButtonAccessibilityProps(name: string): AccessibilityProps {
140
- const buttonName = _.toString(name);
140
+ const buttonName = toString(name);
141
141
 
142
142
  const buttonConfig = BUTTON_ACCESSIBILITY_KEYS[buttonName];
143
143
 
@@ -147,7 +147,7 @@ export class AccessibilityManager {
147
147
  accessibilityHint: `Press button to perform action on ${buttonName}`,
148
148
  "aria-label": buttonName,
149
149
  "aria-description": `Press button to perform action on ${buttonName}`,
150
- accessibilityRole: "button" as AccessibilityRole,
150
+ accessibilityRole: "button",
151
151
  "aria-role": "button",
152
152
  };
153
153
  }
@@ -166,7 +166,7 @@ export class AccessibilityManager {
166
166
  accessibilityHint: hint,
167
167
  "aria-label": label,
168
168
  "aria-description": hint,
169
- accessibilityRole: "button" as AccessibilityRole,
169
+ accessibilityRole: "button",
170
170
  "aria-role": "button",
171
171
  };
172
172
  }
@@ -6,6 +6,7 @@ exports[`focusManager should be defined 1`] = `
6
6
  "disableFocus": [Function],
7
7
  "enableFocus": [Function],
8
8
  "findPreferredFocusChild": [Function],
9
+ "focusTopNavigation": [Function],
9
10
  "focusableTree": Tree {
10
11
  "loadingCounter": 0,
11
12
  "root": {
@@ -24,6 +25,8 @@ exports[`focusManager should be defined 1`] = `
24
25
  "invokeHandler": [Function],
25
26
  "isCurrentFocusOnTheTopScreen": [Function],
26
27
  "isFocusDisabled": [Function],
28
+ "isFocusOnContent": [Function],
29
+ "isFocusOnMenu": [Function],
27
30
  "isGroupItemFocused": [Function],
28
31
  "longPress": [Function],
29
32
  "moveFocus": [Function],
@@ -33,7 +33,7 @@ describe("focusManager", () => {
33
33
 
34
34
  expect(success).toBe(true);
35
35
  expect(mockSetFocus).toBeCalledTimes(1);
36
- expect(mockSetFocus).toBeCalledWith(null);
36
+ expect(mockSetFocus).toBeCalledWith(null, undefined);
37
37
  });
38
38
 
39
39
  describe("register", () => {});
@@ -14,6 +14,14 @@ import { subscriber } from "../../functionUtils";
14
14
  import { coreLogger } from "../../logger";
15
15
  import { ACTION } from "./utils/enums";
16
16
 
17
+ import {
18
+ findSelectedTabId,
19
+ findSelectedMenuId,
20
+ isTabsScreenContentFocused,
21
+ isCurrentFocusOnContent,
22
+ isCurrentFocusOnMenu,
23
+ } from "../focusManagerAux/utils";
24
+
17
25
  const logger = coreLogger.addSubsystem("focusManager");
18
26
 
19
27
  const isFocusEnabled = (focusableItem): boolean => {
@@ -100,7 +108,7 @@ export const focusManager = (function () {
100
108
  * @private
101
109
  * @param {Object} direction of the navigation which led to this action
102
110
  */
103
- function focus(direction) {
111
+ function focus(direction, context?: FocusManager.FocusContext) {
104
112
  const currentFocusable = getCurrentFocus();
105
113
 
106
114
  if (
@@ -108,7 +116,7 @@ export const focusManager = (function () {
108
116
  !currentFocusable.isGroup &&
109
117
  currentFocusable.isMounted()
110
118
  ) {
111
- currentFocusable.setFocus(direction);
119
+ currentFocusable.setFocus(direction, context);
112
120
  }
113
121
  }
114
122
 
@@ -205,7 +213,7 @@ export const focusManager = (function () {
205
213
  * @param {Array<string>} ids - An array of node IDs to update.
206
214
  * @param {boolean} setFocus - A flag indicating whether to set focus (true) or blur (false) on the nodes.
207
215
  */
208
- const updateNodeFocus = (ids, action) => {
216
+ const updateNodeFocus = (ids, action, context: FocusManager.FocusContext) => {
209
217
  if (!ids || ids.length === 0) {
210
218
  return; // Nothing to do
211
219
  }
@@ -222,11 +230,13 @@ export const focusManager = (function () {
222
230
 
223
231
  // Function to apply the action (focus or blur)
224
232
  const applyAction = (node) => {
233
+ const direction = undefined;
234
+
225
235
  if (node && node.component) {
226
236
  if (action === "focus") {
227
- node.component.setFocus();
237
+ node.component.setFocus(direction, context);
228
238
  } else if (action === "blur") {
229
- node.component.setBlur();
239
+ node.component.setBlur(direction, context);
230
240
  }
231
241
  }
232
242
  };
@@ -253,7 +263,11 @@ export const focusManager = (function () {
253
263
  * @param {Object} direction of the navigation, which led to this focus change
254
264
  * to another group or not. defaults to false
255
265
  */
256
- function setFocus(id: string, direction?: FocusManager.Web.Direction) {
266
+ function setFocus(
267
+ id: string,
268
+ direction?: FocusManager.Web.Direction,
269
+ context?: FocusManager.FocusContext
270
+ ) {
257
271
  if (focusDisabled) return false;
258
272
 
259
273
  // due to optimisiation it's recommanded to set currentFocusNode before setFocus
@@ -266,21 +280,65 @@ export const focusManager = (function () {
266
280
  );
267
281
 
268
282
  // Set focus on current node parents and blur on previous node parents
269
- updateNodeFocus(currentNodeParentsIDs, ACTION.FOCUS);
270
- updateNodeFocus(previousNodeParentsIDs, ACTION.BLUR);
283
+ updateNodeFocus(currentNodeParentsIDs, ACTION.FOCUS, context);
284
+ updateNodeFocus(previousNodeParentsIDs, ACTION.BLUR, context);
271
285
 
272
286
  currentFocusNode = focusableTree.findInTree(id);
273
287
  }
274
288
 
275
289
  setLastFocusOnParentNode(currentFocusNode);
276
290
 
277
- focus(direction);
291
+ focus(direction, context);
292
+ }
293
+
294
+ function isFocusOnContent() {
295
+ return isCurrentFocusOnContent(currentFocusNode);
296
+ }
297
+
298
+ function isFocusOnMenu() {
299
+ return isCurrentFocusOnMenu(currentFocusNode);
300
+ }
301
+
302
+ function landFocusTo(id) {
303
+ if (id) {
304
+ // set focus on selected menu item
305
+ const direction = undefined;
306
+
307
+ const context: FocusManager.FocusContext = {
308
+ source: "back",
309
+ preserveScroll: true,
310
+ };
311
+
312
+ logger.log({ message: "landFocusTo", data: { id } });
313
+
314
+ blur(direction);
315
+ setFocus(id, direction, context);
316
+ }
317
+ }
318
+
319
+ // Move focus to appropriate top navigation tab with context
320
+ function focusTopNavigation(isTabsScreen: boolean, item: ZappEntry) {
321
+ if (isTabsScreen && isTabsScreenContentFocused(currentFocusNode)) {
322
+ const selectedTabId = findSelectedTabId(item);
323
+
324
+ // Set focus with back button context to tabs-menu
325
+ landFocusTo(selectedTabId);
326
+
327
+ return;
328
+ }
329
+
330
+ const selectedMenuItemId = findSelectedMenuId(focusableTree);
331
+ // Set focus with back button context to top-menu
332
+ landFocusTo(selectedMenuItemId);
278
333
  }
279
334
 
280
335
  /**
281
336
  * sets the initial focus when the screen loads, or when focus is lost
282
337
  */
283
- function setInitialFocus(lastAddedParentNode?: any) {
338
+ function setInitialFocus(
339
+ lastAddedParentNode?: any,
340
+ context?: FocusManager.FocusContext
341
+ ) {
284
342
  const preferredFocus = findPriorityItem(
285
343
  lastAddedParentNode?.children || focusableTree.root.children
286
344
  );
@@ -326,7 +384,7 @@ export const focusManager = (function () {
326
384
  },
327
385
  });
328
386
 
329
- focusableItem && setFocus(focusCandidate.id, null);
387
+ focusableItem && setFocus(focusCandidate.id, null, context);
330
388
 
331
389
  return { success: true };
332
390
  }
@@ -576,5 +634,9 @@ export const focusManager = (function () {
576
634
  recoverFocus,
577
635
  isCurrentFocusOnTheTopScreen,
578
636
  findPreferredFocusChild,
637
+
638
+ focusTopNavigation,
639
+ isFocusOnContent,
640
+ isFocusOnMenu,
579
641
  };
580
642
  })();
@@ -142,7 +142,7 @@ export class Tree {
142
142
  this.hasGroupID(node)
143
143
  ? "Make sure that there are no id duplicates inside the " +
144
144
  existingNode.parent.id +
145
- " group."
145
+ " group. This can as well happen when the component is re-mounted"
146
146
  : ""
147
147
  }`,
148
148
  });
@@ -1,14 +1,31 @@
1
- import { isNotNil } from "@applicaster/zapp-react-native-utils/reactUtils/helpers";
2
- import { find, last, pathOr, startsWith } from "ramda";
1
+ import {
2
+ isNil,
3
+ last,
4
+ startsWith,
5
+ find,
6
+ pathOr,
7
+ } from "@applicaster/zapp-react-native-utils/utils";
8
+
3
9
  import {
4
10
  QUICK_BRICK_CONTENT,
5
11
  QUICK_BRICK_NAVBAR,
6
12
  } from "@applicaster/quick-brick-core/const";
7
13
 
14
+ import {
15
+ generateFocusableId,
16
+ SCREEN_PICKER_CONTAINER,
17
+ } from "@applicaster/zapp-react-native-utils/screenPickerUtils";
18
+
8
19
  // run check each 300 ms
9
20
  // run this check too often could lead to performance penalty on low-end devices
10
21
  const HOW_OFTEN_TO_CHECK_CONDITION = 300; // ms
11
22
 
23
+ const isTopMenu = (node) => startsWith(QUICK_BRICK_NAVBAR, node?.id);
24
+ const isContent = (node) => startsWith(QUICK_BRICK_CONTENT, node?.id);
25
+ const isRoot = (node) => node?.id === "root";
26
+
27
+ const isScrenPicker = (node) => startsWith(SCREEN_PICKER_CONTAINER, node?.id);
28
+
12
29
  type Props = {
13
30
  maxTimeout: number;
14
31
  conditionFn: () => boolean;
@@ -49,7 +66,7 @@ export const waitForActiveScreen = (currentRoute: string, focusableTree) => {
49
66
 
50
67
  const route = find((route) => route.id === currentRoute, routes);
51
68
 
52
- return isNotNil(route);
69
+ return !isNil(route);
53
70
  };
54
71
 
55
72
  return waitUntil({
@@ -99,3 +116,73 @@ export const waitForContent = (focusableTree) => {
99
116
  conditionFn: contentHasAnyChildren,
100
117
  });
101
118
  };
119
+
120
+ export const findSelectedTabId = (item: ZappEntry): string => {
121
+ const selectedTabId = generateFocusableId(item.id);
122
+
123
+ return selectedTabId;
124
+ };
125
+
126
+ export const findSelectedMenuId = (focusableTree) => {
127
+ // Set focus with back button context
128
+ const navbar = getNavbarNode(focusableTree);
129
+
130
+ const selectedMenuItemId = find(
131
+ (child) => child.component.props.selected,
132
+ navbar.children
133
+ )?.id;
134
+
135
+ return selectedMenuItemId;
136
+ };
137
+
138
+ export const isTabsScreenContentFocused = (node) => {
139
+ if (isRoot(node)) {
140
+ return false;
141
+ }
142
+
143
+ if (isTopMenu(node)) {
144
+ return false;
145
+ }
146
+
147
+ if (isContent(node)) {
148
+ return false;
149
+ }
150
+
151
+ if (isScrenPicker(node)) {
152
+ return true;
153
+ }
154
+
155
+ return isTabsScreenContentFocused(node.parent);
156
+ };
157
+
158
+ export const isCurrentFocusOnMenu = (node) => {
159
+ if (isRoot(node)) {
160
+ return false;
161
+ }
162
+
163
+ if (isTopMenu(node)) {
164
+ return true;
165
+ }
166
+
167
+ if (isContent(node)) {
168
+ return false;
169
+ }
170
+
171
+ return isCurrentFocusOnMenu(node.parent);
172
+ };
173
+
174
+ export const isCurrentFocusOnContent = (node) => {
175
+ if (isRoot(node)) {
176
+ return false;
177
+ }
178
+
179
+ if (isTopMenu(node)) {
180
+ return false;
181
+ }
182
+
183
+ if (isContent(node)) {
184
+ return true;
185
+ }
186
+
187
+ return isCurrentFocusOnContent(node.parent);
188
+ };
@@ -18,13 +18,6 @@ export const { log_verbose, log_debug, log_info, log_error } = createLogger({
18
18
  parent: utilsLogger,
19
19
  });
20
20
 
21
- type ActionChapter = {
22
- type: string;
23
- options?: {
24
- title: string;
25
- };
26
- };
27
-
28
21
  type ChapterMarkerOriginal = {
29
22
  id: string;
30
23
  title: string;
@@ -33,14 +26,6 @@ type ChapterMarkerOriginal = {
33
26
  actions: ActionChapter[];
34
27
  };
35
28
 
36
- export type ChapterMarkerEvent = {
37
- id: string;
38
- title: string;
39
- start_time: number;
40
- end_time: number;
41
- actions: ActionChapter[];
42
- };
43
-
44
29
  export type TitleSummaryEvent = {
45
30
  title: string | number;
46
31
  summary: string | number;
@@ -1,4 +1,3 @@
1
- import { ChapterMarkerEvent } from "./OverlayObserver/OverlaysObserver";
2
1
  import { usePlayer } from "./usePlayer";
3
2
  import * as React from "react";
4
3