@applicaster/zapp-react-native-utils 16.0.0-rc.47 → 16.0.0-rc.49

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.
@@ -59,6 +59,7 @@ type PlayNextConfig = {
59
59
  export type PlayNextState = PlayNextConfig & {
60
60
  triggerTime: number;
61
61
  handleUserCancelPlayNext: () => void;
62
+ hidePlayNext: () => void;
62
63
  };
63
64
 
64
65
  export class OverlaysObserver {
@@ -76,7 +77,7 @@ export class OverlaysObserver {
76
77
  private chapterMarkerEvents: ChapterMarkerEvent[];
77
78
  readonly player: Player;
78
79
  private playNextConfig?: PlayNextConfig;
79
- private isCanceledByUser = false;
80
+ private isPlayNextSuppressed = false;
80
81
 
81
82
  constructor({ player }: ChapterMarkersObserverProps) {
82
83
  this.chapterSubject = new BehaviorSubject(null);
@@ -143,11 +144,15 @@ export class OverlaysObserver {
143
144
  return this.titleSummarySubject.asObservable().pipe(distinctUntilChanged());
144
145
  }
145
146
 
146
- handleUserCancelPlayNext = () => {
147
- this.isCanceledByUser = true;
147
+ hidePlayNext = () => {
148
+ this.isPlayNextSuppressed = true;
148
149
  this.playNextSubject.next(null);
149
150
  };
150
151
 
152
+ handleUserCancelPlayNext = () => {
153
+ this.hidePlayNext();
154
+ };
155
+
151
156
  preparePlayNext = async () => {
152
157
  try {
153
158
  const plugins = appStore.get("plugins");
@@ -270,7 +275,7 @@ export class OverlaysObserver {
270
275
 
271
276
  // TODO: Hack for video end, will be replaced with playlist prev/next in the future
272
277
  getPlayNextEntry = () =>
273
- !this.isCanceledByUser ? this.playNextConfig?.entry : null;
278
+ !this.isPlayNextSuppressed ? this.playNextConfig?.entry : null;
274
279
 
275
280
  prepareChapterMarkers = () => {
276
281
  const chapterMarkers: ChapterMarkerOriginal[] =
@@ -353,7 +358,7 @@ export class OverlaysObserver {
353
358
  const shouldPlayNextBeVisible = currentTime > triggerTime;
354
359
 
355
360
  if (shouldPlayNextBeVisible) {
356
- if (this.isCanceledByUser) {
361
+ if (this.isPlayNextSuppressed) {
357
362
  return;
358
363
  }
359
364
 
@@ -361,10 +366,11 @@ export class OverlaysObserver {
361
366
  ...this.playNextConfig,
362
367
  triggerTime,
363
368
  handleUserCancelPlayNext: this.handleUserCancelPlayNext,
369
+ hidePlayNext: this.hidePlayNext,
364
370
  });
365
371
  } else {
366
372
  this.playNextSubject.next(null);
367
- this.isCanceledByUser = false;
373
+ this.isPlayNextSuppressed = false;
368
374
  }
369
375
  };
370
376
 
@@ -67,3 +67,9 @@ export enum PlayerRole {
67
67
  Chromecast = "Chromecast",
68
68
  Unspecified = "Unspecified",
69
69
  }
70
+
71
+ export enum PLAYER_EVENTS {
72
+ PlayNextTriggered = "play_next_triggered",
73
+ }
74
+
75
+ export type PlayNextTriggeredEvent = { id: string };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-native-utils",
3
- "version": "16.0.0-rc.47",
3
+ "version": "16.0.0-rc.49",
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": "16.0.0-rc.47",
30
+ "@applicaster/applicaster-types": "16.0.0-rc.49",
31
31
  "buffer": "^5.2.1",
32
32
  "camelize": "^1.0.0",
33
33
  "dayjs": "^1.11.10",
@@ -0,0 +1,146 @@
1
+ import {
2
+ batchSaveOwnedValues,
3
+ batchRemoveOwnedValues,
4
+ } from "../localStorageHelper";
5
+ import { localStorage } from "@applicaster/zapp-react-native-bridge/ZappStorage/LocalStorage";
6
+
7
+ // Mock localStorage
8
+ jest.mock(
9
+ "@applicaster/zapp-react-native-bridge/ZappStorage/LocalStorage",
10
+ () => ({
11
+ localStorage: {
12
+ getItem: jest.fn(),
13
+ setItem: jest.fn(),
14
+ removeItem: jest.fn(),
15
+ },
16
+ })
17
+ );
18
+
19
+ describe("localStorageHelper", () => {
20
+ const ownershipKey = "test_ownership_key";
21
+ const ownershipNamespace = "test_namespace";
22
+
23
+ beforeEach(() => {
24
+ jest.clearAllMocks();
25
+ });
26
+
27
+ describe("addOwnedKeys via batchSaveOwnedValues", () => {
28
+ it("should add new keys to existing owned keys", async () => {
29
+ // Setup existing keys in storage
30
+ const existingKeys = {
31
+ namespace1: ["key1"],
32
+ };
33
+
34
+ (localStorage.getItem as jest.Mock).mockResolvedValue(
35
+ JSON.stringify(existingKeys)
36
+ );
37
+
38
+ const newValues = {
39
+ namespace1: { key2: "value2" },
40
+ namespace2: { key3: "value3" },
41
+ };
42
+
43
+ await batchSaveOwnedValues({
44
+ storageValues: newValues,
45
+ ownershipKey,
46
+ ownershipNamespace,
47
+ });
48
+
49
+ // Verify localStorage.setItem was called with correct updated keys
50
+ // Note: order of keys in array might vary depending on Set implementation, but usually insertion order
51
+ // However, to be safe, we can parse the argument and check contents
52
+
53
+ const lastCall = (localStorage.setItem as jest.Mock).mock.calls.find(
54
+ (call) => call[0] === ownershipKey
55
+ );
56
+
57
+ expect(lastCall).toBeDefined();
58
+ const savedData = JSON.parse(lastCall[1]);
59
+
60
+ expect(savedData.namespace1).toContain("key1");
61
+ expect(savedData.namespace1).toContain("key2");
62
+ expect(savedData.namespace2).toContain("key3");
63
+ });
64
+
65
+ it("should handle empty existing keys", async () => {
66
+ (localStorage.getItem as jest.Mock).mockResolvedValue(null);
67
+
68
+ const newValues = {
69
+ namespace1: { key1: "value1" },
70
+ };
71
+
72
+ await batchSaveOwnedValues({
73
+ storageValues: newValues,
74
+ ownershipKey,
75
+ ownershipNamespace,
76
+ });
77
+
78
+ const lastCall = (localStorage.setItem as jest.Mock).mock.calls.find(
79
+ (call) => call[0] === ownershipKey
80
+ );
81
+
82
+ expect(lastCall).toBeDefined();
83
+ const savedData = JSON.parse(lastCall[1]);
84
+
85
+ expect(savedData.namespace1).toEqual(["key1"]);
86
+ });
87
+ });
88
+
89
+ describe("removeOwnedKeys via batchRemoveOwnedValues", () => {
90
+ it("should remove keys from owned keys", async () => {
91
+ const existingKeys = {
92
+ namespace1: ["key1", "key2"],
93
+ namespace2: ["key3"],
94
+ };
95
+
96
+ (localStorage.getItem as jest.Mock).mockResolvedValue(
97
+ JSON.stringify(existingKeys)
98
+ );
99
+
100
+ const keysToRemove = {
101
+ namespace1: ["key1"],
102
+ };
103
+
104
+ await batchRemoveOwnedValues({
105
+ storageValues: keysToRemove,
106
+ ownershipKey,
107
+ ownershipNamespace,
108
+ });
109
+
110
+ const lastCall = (localStorage.setItem as jest.Mock).mock.calls.find(
111
+ (call) => call[0] === ownershipKey
112
+ );
113
+
114
+ expect(lastCall).toBeDefined();
115
+ const savedData = JSON.parse(lastCall[1]);
116
+
117
+ expect(savedData.namespace1).toEqual(["key2"]);
118
+ expect(savedData.namespace2).toEqual(["key3"]);
119
+ });
120
+
121
+ it("should remove namespace if all keys removed", async () => {
122
+ const existingKeys = {
123
+ namespace1: ["key1"],
124
+ };
125
+
126
+ (localStorage.getItem as jest.Mock).mockResolvedValue(
127
+ JSON.stringify(existingKeys)
128
+ );
129
+
130
+ const keysToRemove = {
131
+ namespace1: ["key1"],
132
+ };
133
+
134
+ await batchRemoveOwnedValues({
135
+ storageValues: keysToRemove,
136
+ ownershipKey,
137
+ ownershipNamespace,
138
+ });
139
+
140
+ expect(localStorage.removeItem).toHaveBeenCalledWith(
141
+ ownershipKey,
142
+ ownershipNamespace
143
+ );
144
+ });
145
+ });
146
+ });
@@ -2,10 +2,10 @@ import { localStorage } from "@applicaster/zapp-react-native-bridge/ZappStorage/
2
2
  import { isNilOrEmpty } from "../reactUtils/helpers";
3
3
  import { parseJsonIfNeeded } from "@applicaster/zapp-react-native-utils/functionUtils";
4
4
  import {
5
- StorageOwnedValues,
6
5
  NamespaceValues,
7
- StorageValuesToRemove,
6
+ StorageOwnedValues,
8
7
  StorageValuesToAdd,
8
+ StorageValuesToRemove,
9
9
  } from "./types";
10
10
  import { Storage } from "@applicaster/zapp-react-native-bridge/ZappStorage/Storage";
11
11
 
@@ -43,10 +43,10 @@ function mapOwnedKeysToAdd(
43
43
  ): StorageOwnedValues {
44
44
  const mappedData = {};
45
45
 
46
- Object.keys(storageValues).forEach((namespace: string) => {
46
+ for (const namespace of Object.keys(storageValues)) {
47
47
  const data = storageValues[namespace];
48
48
  mappedData[namespace] = Object.keys(data);
49
- });
49
+ }
50
50
 
51
51
  return mappedData;
52
52
  }
@@ -111,12 +111,12 @@ async function addOwnedKeys({
111
111
  ownershipNamespace
112
112
  );
113
113
 
114
- Object.keys(newKeys).forEach(async (namespace: string) => {
114
+ for (const namespace of Object.keys(newKeys)) {
115
115
  const newOwnedKeys: string[] = newKeys[namespace];
116
116
  const currentKeys = allStoragedOwnedKeys[namespace] || [];
117
117
  const combinedSet = new Set([...currentKeys, ...newOwnedKeys]);
118
118
  allStoragedOwnedKeys[namespace] = Array.from(combinedSet);
119
- });
119
+ }
120
120
 
121
121
  const data = JSON.stringify(allStoragedOwnedKeys);
122
122
  await localStorage.setItem(ownershipKey, data, ownershipNamespace);
@@ -136,18 +136,14 @@ async function removeOwnedKeys({
136
136
  ownershipNamespace
137
137
  );
138
138
 
139
- Object.keys(toRemoveKeys).forEach(async (namespace: string) => {
139
+ for (const namespace of Object.keys(toRemoveKeys)) {
140
140
  const keysToRemove: string[] = toRemoveKeys[namespace] || [];
141
141
  const currentKeys: string[] = currentKeysList[namespace] || [];
142
142
 
143
143
  const storageOwnedSet = new Set(currentKeys);
144
144
  const keysToRemoveSet = new Set(keysToRemove);
145
145
 
146
- function removeAll(originalSet, toBeRemovedSet) {
147
- toBeRemovedSet.forEach(Set.prototype.delete, originalSet);
148
- }
149
-
150
- removeAll(storageOwnedSet, keysToRemoveSet);
146
+ keysToRemoveSet.forEach((key) => storageOwnedSet.delete(key));
151
147
  const newLoginKeys = Array.from(storageOwnedSet);
152
148
 
153
149
  if (isNilOrEmpty(newLoginKeys)) {
@@ -155,7 +151,7 @@ async function removeOwnedKeys({
155
151
  } else {
156
152
  currentKeysList[namespace] = newLoginKeys;
157
153
  }
158
- });
154
+ }
159
155
 
160
156
  if (isNilOrEmpty(currentKeysList)) {
161
157
  await localStorage.removeItem(ownershipKey, ownershipNamespace);