@applicaster/zapp-react-native-utils 16.0.0-rc.83 → 16.0.0-rc.85

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.
@@ -208,7 +208,10 @@ export async function openBottomSheetAction(
208
208
  items: [],
209
209
  onPress: () => {},
210
210
  contentComponent: content.component,
211
- contentComponentProps: content.props || {},
211
+ contentComponentProps: {
212
+ ...(content.props || {}),
213
+ actionContext: context,
214
+ },
212
215
  },
213
216
  });
214
217
 
@@ -277,6 +280,7 @@ export async function openBottomSheetAction(
277
280
  dynamicCollection,
278
281
  themePluginId,
279
282
  styleOverrides: styleOverrides ?? content?.styleOverrides,
283
+ context,
280
284
  },
281
285
  };
282
286
 
@@ -154,3 +154,42 @@ describe("buildEntryActions - alias & label resolution", () => {
154
154
  });
155
155
  });
156
156
  });
157
+
158
+ describe("buildEntryActions - invokeAction execution context", () => {
159
+ it("forwards the List component from invoke options into handleActions", async () => {
160
+ const handleActions = jest.fn();
161
+
162
+ const component = {
163
+ id: "list-1",
164
+ data: { source: "https://example.com/user/collections/abc" },
165
+ };
166
+
167
+ const deps = {
168
+ actionExecutor: { handleActions } as any,
169
+ actionContext: { screenData: { id: "playlist-screen" } },
170
+ };
171
+
172
+ const entry = {
173
+ id: "entry-1",
174
+ extensions: {
175
+ entry_action: [
176
+ {
177
+ button: { title: "Edit Name" },
178
+ actions: [{ type: "refreshComponent" }],
179
+ },
180
+ ],
181
+ },
182
+ };
183
+
184
+ const [action] = buildEntryActions(entry as any, deps);
185
+
186
+ await action.action.invokeAction(entry as any, { component });
187
+
188
+ expect(handleActions).toHaveBeenCalledWith([{ type: "refreshComponent" }], {
189
+ entry,
190
+ entryContext: entry,
191
+ screenData: { id: "playlist-screen" },
192
+ component,
193
+ });
194
+ });
195
+ });
@@ -105,6 +105,7 @@ function createEntryAction(
105
105
  entry: invokedEntry,
106
106
  entryContext: invokedEntry,
107
107
  ...deps.actionContext,
108
+ ...(options.component ? { component: options.component } : {}),
108
109
  } as ActionExecutionContext);
109
110
  } catch (error) {
110
111
  log_error(
@@ -123,7 +123,14 @@ export class RemoteEditableCollection implements EditableCollection {
123
123
 
124
124
  try {
125
125
  for (const action of addEvents) {
126
- await actionExecutor.handleAction(action as any);
126
+ if (this.content.context) {
127
+ await actionExecutor.handleAction(
128
+ action as any,
129
+ this.content.context
130
+ );
131
+ } else {
132
+ await actionExecutor.handleAction(action as any);
133
+ }
127
134
  }
128
135
  } catch (e) {
129
136
  actionFailed = true;
@@ -219,6 +226,7 @@ export class RemoteEditableCollection implements EditableCollection {
219
226
  await actionExecutor.handleAction(
220
227
  actionToExecute as any,
221
228
  {
229
+ ...this.content.context,
222
230
  entry: item as any,
223
231
  } as any
224
232
  );
@@ -34,16 +34,26 @@ const itemPlain: MenuItem = { id: "2", title: "B" };
34
34
  function makeCollection(
35
35
  items: MenuItem[],
36
36
  refetch = jest.fn().mockResolvedValue(undefined),
37
- operations = ["remove", "reorder"]
37
+ operations = ["remove", "reorder"],
38
+ context?: Record<string, unknown>
38
39
  ) {
39
40
  const content = {
40
41
  items,
42
+ context,
41
43
  dynamicCollection: { operations, postUrl: "https://x/cloud-events" },
42
44
  } as unknown as Content;
43
45
 
44
46
  return { col: new RemoteEditableCollection(content, refetch), refetch };
45
47
  }
46
48
 
49
+ const openingContext = {
50
+ component: {
51
+ id: "list-1",
52
+ data: { source: "https://example.com/user/collections/abc" },
53
+ },
54
+ screenData: { id: "playlist-screen" },
55
+ };
56
+
47
57
  describe("RemoteEditableCollection", () => {
48
58
  beforeEach(() => jest.clearAllMocks());
49
59
 
@@ -118,6 +128,24 @@ describe("RemoteEditableCollection", () => {
118
128
  expect(refetch).toHaveBeenCalledTimes(1);
119
129
  expect(currentItems(col)).toEqual([itemWithRemove]);
120
130
  });
131
+
132
+ it("forwards stored sheet context plus the removed item as entry", async () => {
133
+ handleAction.mockResolvedValue("success");
134
+
135
+ const { col } = makeCollection(
136
+ [itemWithRemove, itemPlain],
137
+ jest.fn().mockResolvedValue(undefined),
138
+ ["remove", "reorder"],
139
+ openingContext
140
+ );
141
+
142
+ await col.remove(0);
143
+
144
+ expect(handleAction).toHaveBeenCalledWith(removeAction, {
145
+ ...openingContext,
146
+ entry: itemWithRemove,
147
+ });
148
+ });
121
149
  });
122
150
 
123
151
  describe("move", () => {
@@ -164,6 +192,35 @@ describe("RemoteEditableCollection", () => {
164
192
  expect(refetch).toHaveBeenCalledTimes(1);
165
193
  });
166
194
 
195
+ it("forwards stored sheet context plus the moved item as entry", async () => {
196
+ handleAction.mockResolvedValue("success");
197
+
198
+ const itemA: MenuItem = {
199
+ id: "2",
200
+ title: "B",
201
+ entryActions: [
202
+ { button: { alias: "reorder_item" }, actions: [removeAction] },
203
+ ],
204
+ };
205
+
206
+ const { col } = makeCollection(
207
+ [itemA],
208
+ jest.fn().mockResolvedValue(undefined),
209
+ ["remove", "reorder"],
210
+ openingContext
211
+ );
212
+
213
+ await col.move(["2"]);
214
+
215
+ expect(handleAction).toHaveBeenCalledWith(
216
+ expect.objectContaining({ type: "sendCloudEvent" }),
217
+ {
218
+ ...openingContext,
219
+ entry: itemA,
220
+ }
221
+ );
222
+ });
223
+
167
224
  it("rolls back on failure", async () => {
168
225
  handleAction.mockRejectedValue(new Error("nope"));
169
226
 
@@ -322,5 +379,37 @@ describe("RemoteEditableCollection", () => {
322
379
  expect(handleAction).toHaveBeenCalledWith(addAction);
323
380
  expect(refetch).toHaveBeenCalledTimes(1);
324
381
  });
382
+
383
+ it("forwards stored sheet context into events.add actions", async () => {
384
+ handleAction.mockResolvedValue("success");
385
+
386
+ const addAction = {
387
+ type: "showTextInput",
388
+ options: {
389
+ headerTitle: "Create Playlist",
390
+ buttonLabel: "Create",
391
+ actions: [{ type: "sendCloudEvent" }],
392
+ },
393
+ };
394
+
395
+ const content = {
396
+ items: [],
397
+ context: openingContext,
398
+ dynamicCollection: {
399
+ operations: ["add"],
400
+ postUrl: "https://x/cloud-events",
401
+ events: {
402
+ add: [addAction],
403
+ },
404
+ },
405
+ } as any;
406
+
407
+ const refetch = jest.fn().mockResolvedValue(undefined);
408
+ const col = new RemoteEditableCollection(content, refetch);
409
+
410
+ await col.add();
411
+
412
+ expect(handleAction).toHaveBeenCalledWith(addAction, openingContext);
413
+ });
325
414
  });
326
415
  });
@@ -118,6 +118,7 @@ export interface Content {
118
118
  dynamicCollection?: DynamicCollectionOptions;
119
119
  themePluginId?: string;
120
120
  styleOverrides?: Record<string, any>;
121
+ context?: Record<string, any>;
121
122
  }
122
123
 
123
124
  export interface Menu {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-native-utils",
3
- "version": "16.0.0-rc.83",
3
+ "version": "16.0.0-rc.85",
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.83",
30
+ "@applicaster/applicaster-types": "16.0.0-rc.85",
31
31
  "buffer": "^5.2.1",
32
32
  "camelize": "^1.0.0",
33
33
  "dayjs": "^1.11.10",
@@ -5,6 +5,7 @@ import { ActionExecutorContext } from "@applicaster/zapp-react-native-utils/acti
5
5
 
6
6
  const mockNavigator = {
7
7
  getPathname: () => "pathnameMock",
8
+ currentRoute: "pathnameMock",
8
9
  push: jest.fn(),
9
10
  data: {},
10
11
  };
@@ -29,6 +30,7 @@ jest.mock("@applicaster/zapp-react-native-utils/reactHooks/screen", () => ({
29
30
  ),
30
31
  useTargetScreenData: jest.fn(() => ({})),
31
32
  useCurrentScreenData: jest.fn(() => ({})),
33
+ useScreenContext: jest.fn(() => ({})),
32
34
  }));
33
35
 
34
36
  jest.mock("@applicaster/zapp-react-native-ui-components/Contexts", () => ({
@@ -66,6 +68,12 @@ const wrapper = ({ children }) => (
66
68
  </CellTapContext.Provider>
67
69
  );
68
70
 
71
+ const actionExecutorWrapper = ({ children }) => (
72
+ <ActionExecutorContext.Provider value={actionExecutor}>
73
+ {children}
74
+ </ActionExecutorContext.Provider>
75
+ );
76
+
69
77
  describe("useCellClick", () => {
70
78
  it("returns a function", () => {
71
79
  const { result } = renderHook(() => useCellClick(mockProps));
@@ -95,4 +103,60 @@ describe("useCellClick", () => {
95
103
 
96
104
  cleanup();
97
105
  });
106
+
107
+ it("does not push when the cell finishes a hook", async () => {
108
+ mockNavigator.push.mockClear();
109
+
110
+ const item = {
111
+ id: "profile-1",
112
+ type: { value: "feed" },
113
+ extensions: {
114
+ tap_actions: {
115
+ actions: [
116
+ { type: "sessionStorageSet" },
117
+ { type: "finishHook", options: { success: true } },
118
+ ],
119
+ },
120
+ },
121
+ };
122
+
123
+ const { result } = renderHook(() => useCellClick({ item }), {
124
+ wrapper: actionExecutorWrapper,
125
+ });
126
+
127
+ await result.current();
128
+
129
+ await waitFor(() => {
130
+ expect(actionExecutor.handleEntryActions).toHaveBeenCalled();
131
+ });
132
+
133
+ expect(mockNavigator.push).not.toHaveBeenCalled();
134
+ cleanup();
135
+ });
136
+
137
+ it("pushes after tap actions that do not finish a hook", async () => {
138
+ mockNavigator.push.mockClear();
139
+
140
+ const item = {
141
+ id: "episode-1",
142
+ type: { value: "feed" },
143
+ extensions: {
144
+ tap_actions: {
145
+ actions: [{ type: "sessionStorageSet" }],
146
+ },
147
+ },
148
+ };
149
+
150
+ const { result } = renderHook(() => useCellClick({ item }), {
151
+ wrapper: actionExecutorWrapper,
152
+ });
153
+
154
+ await result.current();
155
+
156
+ await waitFor(() => {
157
+ expect(mockNavigator.push).toHaveBeenCalled();
158
+ });
159
+
160
+ cleanup();
161
+ });
98
162
  });
@@ -83,6 +83,12 @@ export const useCellClick = ({
83
83
 
84
84
  logOnPress(selectedItem, pathname, component, onCellTap);
85
85
 
86
+ const tapActions = selectedItem?.extensions?.tap_actions?.actions;
87
+
88
+ const finishesHook =
89
+ Array.isArray(tapActions) &&
90
+ tapActions.some((action) => action?.type === "finishHook");
91
+
86
92
  if (selectedItem) {
87
93
  await actionExecutor?.handleEntryActions(selectedItem, {
88
94
  component,
@@ -101,20 +107,21 @@ export const useCellClick = ({
101
107
  url: selectedItem.link.href,
102
108
  });
103
109
  }
104
- } else {
105
- if (isFunction(onCellTap)) {
106
- onCellTap?.(selectedItem, _index);
107
- } else {
108
- if (currentRoute === pathname || pathname.includes("video-modal")) {
109
- const targetScreen = component?.data?.target;
110
-
111
- push(
112
- R.when(
113
- () => targetScreen,
114
- R.mergeLeft({ screen_type: targetScreen })
115
- )(selectedItem)
116
- );
117
- }
110
+ } else if (isFunction(onCellTap)) {
111
+ onCellTap?.(selectedItem, _index);
112
+ } else if (!finishesHook) {
113
+ // finishHook already completes the hook and navigates to the original
114
+ // target. Pushing the cell as well stacks a second copy of that screen
115
+ // (e.g. home/home after a profile selector hook).
116
+ if (currentRoute === pathname || pathname.includes("video-modal")) {
117
+ const targetScreen = component?.data?.target;
118
+
119
+ push(
120
+ R.when(
121
+ () => targetScreen,
122
+ R.mergeLeft({ screen_type: targetScreen })
123
+ )(selectedItem)
124
+ );
118
125
  }
119
126
  }
120
127
  },