@applicaster/zapp-react-native-utils 14.0.0-alpha.1101330035 → 14.0.0-alpha.1118824347

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.
@@ -16,6 +16,7 @@ import { QUICK_BRICK_EVENTS } from "@applicaster/zapp-react-native-bridge/QuickB
16
16
  import { showConfirmationDialog } from "../alertUtils";
17
17
  import { createCloudEvent, sendCloudEvent } from "../cloudEventsUtils";
18
18
  import { createLogger } from "../logger";
19
+ import { StorageMultiSelectProvider } from "@applicaster/zapp-react-native-bridge/ZappStorage/StorageMultiSelectProvider";
19
20
  import { ACTIVE_LAYOUT_ID_STORAGE_KEY } from "@applicaster/quick-brick-core/App/remoteContextReloader/consts";
20
21
  import { appStore } from "@applicaster/zapp-react-native-redux/AppStore";
21
22
  import { loadPipesData } from "@applicaster/zapp-react-native-redux/ZappPipes";
@@ -24,19 +25,15 @@ import {
24
25
  resolveObjectValues,
25
26
  } from "../appUtils/contextKeysManager/contextResolver";
26
27
  import { useNavigation } from "../reactHooks";
28
+ import { get } from "../utils";
27
29
 
28
30
  import {
29
31
  useContentTypes,
30
32
  usePickFromState,
31
33
  } from "@applicaster/zapp-react-native-redux/hooks";
32
- import { useSubscriberFor } from "../reactHooks/useSubscriberFor";
34
+ import { TOGGLE_FLAG_MAX_ITEMS_REACHED_EVENT } from "./consts";
35
+ import { postEvent, useSubscriberFor } from "../reactHooks/useSubscriberFor";
33
36
  import { APP_EVENTS } from "../appUtils/events";
34
- import {
35
- localStorageToggleFlag,
36
- sessionStorageToggleFlag,
37
- } from "./StorageActions";
38
-
39
- import { screenSetVariable, screenToggleFlag } from "./ScreenActions";
40
37
 
41
38
  export const { log_error, log_info, log_debug } = createLogger({
42
39
  subsystem: "ActionExecutorContext",
@@ -85,6 +82,19 @@ function findParentComponent(
85
82
  return null;
86
83
  }
87
84
 
85
+ // send all data just in case (like for message string formatting)
86
+ // Type is not exported for now
87
+ type MaxTagsReachedEvent = {
88
+ selectedItems: string[];
89
+ maxItems: number;
90
+ tag: string;
91
+ keyNamespace: string;
92
+ };
93
+
94
+ async function onMaxTagsReached(data: MaxTagsReachedEvent) {
95
+ postEvent(TOGGLE_FLAG_MAX_ITEMS_REACHED_EVENT, [data]);
96
+ }
97
+
88
98
  const prepareDefaultActions = (actionExecutor) => {
89
99
  actionExecutor.registerAction("localStorageSet", async (action) => {
90
100
  const namespaces = action.options.content;
@@ -168,15 +178,10 @@ const prepareDefaultActions = (actionExecutor) => {
168
178
 
169
179
  const entry = context?.entry || {};
170
180
  const entryResolver = new EntryResolver(entry);
171
- const screenData = context?.screenStateStore.getState().data || {};
172
- const screenResolver = new EntryResolver(screenData || {});
173
181
 
174
182
  const data =
175
183
  options?.data && options.inflateData
176
- ? await resolveObjectValues(options.data, {
177
- entry: entryResolver,
178
- screen: screenResolver,
179
- })
184
+ ? await resolveObjectValues(options.data, { entry: entryResolver })
180
185
  : options?.data || entry;
181
186
 
182
187
  const cloudEvent = await createCloudEvent({
@@ -210,63 +215,81 @@ const prepareDefaultActions = (actionExecutor) => {
210
215
  return ActionResult.Error;
211
216
  });
212
217
 
213
- actionExecutor.registerAction(
214
- "sessionStorageToggleFlag",
215
- async (
216
- action: ActionType,
217
- context?: Record<string, any>
218
- ): Promise<ActionResult> => {
219
- return await sessionStorageToggleFlag(context, action);
220
- }
221
- );
222
-
223
218
  actionExecutor.registerAction(
224
219
  "localStorageToggleFlag",
225
220
  async (
226
221
  action: ActionType,
227
222
  context?: Record<string, any>
228
223
  ): Promise<ActionResult> => {
229
- return await localStorageToggleFlag(context, action);
230
- }
231
- );
224
+ if (!context) {
225
+ log_error(
226
+ "handleAction: localStorageToggleFlag action missing context"
227
+ );
232
228
 
233
- actionExecutor.registerAction(
234
- "screenSetVariable",
235
- async (
236
- action: ActionType,
237
- context?: Record<string, any>
238
- ): Promise<ActionResult> => {
239
- const route = context?.screenRoute;
240
- const screenStateStore = context?.screenStateStore;
241
-
242
- await screenSetVariable(
243
- route,
244
- screenStateStore,
245
- { entry: context?.entry, options: action.options },
246
- action
247
- );
229
+ return ActionResult.Error;
230
+ }
248
231
 
249
- return Promise.resolve(ActionResult.Success);
250
- }
251
- );
232
+ const entry = context?.entry as ZappEntry;
252
233
 
253
- actionExecutor.registerAction(
254
- "screenToggleFlag",
255
- async (
256
- action: ActionType,
257
- context?: Record<string, any>
258
- ): Promise<ActionResult> => {
259
- const screenRoute = context?.screenRoute;
260
- const screenStateStore = context?.screenStateStore;
261
-
262
- await screenToggleFlag(
263
- screenRoute,
264
- screenStateStore,
265
- { entry: context?.entry, options: action.options },
266
- action
267
- );
234
+ if (!entry) {
235
+ log_error(
236
+ "handleAction: localStorageToggleFlag action missing entry. Entry is required to get the tag."
237
+ );
238
+
239
+ return ActionResult.Error;
240
+ }
241
+
242
+ const tag = action.options?.selector
243
+ ? get(entry, action.options.selector)
244
+ : (entry.extensions?.tag ?? entry.id);
245
+
246
+ const keyNamespace = action.options?.key;
247
+
248
+ if (keyNamespace && tag) {
249
+ const multiSelectProvider =
250
+ StorageMultiSelectProvider.getProvider(keyNamespace);
251
+
252
+ const selectedItems = await multiSelectProvider.getSelectedAsync();
253
+ const isTagInSelectedItems = selectedItems.includes(tag);
268
254
 
269
- return Promise.resolve(ActionResult.Success);
255
+ log_info(
256
+ `handleAction: localStorageToggleFlag event will ${
257
+ isTagInSelectedItems ? "remove" : "add"
258
+ } tag: ${tag} for keyNamespace: ${keyNamespace}, current selectedItems: ${selectedItems}`
259
+ );
260
+
261
+ if (selectedItems.includes(tag)) {
262
+ await multiSelectProvider.removeItem(tag);
263
+ } else {
264
+ const maxItems = action.options?.max_items;
265
+
266
+ if (maxItems && selectedItems.length >= maxItems) {
267
+ log_info(
268
+ `handleAction: localStorageToggleFlag event reached max items limit: ${maxItems}, cannot add tag: ${tag}`
269
+ );
270
+
271
+ await onMaxTagsReached({
272
+ selectedItems,
273
+ maxItems,
274
+ tag,
275
+ keyNamespace,
276
+ });
277
+
278
+ return ActionResult.Cancel;
279
+ }
280
+
281
+ await multiSelectProvider.addItem(tag);
282
+ }
283
+ } else {
284
+ log_error(
285
+ "handleAction: localStorageToggleFlag event missing keyNamespace or tag",
286
+ { keyNamespace, tag }
287
+ );
288
+
289
+ return ActionResult.Error;
290
+ }
291
+
292
+ return ActionResult.Success;
270
293
  }
271
294
  );
272
295
  };
@@ -9,7 +9,7 @@ import {
9
9
  } from "../events";
10
10
  import { isEmptyOrNil } from "../../cellUtils";
11
11
  import { get } from "lodash";
12
- import { StorageMultiSelectProvider } from "@applicaster/zapp-react-native-utils/storage/StorageMultiSelectProvider";
12
+ import { StorageMultiSelectProvider } from "@applicaster/zapp-react-native-bridge/ZappStorage/StorageMultiSelectProvider";
13
13
 
14
14
  export enum OfflineItemState {
15
15
  notExist = "NOT_EXISTS",
@@ -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,11 +1,10 @@
1
1
  import { ContextKeysManager } from "./index";
2
2
  import * as R from "ramda";
3
3
 
4
- export interface IResolver {
4
+ interface IResolver {
5
5
  resolve: (string) => Promise<string | number | object>;
6
6
  }
7
7
 
8
- // TODO: Rename to ObjectKeyResolver or similar
9
8
  export class EntryResolver implements IResolver {
10
9
  entry: ZappEntry;
11
10
 
@@ -22,18 +21,6 @@ export class EntryResolver implements IResolver {
22
21
  }
23
22
  }
24
23
 
25
- // TODO: Move to proper place
26
-
27
- export class ScreenStateResolver implements IResolver {
28
- constructor(private screenStateStore: ScreenStateStore) {}
29
-
30
- async resolve(key: string) {
31
- const screenState = this.screenStateStore.getState().data;
32
-
33
- return screenState?.[key];
34
- }
35
- }
36
-
37
24
  export class ContextResolver implements IResolver {
38
25
  resolve = async (compositeKey: string) =>
39
26
  ContextKeysManager.instance.getKey(compositeKey);
@@ -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,7 +25,10 @@ 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],
31
+ "isOnRootScreen": [Function],
28
32
  "longPress": [Function],
29
33
  "moveFocus": [Function],
30
34
  "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", () => {});
@@ -14,6 +14,15 @@ import { subscriber } from "../../functionUtils";
14
14
  import { coreLogger } from "../../logger";
15
15
  import { ACTION } from "./utils/enums";
16
16
 
17
+ import {
18
+ isTabsScreen,
19
+ findSelectedTabId,
20
+ findSelectedMenuId,
21
+ isTabsMenuFocused,
22
+ isCurrentFocusOnContent,
23
+ isCurrentFocusOnMenu,
24
+ } from "../focusManagerAux/utils";
25
+
17
26
  const logger = coreLogger.addSubsystem("focusManager");
18
27
 
19
28
  const isFocusEnabled = (focusableItem): boolean => {
@@ -100,7 +109,7 @@ export const focusManager = (function () {
100
109
  * @private
101
110
  * @param {Object} direction of the navigation which led to this action
102
111
  */
103
- function focus(direction) {
112
+ function focus(direction, context?: FocusManager.FocusContext) {
104
113
  const currentFocusable = getCurrentFocus();
105
114
 
106
115
  if (
@@ -108,7 +117,7 @@ export const focusManager = (function () {
108
117
  !currentFocusable.isGroup &&
109
118
  currentFocusable.isMounted()
110
119
  ) {
111
- currentFocusable.setFocus(direction);
120
+ currentFocusable.setFocus(direction, context);
112
121
  }
113
122
  }
114
123
 
@@ -205,7 +214,7 @@ export const focusManager = (function () {
205
214
  * @param {Array<string>} ids - An array of node IDs to update.
206
215
  * @param {boolean} setFocus - A flag indicating whether to set focus (true) or blur (false) on the nodes.
207
216
  */
208
- const updateNodeFocus = (ids, action) => {
217
+ const updateNodeFocus = (ids, action, context: FocusManager.FocusContext) => {
209
218
  if (!ids || ids.length === 0) {
210
219
  return; // Nothing to do
211
220
  }
@@ -222,11 +231,13 @@ export const focusManager = (function () {
222
231
 
223
232
  // Function to apply the action (focus or blur)
224
233
  const applyAction = (node) => {
234
+ const direction = undefined;
235
+
225
236
  if (node && node.component) {
226
237
  if (action === "focus") {
227
- node.component.setFocus();
238
+ node.component.setFocus(direction, context);
228
239
  } else if (action === "blur") {
229
- node.component.setBlur();
240
+ node.component.setBlur(direction, context);
230
241
  }
231
242
  }
232
243
  };
@@ -253,7 +264,11 @@ export const focusManager = (function () {
253
264
  * @param {Object} direction of the navigation, which led to this focus change
254
265
  * to another group or not. defaults to false
255
266
  */
256
- function setFocus(id: string, direction?: FocusManager.Web.Direction) {
267
+ function setFocus(
268
+ id: string,
269
+ direction?: FocusManager.Web.Direction,
270
+ context?: FocusManager.FocusContext
271
+ ) {
257
272
  if (focusDisabled) return false;
258
273
 
259
274
  // due to optimisiation it's recommanded to set currentFocusNode before setFocus
@@ -266,15 +281,61 @@ export const focusManager = (function () {
266
281
  );
267
282
 
268
283
  // Set focus on current node parents and blur on previous node parents
269
- updateNodeFocus(currentNodeParentsIDs, ACTION.FOCUS);
270
- updateNodeFocus(previousNodeParentsIDs, ACTION.BLUR);
284
+ updateNodeFocus(currentNodeParentsIDs, ACTION.FOCUS, context);
285
+ updateNodeFocus(previousNodeParentsIDs, ACTION.BLUR, context);
271
286
 
272
287
  currentFocusNode = focusableTree.findInTree(id);
273
288
  }
274
289
 
275
290
  setLastFocusOnParentNode(currentFocusNode);
276
291
 
277
- focus(direction);
292
+ focus(direction, context);
293
+ }
294
+
295
+ function isFocusOnContent() {
296
+ return isCurrentFocusOnContent(currentFocusNode);
297
+ }
298
+
299
+ function isFocusOnMenu() {
300
+ return isCurrentFocusOnMenu(currentFocusNode);
301
+ }
302
+
303
+ function landFocusTo(id) {
304
+ if (id) {
305
+ // set focus on selected menu item
306
+ const direction = undefined;
307
+
308
+ const context: FocusManager.FocusContext = {
309
+ source: "back",
310
+ preserveScroll: true,
311
+ };
312
+
313
+ blur(direction);
314
+ setFocus(id, direction, context);
315
+ }
316
+ }
317
+
318
+ // Move focus to appropriate top navigation tab with context
319
+ function focusTopNavigation() {
320
+ // Store current focus for restoration
321
+ // this.storeFocusState();
322
+
323
+ if (isTabsScreen(focusableTree) && !isTabsMenuFocused(currentFocusNode)) {
324
+ const selectedTabId = findSelectedTabId(focusableTree);
325
+
326
+ console.log("debug_2", "FM - moveFocusToSelectedTab", { selectedTabId });
327
+
328
+ landFocusTo(selectedTabId);
329
+
330
+ return;
331
+ }
332
+
333
+ // Set focus with back button context
334
+ const selectedMenuItemId = findSelectedMenuId(focusableTree);
335
+
336
+ console.log("debug_2", "IM - moveFocusToTopMenu", { selectedMenuItemId });
337
+
338
+ landFocusTo(selectedMenuItemId);
278
339
  }
279
340
 
280
341
  /**
@@ -483,6 +544,12 @@ export const focusManager = (function () {
483
544
  return haveSameParentBeforeRoot(currentFocusNode, R.last(routes));
484
545
  }
485
546
 
547
+ function isOnRootScreen() {
548
+ const routes = R.pathOr([], ["root", "children"], focusableTree);
549
+
550
+ return routes.length <= 1;
551
+ }
552
+
486
553
  function recoverFocus() {
487
554
  if (!isCurrentFocusOnTheTopScreen()) {
488
555
  // We've failed to set focused node on the new screen => run focus recovery
@@ -576,5 +643,10 @@ export const focusManager = (function () {
576
643
  recoverFocus,
577
644
  isCurrentFocusOnTheTopScreen,
578
645
  findPreferredFocusChild,
646
+
647
+ focusTopNavigation,
648
+ isFocusOnContent,
649
+ isFocusOnMenu,
650
+ isOnRootScreen,
579
651
  };
580
652
  })();
@@ -1,4 +1,4 @@
1
- import { isNotNil } from "@applicaster/zapp-react-native-utils/reactUtils/helpers";
1
+ import { isNil } from "@applicaster/zapp-react-native-utils/utils";
2
2
  import { find, last, pathOr, startsWith } from "ramda";
3
3
  import {
4
4
  QUICK_BRICK_CONTENT,
@@ -9,6 +9,8 @@ import {
9
9
  // run this check too often could lead to performance penalty on low-end devices
10
10
  const HOW_OFTEN_TO_CHECK_CONDITION = 300; // ms
11
11
 
12
+ const TABS_GROUP_ID = "PickerSelector.sp-river";
13
+
12
14
  type Props = {
13
15
  maxTimeout: number;
14
16
  conditionFn: () => boolean;
@@ -49,7 +51,7 @@ export const waitForActiveScreen = (currentRoute: string, focusableTree) => {
49
51
 
50
52
  const route = find((route) => route.id === currentRoute, routes);
51
53
 
52
- return isNotNil(route);
54
+ return !isNil(route);
53
55
  };
54
56
 
55
57
  return waitUntil({
@@ -99,3 +101,47 @@ export const waitForContent = (focusableTree) => {
99
101
  conditionFn: contentHasAnyChildren,
100
102
  });
101
103
  };
104
+
105
+ export function isTabsScreen(focusableTree) {
106
+ const tabsGroup = focusableTree.findInTree(TABS_GROUP_ID);
107
+
108
+ return !!tabsGroup;
109
+ }
110
+
111
+ export const findSelectedTabId = (focusableTree) => {
112
+ // FIXME - find elegant way how to get ID of selected tab
113
+ const tabsGroup = focusableTree.findInTree(TABS_GROUP_ID);
114
+
115
+ const selectedTabId = tabsGroup.children.find(
116
+ (child) => child.component.props.preferredFocus // ?? selected
117
+ )?.id;
118
+
119
+ return selectedTabId;
120
+ };
121
+
122
+ export const findSelectedMenuId = (focusableTree) => {
123
+ // Set focus with back button context
124
+ const navbar = getNavbarNode(focusableTree);
125
+
126
+ const selectedMenuItemId = find(
127
+ (child) => child.component.props.selected,
128
+ navbar.children
129
+ )?.id;
130
+
131
+ return selectedMenuItemId;
132
+ };
133
+
134
+ export const isTabsMenuFocused = (node) => {
135
+ // FIXME - find elegant way how to get ID of selected tab
136
+ return node.parent.id === TABS_GROUP_ID;
137
+ };
138
+
139
+ export const isCurrentFocusOnMenu = (node) => {
140
+ // FIXME
141
+ return node.parent.id.startsWith(QUICK_BRICK_NAVBAR);
142
+ };
143
+
144
+ export const isCurrentFocusOnContent = (node) => {
145
+ // FIXME
146
+ return !isCurrentFocusOnMenu(node);
147
+ };
@@ -93,7 +93,7 @@ export const isIndexInRange = (index: number, length: number): boolean => {
93
93
  export const makeListOfIndexes = (size: number): number[] =>
94
94
  Array.from({ length: size }, (_, index) => index);
95
95
 
96
- export const makeListOf = (value: unknown, size: number): number[] => {
96
+ export const makeListOf = <T>(value: T, size: number): T[] => {
97
97
  return Array(size).fill(value);
98
98
  };
99
99
 
@@ -0,0 +1,38 @@
1
+ import { isTabsScreen } from "..";
2
+
3
+ describe("isTabsScreen", () => {
4
+ it("should return true if the component type is 'screen-picker-qb-tv' and tabs_screen=true", () => {
5
+ const item = { component_type: "screen-picker-qb-tv", tabs_screen: true };
6
+ expect(isTabsScreen(item)).toBe(true);
7
+ });
8
+
9
+ it("should return true if the component type is 'screen-picker-qb-tv' and tabs_screen=false", () => {
10
+ const item = { component_type: "screen-picker-qb-tv", tabs_screen: false };
11
+ expect(isTabsScreen(item)).toBe(false);
12
+ });
13
+
14
+ it("should return false if the component type is not 'screen-picker-qb-tv'", () => {
15
+ const item = { component_type: "other-component" };
16
+ expect(isTabsScreen(item)).toBe(false);
17
+ });
18
+
19
+ it("should return false if the component type is undefined", () => {
20
+ const item = { component_type: undefined };
21
+ expect(isTabsScreen(item)).toBe(false);
22
+ });
23
+
24
+ it("should return false if the item is null", () => {
25
+ const item = null;
26
+ expect(isTabsScreen(item)).toBe(false);
27
+ });
28
+
29
+ it("should return false if the item is undefined", () => {
30
+ const item = undefined;
31
+ expect(isTabsScreen(item)).toBe(false);
32
+ });
33
+
34
+ it("should return false if the item is an empty object", () => {
35
+ const item = {};
36
+ expect(isTabsScreen(item)).toBe(false);
37
+ });
38
+ });
@@ -5,7 +5,7 @@ const EMPTY_GROUP_COMPONENT = "empty_group_component";
5
5
 
6
6
  const GALLERY = "gallery-qb";
7
7
 
8
- const SCREEN_PICKER = "screen-picker-qb-tv";
8
+ export const SCREEN_PICKER = "screen-picker-qb-tv";
9
9
 
10
10
  const HORIZONTAL_LIST = "horizontal_list_qb";
11
11
 
@@ -37,3 +37,6 @@ export const isEmptyGroup = (item): boolean =>
37
37
  export const isGroupInfo = (item): boolean =>
38
38
  item?.component_type === GROUP_INFO ||
39
39
  item?.component_type === GROUP_INFO_OLD;
40
+
41
+ export const isTabsScreen = (item): boolean =>
42
+ isScreenPicker(item) && item?.tabs_screen;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-native-utils",
3
- "version": "14.0.0-alpha.1101330035",
3
+ "version": "14.0.0-alpha.1118824347",
4
4
  "description": "Applicaster Zapp React Native utilities package",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "homepage": "https://github.com/applicaster/quickbrick#readme",
29
29
  "dependencies": {
30
- "@applicaster/applicaster-types": "14.0.0-alpha.1101330035",
30
+ "@applicaster/applicaster-types": "14.0.0-alpha.1118824347",
31
31
  "buffer": "^5.2.1",
32
32
  "camelize": "^1.0.0",
33
33
  "dayjs": "^1.11.10",
@@ -16,8 +16,7 @@ import { ActionExecutorContext } from "@applicaster/zapp-react-native-utils/acti
16
16
  import { isFunction, noop } from "../../functionUtils";
17
17
  import { useSendAnalyticsOnPress } from "../analytics";
18
18
  import { logOnPress, warnEmptyContentType } from "./helpers";
19
- import { useCurrentScreenData, useScreenContext } from "../screen";
20
- import { useScreenStateStore } from "../navigation/useScreenStateStore";
19
+ import { useCurrentScreenData } from "../screen";
21
20
 
22
21
  /**
23
22
  * If onCellTap is defined execute the function and
@@ -43,12 +42,10 @@ export const useCellClick = ({
43
42
  }: Props): onPressReturnFn => {
44
43
  const { push, currentRoute } = useNavigation();
45
44
  const { pathname } = useRoute();
46
- const screenStateStore = useScreenStateStore();
47
45
 
48
46
  const onCellTap: Option<Function> = React.useContext(CellTapContext);
49
47
  const actionExecutor = React.useContext(ActionExecutorContext);
50
48
  const screenData = useCurrentScreenData();
51
- const screenState = useScreenContext()?.options;
52
49
 
53
50
  const cellSelectable = toBooleanWithDefaultTrue(
54
51
  component?.rules?.component_cells_selectable
@@ -86,9 +83,6 @@ export const useCellClick = ({
86
83
  await actionExecutor?.handleEntryActions(selectedItem, {
87
84
  component,
88
85
  screenData,
89
- screenState,
90
- screenRoute: pathname,
91
- screenStateStore,
92
86
  });
93
87
  }
94
88
 
@@ -123,7 +117,6 @@ export const useCellClick = ({
123
117
  push,
124
118
  sendAnalyticsOnPress,
125
119
  screenData,
126
- screenState,
127
120
  ]
128
121
  );
129
122