@applicaster/zapp-react-native-utils 14.0.0-alpha.3259144304 → 14.0.0-alpha.3514550494

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 (86) hide show
  1. package/actionsExecutor/ActionExecutorContext.tsx +60 -84
  2. package/actionsExecutor/ScreenActions.ts +164 -0
  3. package/actionsExecutor/StorageActions.ts +110 -0
  4. package/actionsExecutor/feedDecorator.ts +171 -0
  5. package/actionsExecutor/screenResolver.ts +11 -0
  6. package/analyticsUtils/AnalyticsEvents/helper.ts +81 -0
  7. package/analyticsUtils/AnalyticsEvents/sendOnClickEvent.ts +14 -4
  8. package/analyticsUtils/__tests__/analyticsUtils.test.js +3 -0
  9. package/analyticsUtils/events.ts +8 -0
  10. package/appUtils/HooksManager/Hook.ts +4 -4
  11. package/appUtils/HooksManager/index.ts +11 -1
  12. package/appUtils/accessibilityManager/const.ts +13 -0
  13. package/appUtils/accessibilityManager/hooks.ts +35 -1
  14. package/appUtils/accessibilityManager/index.ts +152 -31
  15. package/appUtils/accessibilityManager/utils.ts +24 -0
  16. package/appUtils/contextKeysManager/contextResolver.ts +42 -1
  17. package/appUtils/focusManager/__tests__/__snapshots__/focusManager.test.js.snap +5 -0
  18. package/appUtils/focusManager/__tests__/focusManager.test.js +1 -1
  19. package/appUtils/focusManager/index.ios.ts +10 -0
  20. package/appUtils/focusManager/index.ts +82 -11
  21. package/appUtils/focusManager/treeDataStructure/Tree/index.js +1 -1
  22. package/appUtils/focusManagerAux/utils/index.ts +106 -3
  23. package/appUtils/platform/platformUtils.ts +31 -1
  24. package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +0 -15
  25. package/appUtils/playerManager/useChapterMarker.tsx +0 -1
  26. package/appUtils/playerManager/usePlayerControllerSetup.tsx +16 -0
  27. package/arrayUtils/index.ts +1 -1
  28. package/componentsUtils/__tests__/isTabsScreen.test.ts +38 -0
  29. package/componentsUtils/index.ts +4 -1
  30. package/configurationUtils/__tests__/manifestKeyParser.test.ts +546 -0
  31. package/configurationUtils/manifestKeyParser.ts +57 -32
  32. package/focusManager/FocusManager.ts +26 -16
  33. package/focusManager/Tree.ts +25 -21
  34. package/focusManager/__tests__/FocusManager.test.ts +50 -8
  35. package/index.d.ts +0 -9
  36. package/manifestUtils/defaultManifestConfigurations/player.js +24 -2
  37. package/navigationUtils/__tests__/mapContentTypesToRivers.test.ts +130 -0
  38. package/navigationUtils/index.ts +6 -4
  39. package/package.json +2 -3
  40. package/playerUtils/PlayerTTS/PlayerTTS.ts +359 -0
  41. package/playerUtils/PlayerTTS/index.ts +1 -0
  42. package/playerUtils/getPlayerActionButtons.ts +1 -1
  43. package/playerUtils/index.ts +51 -0
  44. package/playerUtils/usePlayerTTS.ts +21 -0
  45. package/reactHooks/autoscrolling/__tests__/useTrackedView.test.tsx +3 -1
  46. package/reactHooks/cell-click/__tests__/index.test.js +3 -0
  47. package/reactHooks/cell-click/index.ts +8 -1
  48. package/reactHooks/debugging/__tests__/index.test.js +0 -1
  49. package/reactHooks/feed/__tests__/useBatchLoading.test.tsx +8 -2
  50. package/reactHooks/feed/__tests__/useFeedLoader.test.tsx +71 -31
  51. package/reactHooks/feed/index.ts +2 -0
  52. package/reactHooks/feed/useBatchLoading.ts +16 -9
  53. package/reactHooks/feed/useFeedLoader.tsx +36 -34
  54. package/reactHooks/feed/useLoadPipesDataDispatch.ts +57 -0
  55. package/reactHooks/feed/usePipesCacheReset.ts +3 -3
  56. package/reactHooks/flatList/useSequentialRenderItem.tsx +3 -3
  57. package/reactHooks/layout/__tests__/index.test.tsx +3 -1
  58. package/reactHooks/layout/isTablet/index.ts +12 -5
  59. package/reactHooks/layout/useDimensions/__tests__/useDimensions.test.ts +34 -36
  60. package/reactHooks/layout/useDimensions/useDimensions.ts +2 -3
  61. package/reactHooks/layout/useLayoutVersion.ts +5 -5
  62. package/reactHooks/navigation/index.ts +7 -5
  63. package/reactHooks/navigation/useIsScreenActive.ts +9 -5
  64. package/reactHooks/navigation/useRoute.ts +7 -2
  65. package/reactHooks/navigation/useScreenStateStore.ts +8 -0
  66. package/reactHooks/resolvers/__tests__/useCellResolver.test.tsx +4 -0
  67. package/reactHooks/screen/useScreenContext.ts +1 -1
  68. package/reactHooks/state/__tests__/ZStoreProvider.test.tsx +2 -1
  69. package/reactHooks/state/index.ts +1 -1
  70. package/reactHooks/state/useHomeRiver.ts +4 -2
  71. package/reactHooks/state/useRivers.ts +7 -8
  72. package/riverComponetsMeasurementProvider/index.tsx +1 -1
  73. package/screenPickerUtils/index.ts +7 -0
  74. package/services/js2native.ts +1 -0
  75. package/storage/ScreenSingleValueProvider.ts +204 -0
  76. package/storage/ScreenStateMultiSelectProvider.ts +293 -0
  77. package/storage/StorageMultiSelectProvider.ts +192 -0
  78. package/storage/StorageSingleSelectProvider.ts +108 -0
  79. package/time/BackgroundTimer.ts +6 -4
  80. package/utils/__tests__/find.test.ts +36 -0
  81. package/utils/__tests__/pathOr.test.ts +37 -0
  82. package/utils/__tests__/startsWith.test.ts +30 -0
  83. package/utils/find.ts +3 -0
  84. package/utils/index.ts +12 -0
  85. package/utils/pathOr.ts +5 -0
  86. package/utils/startsWith.ts +9 -0
@@ -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-utils/storage/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
 
@@ -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,6 +3,9 @@ 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
 
8
11
  const mock_postAnalyticEvent = 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",
@@ -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,
@@ -65,4 +65,17 @@ export const BUTTON_ACCESSIBILITY_KEYS = {
65
65
  label: "accessibility_menu_item_label",
66
66
  hint: "accessibility_menu_item_hint",
67
67
  },
68
+ skip_intro: {
69
+ label: "accessibility_skip_intro_label",
70
+ hint: "accessibility_skip_intro_hint",
71
+ },
72
+ // Top Menu Bar-specific buttons
73
+ top_menu_bar_item_selected: {
74
+ label: "accessibility_top_menu_bar_item_selected_label",
75
+ hint: "accessibility_top_menu_bar_item_selected_hint",
76
+ },
77
+ top_menu_title: {
78
+ label: "accessibility_top_menu_title_label",
79
+ hint: "accessibility_top_menu_hint",
80
+ },
68
81
  } as const;
@@ -1,4 +1,4 @@
1
- import { useEffect, useMemo } from "react";
1
+ import { useEffect, useMemo, useState } from "react";
2
2
  import { AccessibilityManager } from "./index";
3
3
 
4
4
  /**
@@ -38,3 +38,37 @@ export const useAccessibilityManager = (
38
38
 
39
39
  return accessibilityManager;
40
40
  };
41
+
42
+ export const useInitialAnnouncementReady = (
43
+ accessibilityManager: AccessibilityManager
44
+ ) => {
45
+ const [isReady, setIsReady] = useState(
46
+ accessibilityManager.isInitialPlayerAnnouncementReady
47
+ );
48
+
49
+ useEffect(() => {
50
+ const subscription = accessibilityManager
51
+ .getInitialAnnouncementReadyObservable()
52
+ .subscribe(setIsReady);
53
+
54
+ return () => subscription.unsubscribe();
55
+ }, [accessibilityManager]);
56
+
57
+ return isReady;
58
+ };
59
+
60
+ export const useAnnouncementActive = (
61
+ accessibilityManager: AccessibilityManager
62
+ ) => {
63
+ const [isActive, setIsActive] = useState(false);
64
+
65
+ useEffect(() => {
66
+ const subscription = accessibilityManager
67
+ .getTTSStateObservable()
68
+ .subscribe(setIsActive);
69
+
70
+ return () => subscription.unsubscribe();
71
+ }, [accessibilityManager]);
72
+
73
+ return isActive;
74
+ };
@@ -1,15 +1,19 @@
1
+ import * as R from "ramda";
1
2
  import { BehaviorSubject } from "rxjs";
2
3
  import { accessibilityManagerLogger as logger } from "./logger";
3
- import { TTSManager } from "../platform/platformUtils";
4
+ import { TTSManager } from "../platform";
4
5
  import { BUTTON_ACCESSIBILITY_KEYS } from "./const";
6
+ import { toString } from "../../utils";
7
+ import { calculateReadingTime } from "./utils";
5
8
  import { AccessibilityRole } from "react-native";
6
- import _ from "lodash";
7
9
 
8
10
  export class AccessibilityManager {
9
11
  private static _instance: AccessibilityManager | null = null;
10
12
  private headingTimeout: NodeJS.Timeout | null = null;
11
- private WORDS_PER_MINUTE = 160;
13
+ private announcementDelayTimeout: NodeJS.Timeout | null = null;
14
+ private WORDS_PER_MINUTE = 140;
12
15
  private MINIMUM_PAUSE = 500;
16
+ private ANNOUNCEMENT_DELAY = 700;
13
17
  private state$ = new BehaviorSubject<AccessibilityState>({
14
18
  screenReaderEnabled: false,
15
19
  reduceMotionEnabled: false,
@@ -25,6 +29,12 @@ export class AccessibilityManager {
25
29
  private ttsManager = TTSManager.getInstance();
26
30
  private localizations: { [key: string]: string } = {};
27
31
  private headingQueue: string[] = [];
32
+ private currentFocusId: string | null = null;
33
+ private headingFocusMap: Map<string, string> = new Map();
34
+ private pendingFocusId: string | null = null;
35
+ private isInitialPlayerAnnouncementReady$ = new BehaviorSubject<boolean>(
36
+ false
37
+ );
28
38
 
29
39
  private constructor() {}
30
40
 
@@ -36,6 +46,26 @@ export class AccessibilityManager {
36
46
  return AccessibilityManager._instance;
37
47
  }
38
48
 
49
+ public get isInitialPlayerAnnouncementReady(): boolean {
50
+ return this.isInitialPlayerAnnouncementReady$.getValue();
51
+ }
52
+
53
+ public setInitialPlayerAnnouncementReady(): void {
54
+ this.isInitialPlayerAnnouncementReady$.next(true);
55
+ }
56
+
57
+ public resetInitialPlayerAnnouncementReady(): void {
58
+ this.isInitialPlayerAnnouncementReady$.next(false);
59
+ }
60
+
61
+ public getInitialAnnouncementReadyObservable() {
62
+ return this.isInitialPlayerAnnouncementReady$.asObservable();
63
+ }
64
+
65
+ public getTTSStateObservable() {
66
+ return this.ttsManager.getStateAsObservable();
67
+ }
68
+
39
69
  /**
40
70
  * The method now accepts any object with localizations using a flattened structure
41
71
  *
@@ -46,7 +76,9 @@ export class AccessibilityManager {
46
76
  * i.e. localizations: [{ en: { accessibility_close_label: "Close", accessibility_close_hint: "Press here to close" } }]
47
77
  */
48
78
  public updateLocalizations(localizations: { [key: string]: string }) {
49
- this.localizations = localizations;
79
+ if (!R.isEmpty(localizations)) {
80
+ this.localizations = localizations;
81
+ }
50
82
  }
51
83
 
52
84
  public getState(): AccessibilityState {
@@ -57,31 +89,25 @@ export class AccessibilityManager {
57
89
  return this.state$.asObservable();
58
90
  }
59
91
 
60
- /** Calculates the reading time for a given text
61
- * This method is a bit of a hack because we don't have a callback, or promise from VIZIO API
62
- * @param text - The text to calculate the reading time for
63
- * @returns The reading time in milliseconds
64
- */
65
- private calculateReadingTime(text: string): number {
66
- const words = text.trim().split(/\s+/).length;
67
-
68
- return Math.max(
69
- this.MINIMUM_PAUSE,
70
- (words / this.WORDS_PER_MINUTE) * 60 * 1000
71
- );
72
- }
73
-
74
92
  /**
75
93
  * Adds a heading to the queue, headings will be read before the next text
76
94
  * Each heading will be read once and removed from the queue
77
95
  */
78
96
  public addHeading(heading: string) {
97
+ if (!this.pendingFocusId) {
98
+ this.pendingFocusId = Date.now().toString();
99
+ }
100
+
101
+ this.headingFocusMap.set(heading, this.pendingFocusId);
79
102
  this.headingQueue.push(heading);
80
103
  }
81
104
 
82
105
  /**
83
106
  * text you want to be read, if you want to use localized text pass keyOfLocalizedText instead
84
107
  * keyOfLocalizedText is the key to the localized text
108
+ *
109
+ * Implements a delay mechanism to reduce noise during rapid navigation.
110
+ * Only the most recent announcement will be read after the delay period.
85
111
  */
86
112
  public readText({
87
113
  text,
@@ -112,19 +138,27 @@ export class AccessibilityManager {
112
138
  textToRead = localizedMessage;
113
139
  }
114
140
 
115
- if (this.headingQueue.length > 0) {
116
- const heading = this.headingQueue.shift()!;
117
- this.ttsManager?.readText(heading);
141
+ const focusId = this.pendingFocusId || Date.now().toString();
142
+ this.currentFocusId = focusId;
143
+ this.pendingFocusId = null;
118
144
 
119
- if (this.headingTimeout) {
120
- clearTimeout(this.headingTimeout);
121
- }
145
+ this.clearAnnouncement();
122
146
 
123
- const pauseTime = this.calculateReadingTime(heading);
147
+ this.announcementDelayTimeout = setTimeout(() => {
148
+ this.executeAnnouncement(textToRead, keyOfLocalizedText, focusId);
149
+ }, this.ANNOUNCEMENT_DELAY);
150
+ }
124
151
 
125
- this.headingTimeout = setTimeout(() => {
126
- this.ttsManager?.readText(textToRead);
127
- }, pauseTime);
152
+ /**
153
+ * Internal method to execute the actual announcement after the delay
154
+ */
155
+ private executeAnnouncement(
156
+ textToRead: string,
157
+ keyOfLocalizedText?: string,
158
+ focusId?: string
159
+ ) {
160
+ if (this.headingQueue.length > 0) {
161
+ this.processHeadingQueue(textToRead, focusId);
128
162
  } else {
129
163
  this.ttsManager?.readText(textToRead);
130
164
  }
@@ -136,19 +170,70 @@ export class AccessibilityManager {
136
170
  });
137
171
  }
138
172
 
173
+ /**
174
+ * Recursively processes all headings in the queue, reading them one by one
175
+ */
176
+ private processHeadingQueue(textToRead: string, focusId?: string) {
177
+ // If focus has changed, abort this announcement
178
+ if (focusId && this.currentFocusId !== focusId) {
179
+ return;
180
+ }
181
+
182
+ if (this.headingQueue.length === 0) {
183
+ if (focusId && this.currentFocusId === focusId) {
184
+ this.ttsManager?.readText(textToRead);
185
+ }
186
+
187
+ return;
188
+ }
189
+
190
+ const heading = this.headingQueue.shift()!;
191
+
192
+ const headingFocusId = this.headingFocusMap.get(heading);
193
+
194
+ if (headingFocusId && headingFocusId !== focusId) {
195
+ // This heading belongs to a previous focus, skip it
196
+ this.headingFocusMap.delete(heading);
197
+ this.processHeadingQueue(textToRead, focusId);
198
+
199
+ return;
200
+ }
201
+
202
+ this.ttsManager?.readText(heading);
203
+ this.headingFocusMap.delete(heading); // Clean up after reading
204
+
205
+ if (this.headingTimeout) {
206
+ clearTimeout(this.headingTimeout);
207
+ }
208
+
209
+ const pauseTime = calculateReadingTime(
210
+ heading,
211
+ this.WORDS_PER_MINUTE,
212
+ this.MINIMUM_PAUSE,
213
+ this.ANNOUNCEMENT_DELAY
214
+ );
215
+
216
+ this.headingTimeout = setTimeout(() => {
217
+ this.processHeadingQueue(textToRead, focusId);
218
+ }, pauseTime);
219
+ }
220
+
139
221
  public getButtonAccessibilityProps(name: string): AccessibilityProps {
140
- const buttonName = _.toString(name);
222
+ const buttonName = toString(name);
141
223
 
142
224
  const buttonConfig = BUTTON_ACCESSIBILITY_KEYS[buttonName];
143
225
 
144
226
  if (!buttonConfig) {
145
227
  return {
228
+ accessible: true,
146
229
  accessibilityLabel: buttonName,
147
230
  accessibilityHint: `Press button to perform action on ${buttonName}`,
148
231
  "aria-label": buttonName,
149
232
  "aria-description": `Press button to perform action on ${buttonName}`,
150
233
  accessibilityRole: "button" as AccessibilityRole,
151
234
  "aria-role": "button",
235
+ role: "button",
236
+ tabindex: 0,
152
237
  };
153
238
  }
154
239
 
@@ -162,23 +247,52 @@ export class AccessibilityManager {
162
247
  `Press button to perform action on ${buttonName}`;
163
248
 
164
249
  return {
250
+ accessible: true,
165
251
  accessibilityLabel: label,
166
252
  accessibilityHint: hint,
167
253
  "aria-label": label,
168
254
  "aria-description": hint,
169
255
  accessibilityRole: "button" as AccessibilityRole,
170
256
  "aria-role": "button",
257
+ role: "button",
258
+ tabindex: 0,
171
259
  };
172
260
  }
173
261
 
174
262
  public getInputAccessibilityProps(inputName: string): AccessibilityProps {
175
263
  return {
264
+ accessible: true,
176
265
  accessibilityLabel: inputName,
177
266
  accessibilityHint: `Enter text into ${inputName}`,
178
267
  "aria-label": inputName,
179
268
  "aria-description": `Enter text into ${inputName}`,
180
- accessibilityRole: "textbox" as AccessibilityRole,
181
- "aria-role": "textbox",
269
+ accessibilityRole: "searchbox" as AccessibilityRole,
270
+ "aria-role": "searchbox",
271
+ role: "searchbox",
272
+ tabindex: 0,
273
+ };
274
+ }
275
+
276
+ /**
277
+ * Extracts accessibility props from component props and returns them as HTML attributes
278
+ * @param props - Component props containing accessibility properties
279
+ * @returns Object with accessibility HTML attributes
280
+ */
281
+ public getWebAccessibilityProps(props: any): AccessibilityProps {
282
+ const {
283
+ "aria-label": ariaLabel,
284
+ "aria-description": ariaDescription,
285
+ "aria-role": ariaRole,
286
+ role,
287
+ tabindex,
288
+ } = props;
289
+
290
+ return {
291
+ "aria-label": ariaLabel,
292
+ "aria-description": ariaDescription,
293
+ "aria-role": ariaRole,
294
+ role: role || ariaRole,
295
+ tabindex,
182
296
  };
183
297
  }
184
298
 
@@ -196,4 +310,11 @@ export class AccessibilityManager {
196
310
 
197
311
  return this.localizations[key];
198
312
  }
313
+
314
+ private clearAnnouncement() {
315
+ if (this.announcementDelayTimeout) {
316
+ clearTimeout(this.announcementDelayTimeout);
317
+ this.announcementDelayTimeout = null;
318
+ }
319
+ }
199
320
  }
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Calculates the reading time for a given text based on word count
3
+ * @param text - The text to calculate the reading time for
4
+ * @param wordsPerMinute - Words per minute reading speed (default: 160)
5
+ * @param minimumPause - Minimum pause time in milliseconds (default: 500)
6
+ * @param announcementDelay - Additional delay for announcement in milliseconds (default: 700)
7
+ * @returns The reading time in milliseconds
8
+ */
9
+ export function calculateReadingTime(
10
+ text: string,
11
+ wordsPerMinute: number = 140,
12
+ minimumPause: number = 500,
13
+ announcementDelay: number = 700
14
+ ): number {
15
+ const words = text
16
+ .trim()
17
+ .split(/(?<=\d)(?=[a-zA-Z])|(?<=[a-zA-Z])(?=\d)|[^\w\s]+|\s+/)
18
+ .filter(Boolean).length;
19
+
20
+ return (
21
+ Math.max(minimumPause, (words / wordsPerMinute) * 60 * 1000) +
22
+ announcementDelay
23
+ );
24
+ }
@@ -1,10 +1,13 @@
1
1
  import { ContextKeysManager } from "./index";
2
2
  import * as R from "ramda";
3
+ import * as _ from "lodash";
4
+ import { useScreenStateStore } from "../../reactHooks/navigation/useScreenStateStore";
3
5
 
4
- interface IResolver {
6
+ export interface IResolver {
5
7
  resolve: (string) => Promise<string | number | object>;
6
8
  }
7
9
 
10
+ // TODO: Rename to ObjectKeyResolver or similar
8
11
  export class EntryResolver implements IResolver {
9
12
  entry: ZappEntry;
10
13
 
@@ -21,6 +24,28 @@ export class EntryResolver implements IResolver {
21
24
  }
22
25
  }
23
26
 
27
+ // TODO: Move to proper place
28
+
29
+ export class ScreenStateResolver implements IResolver {
30
+ constructor(
31
+ private screenStateStore: ReturnType<typeof useScreenStateStore>
32
+ ) {}
33
+
34
+ async resolve(key: string) {
35
+ const screenState = this.screenStateStore.getState().data;
36
+
37
+ if (!key || key.length === 0) {
38
+ return screenState;
39
+ }
40
+
41
+ if (key.includes(".")) {
42
+ return R.view(R.lensPath(key.split(".")), screenState);
43
+ }
44
+
45
+ return screenState?.[key];
46
+ }
47
+ }
48
+
24
49
  export class ContextResolver implements IResolver {
25
50
  resolve = async (compositeKey: string) =>
26
51
  ContextKeysManager.instance.getKey(compositeKey);
@@ -64,3 +89,19 @@ export const resolveObjectValues = async (
64
89
 
65
90
  return Object.fromEntries(resolvedEntries);
66
91
  };
92
+
93
+ export const extractAtValues = _.memoize((input: any): string[] => {
94
+ return _.flatMapDeep(input, (value: any) => {
95
+ if (_.isString(value)) {
96
+ const matches = value.match(/@\{([^}]*)\}/g);
97
+
98
+ return matches ? matches.map((match) => match.slice(2, -1)) : [];
99
+ }
100
+
101
+ if (_.isObject(value)) {
102
+ return extractAtValues(_.values(value));
103
+ }
104
+
105
+ return [];
106
+ });
107
+ });
@@ -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,9 @@ exports[`focusManager should be defined 1`] = `
24
25
  "invokeHandler": [Function],
25
26
  "isCurrentFocusOnTheTopScreen": [Function],
26
27
  "isFocusDisabled": [Function],
28
+ "isFocusOn": [Function],
29
+ "isFocusOnContent": [Function],
30
+ "isFocusOnMenu": [Function],
27
31
  "isGroupItemFocused": [Function],
28
32
  "longPress": [Function],
29
33
  "moveFocus": [Function],
@@ -63,6 +67,7 @@ exports[`focusManagerIOS should be defined 1`] = `
63
67
  "getGroupRootById": [Function],
64
68
  "getPreferredFocusChild": [Function],
65
69
  "invokeHandler": [Function],
70
+ "isFocusOn": [Function],
66
71
  "isGroupItemFocused": [Function],
67
72
  "moveFocus": [Function],
68
73
  "on": [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", () => {});