@applicaster/zapp-react-native-utils 13.0.0-rc.99 → 14.0.0-rc.2

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 (41) hide show
  1. package/actionsExecutor/ActionExecutorContext.tsx +55 -6
  2. package/actionsExecutor/consts.ts +4 -0
  3. package/appUtils/__tests__/__snapshots__/localizationsHelper.test.ts.snap +151 -0
  4. package/appUtils/__tests__/allZappLocales.ts +79 -0
  5. package/appUtils/__tests__/{localizationsHelper.test.js → localizationsHelper.test.ts} +11 -0
  6. package/appUtils/accessibilityManager/const.ts +18 -0
  7. package/appUtils/focusManager/__tests__/__snapshots__/focusManager.test.js.snap +1 -0
  8. package/appUtils/focusManager/index.ios.ts +14 -4
  9. package/appUtils/focusManager/utils/__tests__/findChild.test.ts +35 -0
  10. package/appUtils/focusManager/utils/index.ts +5 -0
  11. package/appUtils/localizationsHelper.ts +10 -2
  12. package/appUtils/playerManager/playerHooks/usePlayerCurrentTime.tsx +11 -7
  13. package/cellUtils/index.ts +9 -5
  14. package/componentsUtils/index.ts +8 -1
  15. package/localizationUtils/index.ts +3 -3
  16. package/manifestUtils/defaultManifestConfigurations/generalContent.js +13 -0
  17. package/manifestUtils/defaultManifestConfigurations/player.js +0 -8
  18. package/manifestUtils/index.js +2 -0
  19. package/manifestUtils/keys.js +27 -2
  20. package/navigationUtils/__tests__/navigationUtils.test.js +0 -65
  21. package/navigationUtils/index.ts +0 -31
  22. package/package.json +2 -2
  23. package/playerUtils/configurationGenerator.ts +0 -16
  24. package/playerUtils/index.ts +17 -0
  25. package/reactHooks/app/useAppState.ts +2 -2
  26. package/reactHooks/feed/useBatchLoading.ts +10 -12
  27. package/reactHooks/navigation/{useGetTabBarHeight.ts → getTabBarHeight.ts} +1 -1
  28. package/reactHooks/navigation/useGetBottomTabBarHeight.ts +10 -3
  29. package/reactHooks/navigation/useNavigationPluginData.ts +8 -4
  30. package/reactHooks/navigation/useNavigationType.ts +4 -2
  31. package/reactHooks/screen/__tests__/useScreenBackgroundColor.test.tsx +69 -0
  32. package/reactHooks/screen/useScreenBackgroundColor.ts +3 -15
  33. package/reactHooks/state/README.md +79 -0
  34. package/reactHooks/state/ZStoreProvider.tsx +71 -0
  35. package/reactHooks/state/__tests__/ZStoreProvider.test.tsx +66 -0
  36. package/reactHooks/state/index.ts +2 -0
  37. package/reactHooks/useListenEventBusEvent.ts +1 -1
  38. package/reactUtils/index.ts +9 -0
  39. package/typeGuards/index.ts +3 -0
  40. package/utils/index.ts +1 -1
  41. package/zappFrameworkUtils/localStorageHelper.ts +32 -10
@@ -0,0 +1,66 @@
1
+ import React from "react";
2
+ import { render, screen } from "@testing-library/react-native";
3
+ import { Text } from "react-native";
4
+ import { ZStoreProvider, useZStore } from "../ZStoreProvider";
5
+ import { useStore } from "zustand";
6
+
7
+ interface TestState {
8
+ value: string;
9
+ }
10
+
11
+ // Test component that uses the store
12
+ const TestComponent = ({ storeName }: { storeName: string }) => {
13
+ const store = useZStore(storeName);
14
+ const value = useStore(store, (state: any) => (state as TestState).value);
15
+
16
+ return <Text testID="test-value">{value}</Text>;
17
+ };
18
+
19
+ // Test component that provides a store
20
+ const TestProvider = ({ children }: { children: React.ReactNode }) => {
21
+ return (
22
+ <ZStoreProvider name="testStore" value={{ value: "test-value" }}>
23
+ {children}
24
+ </ZStoreProvider>
25
+ );
26
+ };
27
+
28
+ describe("ZStoreProvider and useZStore", () => {
29
+ it("should provide a store and allow access via useZStore", () => {
30
+ render(
31
+ <TestProvider>
32
+ <TestComponent storeName="testStore" />
33
+ </TestProvider>
34
+ );
35
+
36
+ expect(screen.getByTestId("test-value").props.children).toBe("test-value");
37
+ });
38
+
39
+ it("should throw error when useZStore is used outside provider", () => {
40
+ // Suppress console.error for this test
41
+ const originalError = console.error;
42
+ console.error = jest.fn();
43
+
44
+ expect(() => {
45
+ render(<TestComponent storeName="testStore" />);
46
+ }).toThrow("useZStore must be used within a ZStoreProvider");
47
+
48
+ console.error = originalError;
49
+ });
50
+
51
+ it("should throw error when store name is not found", () => {
52
+ // Suppress console.error for this test
53
+ const originalError = console.error;
54
+ console.error = jest.fn();
55
+
56
+ expect(() => {
57
+ render(
58
+ <TestProvider>
59
+ <TestComponent storeName="nonExistentStore" />
60
+ </TestProvider>
61
+ );
62
+ }).toThrow('Store with name "nonExistentStore" not found');
63
+
64
+ console.error = originalError;
65
+ });
66
+ });
@@ -1,3 +1,5 @@
1
1
  export { useRivers } from "./useRivers";
2
2
 
3
3
  export { useHomeRiver } from "./useHomeRiver";
4
+
5
+ export { ZStoreProvider, useZStore } from "./ZStoreProvider";
@@ -23,5 +23,5 @@ export const useListenEventBusEvent = (
23
23
  sub.remove(); // stop listening to DeviceEventEmitter
24
24
  };
25
25
  }
26
- }, []);
26
+ }, [handler, subscriptionID, source, events]);
27
27
  };
@@ -187,3 +187,12 @@ export const hasVizioAPIs = () => {
187
187
 
188
188
  return hasAPIs;
189
189
  };
190
+
191
+ /**
192
+ * Checks if the Android version is at least the expected version
193
+ * @param expectedVersion The version to compare against
194
+ * @returns True if the current Android version is at least the expected version, false otherwise
195
+ */
196
+ export const isAndroidVersionAtLeast = (expectedVersion: number) => {
197
+ return parseFloat(Platform.Version.toString()) >= expectedVersion;
198
+ };
@@ -0,0 +1,3 @@
1
+ export const isString = (value: unknown) => {
2
+ return typeof value === "string";
3
+ };
package/utils/index.ts CHANGED
@@ -2,4 +2,4 @@ export { chunk } from "./chunk";
2
2
 
3
3
  export { times } from "./times";
4
4
 
5
- export { cloneDeep as clone, flatten, drop, size } from "lodash";
5
+ export { cloneDeep as clone, flatten, drop, size, isNil } from "lodash";
@@ -7,6 +7,7 @@ import {
7
7
  StorageValuesToRemove,
8
8
  StorageValuesToAdd,
9
9
  } from "./types";
10
+ import { Storage } from "@applicaster/zapp-react-native-bridge/ZappStorage/Storage";
10
11
 
11
12
  const defaultOwnedKey = "owned_keys";
12
13
  const DEFAULT_NAMESPACE = "applicaster.v2";
@@ -50,8 +51,9 @@ function mapOwnedKeysToAdd(
50
51
  return mappedData;
51
52
  }
52
53
 
53
- export async function batchSaveToLocalStorage(
54
- storageValues: StorageValuesToAdd
54
+ export async function batchSave(
55
+ storageValues: StorageValuesToAdd,
56
+ storage: Storage
55
57
  ) {
56
58
  if (isNilOrEmpty(storageValues)) {
57
59
  return false;
@@ -64,24 +66,37 @@ export async function batchSaveToLocalStorage(
64
66
  const value = namespaceData[key];
65
67
 
66
68
  if (!isNilOrEmpty(value)) {
67
- await localStorage.setItem(key, value, namespace);
69
+ await storage.setItem(key, value, namespace);
68
70
  }
69
71
  }
70
72
  }
71
73
  }
72
74
 
73
- export async function batchRemoveFromLocalStorage(
74
- storageValues: StorageValuesToRemove
75
+ export async function batchSaveToLocalStorage(
76
+ storageValues: StorageValuesToAdd
77
+ ) {
78
+ return await batchSave(storageValues, localStorage);
79
+ }
80
+
81
+ export async function batchRemoveFromStorage(
82
+ storageValues: StorageValuesToRemove,
83
+ storage: Storage = localStorage
75
84
  ) {
76
85
  for (const namespace of Object.keys(storageValues)) {
77
86
  const namespaceData = storageValues[namespace];
78
87
 
79
88
  for (const key of namespaceData) {
80
- await localStorage.removeItem(key, namespace);
89
+ await storage.removeItem(key, namespace);
81
90
  }
82
91
  }
83
92
  }
84
93
 
94
+ export async function batchRemoveFromLocalStorage(
95
+ storageValues: StorageValuesToRemove
96
+ ) {
97
+ await batchRemoveFromStorage(storageValues, localStorage);
98
+ }
99
+
85
100
  async function addOwnedKeys({
86
101
  newKeys,
87
102
  ownershipKey,
@@ -224,13 +239,20 @@ export async function batchRemoveOwnedNamespaceKeys({
224
239
  });
225
240
  }
226
241
 
227
- export async function batchRemoveAllFromNamespace(namespace) {
228
- const allDataInNamespace = await localStorage.getAllItems(namespace);
242
+ export async function batchRemoveAllFromNamespaceForStorage(
243
+ namespace: string,
244
+ storage: Storage
245
+ ) {
246
+ const allDataInNamespace = await storage.getAllItems(namespace);
229
247
  const keysToRemove = Object.keys(allDataInNamespace);
230
248
 
231
- const dataToRemove = {
249
+ const dataToRemove: StorageValuesToRemove = {
232
250
  [namespace]: keysToRemove,
233
251
  };
234
252
 
235
- await batchRemoveFromLocalStorage(dataToRemove);
253
+ await batchRemoveFromStorage(dataToRemove, storage);
254
+ }
255
+
256
+ export async function batchRemoveAllFromNamespace(namespace: string) {
257
+ await batchRemoveAllFromNamespaceForStorage(namespace, localStorage);
236
258
  }