@applicaster/zapp-react-native-utils 14.0.0-alpha.5974411329 → 14.0.0-alpha.6000342231

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 (69) hide show
  1. package/actionsExecutor/ActionExecutorContext.tsx +0 -1
  2. package/actionsExecutor/ScreenActions.ts +20 -19
  3. package/analyticsUtils/AnalyticPlayerListener.ts +5 -2
  4. package/analyticsUtils/__tests__/analyticsUtils.test.js +0 -11
  5. package/analyticsUtils/playerAnalyticsTracker.ts +2 -1
  6. package/appUtils/accessibilityManager/const.ts +13 -0
  7. package/appUtils/accessibilityManager/hooks.ts +35 -1
  8. package/appUtils/accessibilityManager/index.ts +151 -30
  9. package/appUtils/accessibilityManager/utils.ts +24 -0
  10. package/appUtils/contextKeysManager/contextResolver.ts +12 -1
  11. package/appUtils/focusManager/__tests__/__snapshots__/focusManager.test.js.snap +8 -0
  12. package/appUtils/focusManager/__tests__/focusManager.test.js +1 -1
  13. package/appUtils/focusManager/events.ts +2 -0
  14. package/appUtils/focusManager/index.ios.ts +27 -0
  15. package/appUtils/focusManager/index.ts +86 -11
  16. package/appUtils/focusManagerAux/utils/index.ts +112 -3
  17. package/appUtils/focusManagerAux/utils/utils.ios.ts +35 -0
  18. package/appUtils/platform/platformUtils.ts +33 -3
  19. package/appUtils/playerManager/conts.ts +21 -0
  20. package/arrayUtils/__tests__/allTruthy.test.ts +24 -0
  21. package/arrayUtils/__tests__/anyThruthy.test.ts +24 -0
  22. package/arrayUtils/index.ts +5 -0
  23. package/configurationUtils/__tests__/manifestKeyParser.test.ts +0 -1
  24. package/configurationUtils/index.ts +1 -1
  25. package/focusManager/FocusManager.ts +78 -4
  26. package/focusManager/aux/index.ts +98 -0
  27. package/focusManager/utils.ts +12 -6
  28. package/index.d.ts +1 -1
  29. package/manifestUtils/defaultManifestConfigurations/player.js +188 -2
  30. package/manifestUtils/index.js +4 -0
  31. package/manifestUtils/keys.js +12 -0
  32. package/manifestUtils/sharedConfiguration/screenPicker/stylesFields.js +6 -0
  33. package/navigationUtils/index.ts +20 -17
  34. package/package.json +2 -2
  35. package/playerUtils/PlayerTTS/PlayerTTS.ts +359 -0
  36. package/playerUtils/PlayerTTS/index.ts +1 -0
  37. package/playerUtils/getPlayerActionButtons.ts +1 -1
  38. package/playerUtils/usePlayerTTS.ts +21 -0
  39. package/reactHooks/cell-click/__tests__/index.test.js +3 -0
  40. package/reactHooks/debugging/__tests__/index.test.js +0 -1
  41. package/reactHooks/feed/__tests__/useBatchLoading.test.tsx +8 -2
  42. package/reactHooks/feed/__tests__/useFeedLoader.test.tsx +57 -37
  43. package/reactHooks/feed/index.ts +2 -0
  44. package/reactHooks/feed/useBatchLoading.ts +14 -9
  45. package/reactHooks/feed/useFeedLoader.tsx +39 -59
  46. package/reactHooks/feed/useInflatedUrl.ts +23 -29
  47. package/reactHooks/feed/useLoadPipesDataDispatch.ts +63 -0
  48. package/reactHooks/layout/index.ts +1 -1
  49. package/reactHooks/navigation/useScreenStateStore.ts +3 -3
  50. package/reactHooks/state/index.ts +1 -1
  51. package/reactHooks/state/useHomeRiver.ts +4 -2
  52. package/screenPickerUtils/index.ts +13 -0
  53. package/storage/ScreenSingleValueProvider.ts +25 -22
  54. package/storage/ScreenStateMultiSelectProvider.ts +26 -23
  55. package/utils/__tests__/endsWith.test.ts +30 -0
  56. package/utils/__tests__/find.test.ts +36 -0
  57. package/utils/__tests__/omit.test.ts +19 -0
  58. package/utils/__tests__/path.test.ts +33 -0
  59. package/utils/__tests__/pathOr.test.ts +37 -0
  60. package/utils/__tests__/startsWith.test.ts +30 -0
  61. package/utils/__tests__/take.test.ts +40 -0
  62. package/utils/endsWith.ts +9 -0
  63. package/utils/find.ts +3 -0
  64. package/utils/index.ts +19 -1
  65. package/utils/omit.ts +5 -0
  66. package/utils/path.ts +5 -0
  67. package/utils/pathOr.ts +5 -0
  68. package/utils/startsWith.ts +9 -0
  69. package/utils/take.ts +5 -0
@@ -3,6 +3,7 @@ import {
3
3
  isNilOrEmpty,
4
4
  isNotNil,
5
5
  } from "@applicaster/zapp-react-native-utils/reactUtils/helpers";
6
+ import { getFocusableId } from "@applicaster/zapp-react-native-utils/screenPickerUtils";
6
7
 
7
8
  import { Tree } from "./treeDataStructure/Tree";
8
9
  import {
@@ -14,6 +15,13 @@ import { subscriber } from "../../functionUtils";
14
15
  import { coreLogger } from "../../logger";
15
16
  import { ACTION } from "./utils/enums";
16
17
 
18
+ import {
19
+ isTabsScreenOnContentFocused,
20
+ isCurrentFocusOnContent,
21
+ isCurrentFocusOnMenu,
22
+ isCurrentFocusOn,
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,68 @@ 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 landFocusToWithoutScrolling(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
+ function isTabsScreenContentFocused() {
320
+ return isTabsScreenOnContentFocused(currentFocusNode);
321
+ }
322
+
323
+ function focusOnSelectedTab(item: ZappEntry): void {
324
+ // Move focus to appropriate top navigation tab with context
325
+ const selectedTabId = getFocusableId(item.id);
326
+
327
+ // Set focus with back button context to tabs-menu
328
+ landFocusToWithoutScrolling(selectedTabId);
329
+ }
330
+
331
+ function focusOnSelectedTopMenuItem(
332
+ selectedMenuItemId: Option<string>
333
+ ): void {
334
+ // Set focus with back button context to top-menu
335
+ landFocusToWithoutScrolling(selectedMenuItemId);
278
336
  }
279
337
 
280
338
  /**
281
339
  * sets the initial focus when the screen loads, or when focus is lost
282
340
  */
283
- function setInitialFocus(lastAddedParentNode?: any) {
341
+ function setInitialFocus(
342
+ lastAddedParentNode?: any,
343
+ context?: FocusManager.FocusContext
344
+ ) {
284
345
  const preferredFocus = findPriorityItem(
285
346
  lastAddedParentNode?.children || focusableTree.root.children
286
347
  );
@@ -326,7 +387,7 @@ export const focusManager = (function () {
326
387
  },
327
388
  });
328
389
 
329
- focusableItem && setFocus(focusCandidate.id, null);
390
+ focusableItem && setFocus(focusCandidate.id, null, context);
330
391
 
331
392
  return { success: true };
332
393
  }
@@ -546,6 +607,14 @@ export const focusManager = (function () {
546
607
  return preferredFocus[0];
547
608
  }
548
609
 
610
+ function isFocusOn(id): boolean {
611
+ return (
612
+ id &&
613
+ isCurrentFocusOnTheTopScreen() &&
614
+ isCurrentFocusOn(id, currentFocusNode)
615
+ );
616
+ }
617
+
549
618
  /**
550
619
  * this is the list of the functions available externally
551
620
  * when importing the focus manager
@@ -576,5 +645,11 @@ export const focusManager = (function () {
576
645
  recoverFocus,
577
646
  isCurrentFocusOnTheTopScreen,
578
647
  findPreferredFocusChild,
648
+ isFocusOnContent,
649
+ isFocusOnMenu,
650
+ isFocusOn,
651
+ focusOnSelectedTopMenuItem,
652
+ focusOnSelectedTab,
653
+ isTabsScreenContentFocused,
579
654
  };
580
655
  })();
@@ -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
+ getFocusableId,
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,95 @@ export const waitForContent = (focusableTree) => {
99
116
  conditionFn: contentHasAnyChildren,
100
117
  });
101
118
  };
119
+
120
+ export const findSelectedTabId = (item: ZappEntry): string => {
121
+ const selectedTabId = getFocusableId(item.id);
122
+
123
+ return selectedTabId;
124
+ };
125
+
126
+ export const isTabsScreenOnContentFocused = (node) => {
127
+ if (isRoot(node)) {
128
+ return false;
129
+ }
130
+
131
+ if (isTopMenu(node)) {
132
+ return false;
133
+ }
134
+
135
+ if (isContent(node)) {
136
+ return false;
137
+ }
138
+
139
+ if (isScrenPicker(node)) {
140
+ return true;
141
+ }
142
+
143
+ return isTabsScreenOnContentFocused(node.parent);
144
+ };
145
+
146
+ export const isCurrentFocusOnMenu = (node) => {
147
+ if (isRoot(node)) {
148
+ return false;
149
+ }
150
+
151
+ if (isTopMenu(node)) {
152
+ return true;
153
+ }
154
+
155
+ if (isContent(node)) {
156
+ return false;
157
+ }
158
+
159
+ return isCurrentFocusOnMenu(node.parent);
160
+ };
161
+
162
+ export const isCurrentFocusOnContent = (node) => {
163
+ if (isRoot(node)) {
164
+ return false;
165
+ }
166
+
167
+ if (isTopMenu(node)) {
168
+ return false;
169
+ }
170
+
171
+ if (isContent(node)) {
172
+ return true;
173
+ }
174
+
175
+ return isCurrentFocusOnContent(node.parent);
176
+ };
177
+
178
+ export const isCurrentFocusOn = (id, node) => {
179
+ if (!node) {
180
+ return false;
181
+ }
182
+
183
+ if (isRoot(node)) {
184
+ return false;
185
+ }
186
+
187
+ if (node?.id === id) {
188
+ return true;
189
+ }
190
+
191
+ return isCurrentFocusOn(id, node.parent);
192
+ };
193
+
194
+ export const isChildOf = (focusableTree, childId, parentId) => {
195
+ if (isNil(childId) || isNil(parentId)) {
196
+ return false;
197
+ }
198
+
199
+ const childNode = focusableTree.findInTree(childId);
200
+
201
+ if (isNil(childNode)) {
202
+ return false;
203
+ }
204
+
205
+ if (childNode.parent?.id === parentId) {
206
+ return true;
207
+ }
208
+
209
+ return isChildOf(focusableTree, childNode.parent?.id, parentId);
210
+ };
@@ -0,0 +1,35 @@
1
+ import { ReplaySubject } from "rxjs";
2
+ import { filter } from "rxjs/operators";
3
+ import { BUTTON_PREFIX } from "@applicaster/zapp-react-native-ui-components/Components/MasterCell/DefaultComponents/tv/TvActionButtons/const";
4
+ import { focusManager } from "@applicaster/zapp-react-native-utils/appUtils/focusManager/index.ios";
5
+
6
+ type FocusableID = string;
7
+ type RegistrationEvent = {
8
+ id: FocusableID;
9
+ registered: boolean;
10
+ };
11
+
12
+ const isFocusableButton = (id: Option<FocusableID>): boolean =>
13
+ id && id.includes?.(BUTTON_PREFIX);
14
+
15
+ const registeredSubject$ = new ReplaySubject<RegistrationEvent>(1);
16
+
17
+ export const focusableButtonsRegistration$ = (focusableGroupId: string) =>
18
+ registeredSubject$.pipe(
19
+ filter(
20
+ (value) =>
21
+ value.registered && focusManager.isChildOf(value.id, focusableGroupId)
22
+ )
23
+ );
24
+
25
+ export const emitRegistered = (id: Option<FocusableID>): void => {
26
+ if (isFocusableButton(id)) {
27
+ registeredSubject$.next({ id, registered: true });
28
+ }
29
+ };
30
+
31
+ export const emitUnregistered = (id: Option<FocusableID>): void => {
32
+ if (isFocusableButton(id)) {
33
+ registeredSubject$.next({ id, registered: false });
34
+ }
35
+ };
@@ -10,6 +10,7 @@ import { PLATFORM_KEYS, PLATFORMS, ZappPlatform } from "./const";
10
10
  import { createLogger, utilsLogger } from "../../logger";
11
11
  import { getPlatform } from "../../reactUtils";
12
12
  import { appStore } from "@applicaster/zapp-react-native-redux/AppStore";
13
+ import { calculateReadingTime } from "@applicaster/zapp-react-native-utils/appUtils/accessibilityManager/utils";
13
14
 
14
15
  const { log_debug } = createLogger({
15
16
  category: "General",
@@ -212,36 +213,65 @@ export class TTSManager {
212
213
  }
213
214
 
214
215
  readText(text: string) {
216
+ this.ttsState$.next(true);
217
+
215
218
  if (isSamsungPlatform() && window.speechSynthesis) {
216
219
  const utterance = new SpeechSynthesisUtterance(text);
220
+
221
+ window.speechSynthesis.cancel(); // Cancel previous speech before speaking new text
217
222
  window.speechSynthesis.speak(utterance);
223
+
224
+ // Estimate reading time and set inactive when done
225
+ this.scheduleTTSComplete(text);
218
226
  }
219
227
 
220
228
  if (isLgPlatform() && window.webOS?.service) {
221
229
  try {
222
230
  window.webOS.service.request("luna://com.webos.service.tts", {
223
231
  method: "speak",
224
- onFailure(error: any) {
232
+ onFailure: (error: any) => {
225
233
  log_debug("There was a failure setting up webOS TTS service", {
226
234
  error,
227
235
  });
236
+
237
+ this.ttsState$.next(false);
228
238
  },
229
- onSuccess(response: any) {
239
+ onSuccess: (response: any) => {
230
240
  log_debug("webOS TTS service is configured successfully", {
231
241
  response,
232
242
  });
243
+
244
+ // Estimate reading time and set inactive when done
245
+ this.scheduleTTSComplete(text);
233
246
  },
234
247
  parameters: {
235
248
  text,
249
+ clear: true, // Clear any previous speech before speaking new text
236
250
  },
237
251
  });
238
252
  } catch (error) {
239
253
  log_debug("webOS TTS service error", { error });
254
+ this.ttsState$.next(false);
240
255
  }
241
256
  }
242
257
 
243
- if (!window.VIZIO?.Chromevox) return;
258
+ if (!window.VIZIO?.Chromevox) {
259
+ // For platforms without TTS, estimate reading time
260
+ this.scheduleTTSComplete(text);
261
+
262
+ return;
263
+ }
244
264
 
245
265
  window.VIZIO.Chromevox.play(text);
266
+ // Estimate reading time and set inactive when done
267
+ this.scheduleTTSComplete(text);
268
+ }
269
+
270
+ private scheduleTTSComplete(text: string) {
271
+ const readingTime = calculateReadingTime(text);
272
+
273
+ setTimeout(() => {
274
+ this.ttsState$.next(false);
275
+ }, readingTime);
246
276
  }
247
277
  }
@@ -2,6 +2,27 @@ export const userPreferencesNamespace = "user_preferences";
2
2
 
3
3
  export const skipActionType = "show_skip";
4
4
 
5
+ export class PlayerError
6
+ extends Error
7
+ implements QuickBrickPlayer.PlayerErrorI
8
+ {
9
+ description: string;
10
+
11
+ constructor(message: string, description: string) {
12
+ super(message);
13
+ this.description = description;
14
+
15
+ Object.setPrototypeOf(this, PlayerError.prototype);
16
+ }
17
+
18
+ toObject() {
19
+ return {
20
+ error: this.message,
21
+ message: this.description,
22
+ };
23
+ }
24
+ }
25
+
5
26
  export enum SharedPlayerCallBacksKeys {
6
27
  OnPlayerResume = "onPlayerResume",
7
28
  OnPlayerPause = "onPlayerPause",
@@ -0,0 +1,24 @@
1
+ import { allTruthy } from "..";
2
+
3
+ describe("allTruthy", () => {
4
+ it("should return true when all values are true", () => {
5
+ expect(allTruthy([true, true, true])).toBe(true);
6
+ });
7
+
8
+ it("should return false when at least one value is false", () => {
9
+ expect(allTruthy([true, false, true])).toBe(false);
10
+ });
11
+
12
+ it("should return false when all values are false", () => {
13
+ expect(allTruthy([false, false, false])).toBe(false);
14
+ });
15
+
16
+ it("should return false for an empty array", () => {
17
+ expect(allTruthy([])).toBe(false);
18
+ });
19
+
20
+ it("should handle single-element arrays correctly", () => {
21
+ expect(allTruthy([true])).toBe(true);
22
+ expect(allTruthy([false])).toBe(false);
23
+ });
24
+ });
@@ -0,0 +1,24 @@
1
+ import { anyTruthy } from "..";
2
+
3
+ describe("anyTruthy", () => {
4
+ it("should return true when at least one value is true", () => {
5
+ expect(anyTruthy([false, true, false])).toBe(true);
6
+ });
7
+
8
+ it("should return false when all values are false", () => {
9
+ expect(anyTruthy([false, false, false])).toBe(false);
10
+ });
11
+
12
+ it("should return true when all values are true", () => {
13
+ expect(anyTruthy([true, true, true])).toBe(true);
14
+ });
15
+
16
+ it("should return false for an empty array", () => {
17
+ expect(anyTruthy([])).toBe(false);
18
+ });
19
+
20
+ it("should handle single-element arrays correctly", () => {
21
+ expect(anyTruthy([true])).toBe(true);
22
+ expect(anyTruthy([false])).toBe(false);
23
+ });
24
+ });
@@ -116,3 +116,8 @@ export const sample = (xs: unknown[]): unknown => {
116
116
 
117
117
  return xs[index];
118
118
  };
119
+
120
+ export const allTruthy = (xs: boolean[]) =>
121
+ isFilledArray(xs) && xs.every(Boolean);
122
+
123
+ export const anyTruthy = (xs: boolean[]) => xs.some(Boolean);
@@ -1,6 +1,5 @@
1
1
  import { getAllSpecificStyles } from "../manifestKeyParser";
2
2
 
3
- // Mock the dependencies
4
3
  jest.mock("@applicaster/zapp-react-native-utils/reactUtils", () => ({
5
4
  platformSelect: jest.fn((platforms) => platforms.samsung_tv), // Default to samsung for tests
6
5
  }));
@@ -399,7 +399,7 @@ export const populateConfigurationValues =
399
399
  flattenAndPopulateFields(fields, configuration, skipDefaults)
400
400
  );
401
401
 
402
- export const getAccesabilityProps = (item: ZappEntry) => ({
402
+ export const getAccessibilityProps = (item: ZappEntry) => ({
403
403
  accessible: item?.extensions?.accessibility,
404
404
  accessibilityLabel: item?.extensions?.accessibility?.label || item?.title,
405
405
  accessibilityHint: item?.extensions?.accessibility?.hint,
@@ -2,11 +2,24 @@ import { path } from "ramda";
2
2
  import { isString } from "@applicaster/zapp-react-native-utils/stringUtils";
3
3
  import * as FOCUS_EVENTS from "@applicaster/zapp-react-native-utils/appUtils/focusManager/events";
4
4
 
5
+ import {
6
+ QUICK_BRICK_CONTENT,
7
+ QUICK_BRICK_NAVBAR,
8
+ } from "@applicaster/quick-brick-core/const";
9
+
5
10
  import { logger } from "./logger";
6
11
  import { TreeNode } from "./TreeNode";
7
12
  import { Tree } from "./Tree";
8
13
  import { subscriber } from "../functionUtils";
9
14
  import { getFocusableId, toFocusDirection } from "./utils";
15
+ import {
16
+ findSelectedMenuId,
17
+ isTabsScreenContentFocused,
18
+ findSelectedTabId,
19
+ contextWithoutScrolling,
20
+ } from "./aux";
21
+
22
+ export { contextWithoutScrolling } from "./aux";
10
23
 
11
24
  export {
12
25
  toFocusDirection,
@@ -221,7 +234,8 @@ class FocusManager {
221
234
 
222
235
  private setNextFocus(
223
236
  nextFocus: FocusManager.TouchableReactRef,
224
- options?: FocusManager.Android.CallbackOptions
237
+ options?: FocusManager.Android.CallbackOptions,
238
+ context?: FocusManager.FocusContext
225
239
  ) {
226
240
  if (nextFocus?.current?.props?.blockFocus) {
227
241
  return;
@@ -250,7 +264,7 @@ class FocusManager {
250
264
 
251
265
  FocusManager.instance.setPreviousNavigationDirection(options ?? null);
252
266
 
253
- nextFocus?.current?.onFocus?.(nextFocus.current, options ?? {});
267
+ nextFocus?.current?.onFocus?.(nextFocus.current, options ?? {}, context);
254
268
  }
255
269
  }
256
270
 
@@ -291,7 +305,8 @@ class FocusManager {
291
305
 
292
306
  setFocus(
293
307
  newFocus: FocusManager.TouchableReactRef | string,
294
- options?: FocusManager.Android.CallbackOptions
308
+ options?: FocusManager.Android.CallbackOptions,
309
+ context?: FocusManager.FocusContext
295
310
  ) {
296
311
  // Checks if element is focusable
297
312
  const { isFocusable, error } = FocusManager.isFocusable(newFocus);
@@ -316,7 +331,7 @@ class FocusManager {
316
331
  }
317
332
 
318
333
  if (newFocusRef) {
319
- FocusManager.instance.setNextFocus(newFocusRef, options);
334
+ FocusManager.instance.setNextFocus(newFocusRef, options, context);
320
335
  }
321
336
  }
322
337
  }
@@ -351,6 +366,11 @@ class FocusManager {
351
366
  FocusManager.instance.focused.onBlur(FocusManager.instance.focused, {});
352
367
  }
353
368
 
369
+ // send reset event to some handler to reset their internal state, before real reset happens
370
+ this.eventHandler?.invokeHandler?.(FOCUS_EVENTS.RESET, {
371
+ focusedId: FocusManager.instance.focusedId,
372
+ });
373
+
354
374
  FocusManager.instance.setFocusLocal({ current: null });
355
375
  }
356
376
 
@@ -417,6 +437,60 @@ class FocusManager {
417
437
  throw new Error(`Group with id ${id} not found`);
418
438
  }
419
439
  }
440
+
441
+ isFocusOnMenu(): boolean {
442
+ return this.isFocusableChildOf(
443
+ FocusManager.instance.focusedId,
444
+ QUICK_BRICK_NAVBAR
445
+ );
446
+ }
447
+
448
+ isFocusOnContent(): boolean {
449
+ return this.isFocusableChildOf(
450
+ FocusManager.instance.focusedId,
451
+ QUICK_BRICK_CONTENT
452
+ );
453
+ }
454
+
455
+ private landFocusToWithoutScrolling = (id) => {
456
+ if (id) {
457
+ // set focus on selected menu item
458
+ const direction = undefined;
459
+
460
+ const context: FocusManager.FocusContext =
461
+ contextWithoutScrolling("back");
462
+
463
+ logger.log({ message: "landFocusToWithoutScrolling", data: { id } });
464
+
465
+ this.setFocus(id, direction, context);
466
+ }
467
+ };
468
+
469
+ // Move focus to appropriate top navigation tab with context
470
+ focusOnSelectedTab(index: number): void {
471
+ const selectedTabId = findSelectedTabId(this.tree, index);
472
+
473
+ // Set focus with back button context to tabs-menu
474
+ this.landFocusToWithoutScrolling(selectedTabId);
475
+ }
476
+
477
+ // Move focus to appropriate top navigation tab with context
478
+ focusOnSelectedTopMenuItem(index: number, sectionKey: string): void {
479
+ const selectedMenuItemId = findSelectedMenuId(this.tree, {
480
+ index,
481
+ sectionKey,
482
+ });
483
+
484
+ // Set focus with back button context to top-menu
485
+ this.landFocusToWithoutScrolling(selectedMenuItemId);
486
+ }
487
+
488
+ isTabsScreenContentFocused(): boolean {
489
+ return isTabsScreenContentFocused(
490
+ this.tree,
491
+ FocusManager.instance.focusedId
492
+ );
493
+ }
420
494
  }
421
495
 
422
496
  export const focusManager = FocusManager.getInstance();