@applicaster/zapp-react-native-utils 16.0.0-alpha.6580258138 → 16.0.0-alpha.6861239588

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 (54) hide show
  1. package/actionsExecutor/ActionExecutor.ts +8 -10
  2. package/actionsExecutor/ActionExecutorContext.tsx +41 -325
  3. package/actionsExecutor/actions/appRestart.ts +24 -0
  4. package/actionsExecutor/actions/confirmDialog.ts +53 -0
  5. package/actionsExecutor/actions/index.ts +30 -0
  6. package/actionsExecutor/actions/localStorageRemove.ts +27 -0
  7. package/actionsExecutor/actions/localStorageSet.ts +28 -0
  8. package/actionsExecutor/actions/localStorageToggleFlag.ts +28 -0
  9. package/actionsExecutor/actions/navigateToScreen.ts +123 -0
  10. package/actionsExecutor/actions/refreshComponent.ts +79 -0
  11. package/actionsExecutor/actions/screenSetVariable.ts +35 -0
  12. package/actionsExecutor/actions/screenToggleFlag.ts +38 -0
  13. package/actionsExecutor/actions/sendCloudEvent.ts +88 -0
  14. package/actionsExecutor/actions/sessionStorageRemove.ts +19 -0
  15. package/actionsExecutor/actions/sessionStorageSet.ts +20 -0
  16. package/actionsExecutor/actions/sessionStorageToggleFlag.ts +15 -0
  17. package/actionsExecutor/actions/showToast.ts +31 -0
  18. package/actionsExecutor/actions/switchLayout.ts +40 -0
  19. package/actionsExecutor/types.ts +59 -0
  20. package/analyticsUtils/AnalyticsEvents/sendMenuClickEvent.ts +2 -2
  21. package/appUtils/contextKeysManager/__tests__/getKey/failure.test.ts +1 -1
  22. package/appUtils/contextKeysManager/__tests__/removeKey/failure.test.ts +1 -1
  23. package/appUtils/contextKeysManager/__tests__/setKey/failure/invalidKey.test.ts +4 -4
  24. package/appUtils/contextKeysManager/index.ts +1 -1
  25. package/cellUtils/index.ts +3 -5
  26. package/colorUtils/__tests__/isTransparentColor.test.ts +76 -0
  27. package/colorUtils/__tests__/isValidColor.test.ts +70 -0
  28. package/colorUtils/index.ts +50 -0
  29. package/manifestUtils/_internals/index.js +6 -0
  30. package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +84 -0
  31. package/manifestUtils/fieldUtils/index.js +125 -0
  32. package/manifestUtils/keys.js +8 -0
  33. package/manifestUtils/mobileAction/button/index.js +16 -0
  34. package/manifestUtils/mobileAction/container/index.js +3 -1
  35. package/manifestUtils/mobileAction/groups/defaults.js +3 -1
  36. package/package.json +2 -2
  37. package/pipesUtils/__tests__/buildUrlWithQuery.test.ts +33 -0
  38. package/pipesUtils/__tests__/withPipesEndpoint.test.tsx +56 -0
  39. package/pipesUtils/index.ts +1 -0
  40. package/pipesUtils/withPipesEndpoint.tsx +54 -0
  41. package/reactHooks/actions/index.ts +51 -1
  42. package/reactHooks/cell-click/index.ts +3 -3
  43. package/reactHooks/feed/__mocks__/useMarkPipesDataStale.ts +4 -0
  44. package/reactHooks/feed/index.ts +5 -1
  45. package/reactHooks/feed/useBatchLoading.ts +9 -1
  46. package/reactHooks/feed/{usePipesCacheReset.ts → useMarkPipesDataStale.ts} +12 -4
  47. package/reactHooks/navigation/__mocks__/index.ts +4 -0
  48. package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
  49. package/reactHooks/navigation/index.ts +1 -1
  50. package/reactHooks/navigation/useIsScreenActive.ts +29 -8
  51. package/reactHooks/utils/index.ts +3 -2
  52. package/riverComponetsMeasurementProvider/index.tsx +12 -8
  53. package/uiActionsRegistrator/index.ts +203 -0
  54. package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
@@ -1,8 +1,12 @@
1
1
  /// <reference types="@applicaster/applicaster-types" />
2
2
  /* eslint-disable @typescript-eslint/no-unused-vars */
3
- import { Context, useContext, useState } from "react";
3
+ import { Context, useCallback, useContext, useEffect, useState } from "react";
4
4
  import { ActionsContext } from "@applicaster/zapp-react-native-ui-components/Contexts/ActionsContext";
5
5
 
6
+ import {
7
+ observeEntryState,
8
+ RegisteredActionValue,
9
+ } from "../../uiActionsRegistrator";
6
10
  import { reactHooksLogger } from "../logger";
7
11
 
8
12
  const logger = reactHooksLogger.addSubsystem("actions");
@@ -46,3 +50,49 @@ export function useActions<T = unknown>(plugId: string): any {
46
50
 
47
51
  return context;
48
52
  }
53
+
54
+ export type UseEntryActionState = {
55
+ state: CellActionEntryState | undefined;
56
+ invokeAction: (options?: InvokeArgsOptions) => void;
57
+ };
58
+
59
+ /**
60
+ * Subscribes a component to a single action's state for a given `entry`.
61
+ *
62
+ * It observes state changes reactively via `observeEntryState` (which is backed
63
+ * by the action's `addListener`), seeds the initial value synchronously from
64
+ * `initialEntryState`, and returns a memoized `invokeAction` that forwards
65
+ * optimistic `updateState` updates back into local state.
66
+ *
67
+ * This is the single, unified way to drive an action button - it works the same
68
+ * for registry actions, legacy context-provider actions and entry actions.
69
+ */
70
+ export function useEntryActionState(
71
+ action: RegisteredActionValue | undefined,
72
+ entry: ZappEntry | ZappFeed
73
+ ): UseEntryActionState {
74
+ const [state, setState] = useState<CellActionEntryState | undefined>(() =>
75
+ action?.initialEntryState?.(entry)
76
+ );
77
+
78
+ const entryId = (entry as ZappEntry)?.id;
79
+
80
+ useEffect(() => {
81
+ if (!action) return undefined;
82
+
83
+ const subscription = observeEntryState(action, entry).subscribe(setState);
84
+
85
+ return () => subscription.unsubscribe();
86
+ // eslint-disable-next-line @wogns3623/better-exhaustive-deps/exhaustive-deps
87
+ }, [action, entryId]);
88
+
89
+ const invokeAction = useCallback(
90
+ (options: InvokeArgsOptions = {}) => {
91
+ action?.invokeAction?.(entry, { updateState: setState, ...options });
92
+ },
93
+ // eslint-disable-next-line @wogns3623/better-exhaustive-deps/exhaustive-deps
94
+ [action, entryId]
95
+ );
96
+
97
+ return { state, invokeAction };
98
+ }
@@ -4,6 +4,7 @@ import * as React from "react";
4
4
  import * as R from "ramda";
5
5
  import { handleActionSchemeUrl } from "@applicaster/quick-brick-core/App/DeepLinking/URLSchemeHandler/SchemeHandlerHooks/useUrlSchemeHandler";
6
6
  import { CellTapContext } from "@applicaster/zapp-react-native-ui-components/Contexts/CellTapContext";
7
+ import { useUIComponentContext } from "@applicaster/zapp-react-native-ui-components/Contexts/UIComponentContext";
7
8
  import {
8
9
  useNavigation,
9
10
  useProfilerLogging,
@@ -28,7 +29,6 @@ import { useScreenStateStore } from "../navigation/useScreenStateStore";
28
29
  type Props = {
29
30
  item?: ZappEntry;
30
31
  index?: number;
31
- component?: ZappUIComponent;
32
32
  zappPipesData?: ZappPipesData;
33
33
  };
34
34
 
@@ -37,16 +37,16 @@ type onPressReturnFn =
37
37
  | (() => void);
38
38
 
39
39
  export const useCellClick = ({
40
- component,
41
40
  zappPipesData,
42
41
  item,
43
- }: Props): onPressReturnFn => {
42
+ }: Props = {}): onPressReturnFn => {
44
43
  const { push, currentRoute } = useNavigation();
45
44
  const { pathname } = useRoute();
46
45
  const screenStateStore = useScreenStateStore();
47
46
 
48
47
  const onCellTap: Option<Function> = React.useContext(CellTapContext);
49
48
  const actionExecutor = React.useContext(ActionExecutorContext);
49
+ const component = useUIComponentContext();
50
50
  const screenData = useCurrentScreenData();
51
51
  const screenState = useScreenContext()?.options;
52
52
  const entry = useScreenContext()?.entry;
@@ -0,0 +1,4 @@
1
+ export const useMarkPipesDataStale = jest.fn();
2
+
3
+ /** @deprecated alias of useMarkPipesDataStale */
4
+ export const usePipesCacheReset = useMarkPipesDataStale;
@@ -6,7 +6,11 @@ export { useEntryScreenId } from "./useEntryScreenId";
6
6
 
7
7
  export { useBuildPipesUrl } from "./useBuildPipesUrl";
8
8
 
9
- export { usePipesCacheReset } from "./usePipesCacheReset";
9
+ export {
10
+ useMarkPipesDataStale,
11
+ // eslint-disable-next-line @typescript-eslint/no-deprecated
12
+ usePipesCacheReset,
13
+ } from "./useMarkPipesDataStale";
10
14
 
11
15
  export { useBatchLoading } from "./useBatchLoading";
12
16
 
@@ -159,9 +159,17 @@ export const useBatchLoading = (
159
159
  options.riverId,
160
160
  ]);
161
161
 
162
+ // Initial preload only. Batch loading warms the first batch of component
163
+ // feeds and signals readiness; the feed set is frozen at mount on purpose.
164
+ // Per-component loads and reloads (including stale revalidation) are owned by
165
+ // useFeedLoader in ZappPipesDataConnector. Re-running on `feeds`/input changes
166
+ // would re-fire on every store update and cause redundant dispatch storms, so
167
+ // this intentionally runs once on mount.
168
+ /* eslint-disable @wogns3623/better-exhaustive-deps/exhaustive-deps */
162
169
  React.useEffect(() => {
163
170
  runBatchLoading();
164
- }, [runBatchLoading]); // Adding runBatchLoading as a dependency to ensure that it reloads feeds when clearPipesData is called
171
+ }, []);
172
+ /* eslint-enable @wogns3623/better-exhaustive-deps/exhaustive-deps */
165
173
 
166
174
  React.useEffect(() => {
167
175
  // check if all feeds are ready and set hasEverBeenReady to true
@@ -2,17 +2,19 @@ import React from "react";
2
2
 
3
3
  import { getDatasourceUrl } from "@applicaster/zapp-react-native-ui-components/Decorators/RiverFeedLoader/utils/getDatasourceUrl";
4
4
  import { usePipesContexts } from "@applicaster/zapp-react-native-ui-components/Decorators/RiverFeedLoader/utils/usePipesContexts";
5
- import { clearPipesData } from "@applicaster/zapp-react-native-redux/ZappPipes";
5
+ import { markPipesDataStale } from "@applicaster/zapp-react-native-redux/ZappPipes";
6
6
 
7
7
  import { useRoute } from "../navigation";
8
8
  import { useAppDispatch } from "@applicaster/zapp-react-native-redux";
9
9
 
10
10
  /**
11
- * reset river components cache when screen is unmounted
11
+ * Mark a river's `clear_cache_on_reload` feeds as stale when the screen is
12
+ * unmounted. The cached data is kept (so a screen sharing the same feed does
13
+ * not lose it mid-mount) and revalidated on next access.
12
14
  * @param {string} riverId screen id
13
15
  * @param {Array} riverComponents list of UI components
14
16
  */
15
- export const usePipesCacheReset = (riverId, riverComponents) => {
17
+ export const useMarkPipesDataStale = (riverId, riverComponents) => {
16
18
  const dispatch = useAppDispatch();
17
19
  const { screenData, pathname } = useRoute();
18
20
  const pipesContexts = usePipesContexts(riverId, pathname);
@@ -35,10 +37,16 @@ export const usePipesCacheReset = (riverId, riverComponents) => {
35
37
  );
36
38
 
37
39
  if (url) {
38
- dispatch(clearPipesData(url, { riverId }));
40
+ dispatch(markPipesDataStale(url, { riverId }));
39
41
  }
40
42
  }
41
43
  });
42
44
  };
43
45
  }, []);
44
46
  };
47
+
48
+ /**
49
+ * @deprecated Renamed to `useMarkPipesDataStale`. Kept as an alias for backward
50
+ * compatibility with external consumers.
51
+ */
52
+ export const usePipesCacheReset = useMarkPipesDataStale;
@@ -38,3 +38,7 @@ export const useNavigationPluginData = jest.fn().mockReturnValue(mockMenu);
38
38
  export const useIsNavBarVisible = jest.fn().mockReturnValue(true);
39
39
 
40
40
  export const useIsScreenActive = jest.fn().mockReturnValue(true);
41
+
42
+ export const isScreenActiveForRoute = jest.fn(
43
+ (route, currentRoute) => route === currentRoute
44
+ );
@@ -0,0 +1,42 @@
1
+ import { isScreenActiveForRoute } from "../useIsScreenActive";
2
+
3
+ describe("isScreenActiveForRoute", () => {
4
+ const route = "/river/home/river/tabs";
5
+ const currentRoute = "/river/home/river/tabs";
6
+
7
+ it("returns false when route does not match", () => {
8
+ expect(
9
+ isScreenActiveForRoute(route, "/river/home", { visible: false })
10
+ ).toBe(false);
11
+ });
12
+
13
+ it("keeps underlying screen active when video modal is docked", () => {
14
+ expect(
15
+ isScreenActiveForRoute(route, currentRoute, {
16
+ visible: true,
17
+ mode: "MINIMIZED",
18
+ })
19
+ ).toBe(true);
20
+ });
21
+
22
+ it.each(["FULLSCREEN", "MAXIMIZED", "PIP"])(
23
+ "deactivates underlying screen when video modal is visible",
24
+ (mode) => {
25
+ expect(
26
+ isScreenActiveForRoute(route, currentRoute, {
27
+ visible: true,
28
+ mode,
29
+ })
30
+ ).toBe(false);
31
+ }
32
+ );
33
+
34
+ it("keeps video-modal route active when video modal is open", () => {
35
+ expect(
36
+ isScreenActiveForRoute("video-modal/123", currentRoute, {
37
+ visible: true,
38
+ mode: "FULLSCREEN",
39
+ })
40
+ ).toBe(true);
41
+ });
42
+ });
@@ -32,7 +32,7 @@ export { useNavigationType } from "./useNavigationType";
32
32
 
33
33
  export { useGetBottomTabBarHeight } from "./useGetBottomTabBarHeight";
34
34
 
35
- export { useIsScreenActive } from "./useIsScreenActive";
35
+ export { useIsScreenActive, isScreenActiveForRoute } from "./useIsScreenActive";
36
36
 
37
37
  export { useProfilerLogging } from "./useProfilerLogging";
38
38
 
@@ -2,20 +2,41 @@ import { ROUTE_TYPES } from "@applicaster/zapp-react-native-utils/navigationUtil
2
2
  import { useNavigation } from "./useNavigation";
3
3
  import { usePathname } from "./usePathname";
4
4
 
5
- // If current screen is active/focused (visible to the user)
6
- export const useIsScreenActive = () => {
7
- const pathname = usePathname();
8
- const { currentRoute, videoModalState } = useNavigation();
5
+ type VideoModalState = {
6
+ visible?: boolean;
7
+ mode?: string;
8
+ } | null;
9
9
 
10
- if (videoModalState.visible) {
11
- if (pathname.includes(ROUTE_TYPES.VIDEO_MODAL)) {
10
+ /**
11
+ * Whether a navigation route should be treated as the active/focused screen.
12
+ * Docked (MINIMIZED) video modal does not deactivate the underlying screen —
13
+ * only FULLSCREEN / MAXIMIZED / PIP do.
14
+ */
15
+ export function isScreenActiveForRoute(
16
+ route: string,
17
+ currentRoute: string,
18
+ videoModalState: VideoModalState
19
+ ) {
20
+ if (videoModalState?.visible) {
21
+ if (route.includes(ROUTE_TYPES.VIDEO_MODAL)) {
12
22
  return true;
13
23
  }
14
24
 
15
- if (["FULLSCREEN", "MAXIMIZED", "PIP"].includes(videoModalState.mode)) {
25
+ if (
26
+ ["FULLSCREEN", "MAXIMIZED", "PIP"].includes(videoModalState.mode ?? "")
27
+ ) {
16
28
  return false;
17
29
  }
30
+ // MINIMIZED (docked): fall through — underlying screen stays active
18
31
  }
19
32
 
20
- return pathname === currentRoute;
33
+ return route === currentRoute;
34
+ }
35
+
36
+ // If current screen is active/focused (visible to the user)
37
+ export const useIsScreenActive = () => {
38
+ const pathname = usePathname();
39
+ const { currentRoute, videoModalState } = useNavigation();
40
+
41
+ return isScreenActiveForRoute(pathname, currentRoute, videoModalState);
21
42
  };
@@ -1,4 +1,4 @@
1
- import { useRef, useEffect } from "react";
1
+ import { useEffect, useRef } from "react";
2
2
 
3
3
  /**
4
4
  * This hook returns a previous value that was passed to it.
@@ -40,6 +40,7 @@ export const shouldDispatchData = (
40
40
  ) => {
41
41
  const currentFeedHasData = feed?.data;
42
42
  const isLocalFeed = checkIsLocalFeed(url);
43
+ const isFeedStale = feed?.stale;
43
44
 
44
- return !currentFeedHasData || clearCache || isLocalFeed;
45
+ return !currentFeedHasData || clearCache || isFeedStale || isLocalFeed;
45
46
  };
@@ -1,10 +1,20 @@
1
1
  import * as React from "react";
2
- import { NativeModules, StyleSheet, View } from "react-native";
2
+ import { NativeModules, View, StyleSheet } from "react-native";
3
3
  import { getXray } from "@applicaster/zapp-react-native-utils/logger";
4
4
 
5
- import { isApplePlatform, isWeb } from "../reactUtils";
5
+ import { isApplePlatform, isWeb, isTV } from "../reactUtils";
6
6
  import { useRivers } from "../reactHooks";
7
7
 
8
+ const isTVPlatform = isTV();
9
+
10
+ const styles = StyleSheet.create({
11
+ container: isTVPlatform
12
+ ? {
13
+ flex: 1,
14
+ }
15
+ : {},
16
+ });
17
+
8
18
  const layoutReducer = (state, { payload }) => {
9
19
  return state.map((item, index, _state) => ({
10
20
  height: index === payload.index ? payload.height : item.height,
@@ -30,12 +40,6 @@ type MeasurementContext = {
30
40
  onLayout: (index: number) => (event) => void;
31
41
  };
32
42
 
33
- const styles = StyleSheet.create({
34
- container: {
35
- flex: 1,
36
- },
37
- });
38
-
39
43
  const { Logger } = getXray();
40
44
 
41
45
  const logger = new Logger("general", "ui");
@@ -0,0 +1,203 @@
1
+ /* eslint-disable no-dupe-class-members */
2
+ import { Observable } from "rxjs";
3
+ import { createLogger } from "../logger";
4
+
5
+ const { log_debug, log_warning, log_verbose } = createLogger({
6
+ subsystem: "UIActionsRegistry",
7
+ category: "ActionRegistration",
8
+ });
9
+
10
+ /**
11
+ * The runtime value of a UI action.
12
+ *
13
+ * This is the object that consumers interact with (render buttons for,
14
+ * invoke on press, read initial state from, etc.). It intentionally keeps an
15
+ * open shape (`[K: string]: any`) so that both the modern registry-based
16
+ * actions and the legacy context-provider based actions can be represented by
17
+ * the same structure.
18
+ */
19
+ export type RegisteredActionValue = {
20
+ state?: any;
21
+ getInitialState?: () => Promise<void>;
22
+ initialEntryState?: (item: ZappEntry | ZappFeed) => CellActionEntryState;
23
+ invokeAction: (
24
+ item: ZappEntry | ZappFeed,
25
+ options?: InvokeArgsOptions
26
+ ) => void;
27
+ isActionAvailable?: (item: ZappEntry | ZappFeed) => boolean;
28
+ addListener?: (
29
+ entryId: string,
30
+ listener: CellActionStateListenerFunction
31
+ ) => CellActionStateRemoveListenerFunction;
32
+ /**
33
+ * Optional RX stream of the action state for a given entry. When not
34
+ * provided, `observeEntryState` derives one from `initialEntryState` +
35
+ * `addListener` (see below).
36
+ */
37
+ observeEntryState?: (
38
+ entry: ZappEntry | ZappFeed
39
+ ) => Observable<CellActionEntryState>;
40
+ [K: string]: any;
41
+ };
42
+
43
+ export type RegisteredAction = {
44
+ identifier: string; // Plugin identifier or synthetic name
45
+ action: RegisteredActionValue;
46
+ };
47
+
48
+ /**
49
+ * A function that, given an optional context (currently just the `entry`),
50
+ * returns the list of actions it wants to contribute.
51
+ *
52
+ * Returning an array is what allows a single provider (plugin or otherwise) to
53
+ * expose more than one action, and to compute those actions based on the entry.
54
+ */
55
+ export type UIActionProvider = (params: {
56
+ entry?: ZappEntry | ZappFeed;
57
+ }) => RegisteredAction[];
58
+
59
+ /**
60
+ * Returns an RX `Observable` that emits the action state for `entry`.
61
+ *
62
+ * If the action already exposes its own `observeEntryState`, it is used as-is.
63
+ * Otherwise we build the stream from the legacy imperative API:
64
+ * - it immediately emits `initialEntryState(entry)` (if available), and
65
+ * - it subscribes to further changes via `addListener(entryId, listener)`,
66
+ * unsubscribing automatically when the observable is torn down.
67
+ *
68
+ * This lets every action - old or new - be consumed reactively through a single
69
+ * mechanism, without each consumer having to wire up `addListener` manually.
70
+ */
71
+ export function observeEntryState(
72
+ action: RegisteredActionValue | undefined,
73
+ entry: ZappEntry | ZappFeed
74
+ ): Observable<CellActionEntryState> {
75
+ if (typeof action?.observeEntryState === "function") {
76
+ return action.observeEntryState(entry);
77
+ }
78
+
79
+ return new Observable<CellActionEntryState>((subscriber) => {
80
+ const initialState = action?.initialEntryState?.(entry);
81
+
82
+ if (initialState !== undefined) {
83
+ subscriber.next(initialState);
84
+ }
85
+
86
+ const removeListener = action?.addListener?.(
87
+ String((entry as ZappEntry)?.id),
88
+ (state: CellActionEntryState) => subscriber.next(state)
89
+ );
90
+
91
+ return () => removeListener?.();
92
+ });
93
+ }
94
+
95
+ class UIActionsRegistry {
96
+ private registeredActions: Record<string, UIActionProvider> = {};
97
+
98
+ /**
99
+ * Register a dynamic action provider under a unique `name`.
100
+ * The provider can return one or more actions and may use the passed `entry`.
101
+ * Returns an unregister function.
102
+ */
103
+ registerActionProvider(
104
+ name: string,
105
+ actionProvider: UIActionProvider
106
+ ): () => void {
107
+ const isOverride = Boolean(this.registeredActions[name]);
108
+
109
+ if (isOverride) {
110
+ log_warning(
111
+ `registerActionProvider: overriding existing provider for "${name}"`,
112
+ { name }
113
+ );
114
+ } else {
115
+ log_debug(`registerActionProvider: registered "${name}"`, { name });
116
+ }
117
+
118
+ this.registeredActions[name] = actionProvider;
119
+
120
+ return () => {
121
+ // Only remove if it's still the same provider to avoid races where a
122
+ // newer registration replaced this one.
123
+ if (this.registeredActions[name] === actionProvider) {
124
+ delete this.registeredActions[name];
125
+ log_debug(`registerActionProvider: unregistered "${name}"`, { name });
126
+ } else {
127
+ log_debug(
128
+ `registerActionProvider: skipped unregister for "${name}" – newer provider is active`,
129
+ { name }
130
+ );
131
+ }
132
+ };
133
+ }
134
+
135
+ /**
136
+ * Convenience helper to register a single, static action from anywhere in the
137
+ * app (it does not need to be a plugin). Returns an unregister function.
138
+ */
139
+ registerAction(
140
+ identifier: string,
141
+ action: RegisteredActionValue
142
+ ): () => void {
143
+ log_debug(`registerAction: registering single action "${identifier}"`, {
144
+ identifier,
145
+ });
146
+
147
+ return this.registerActionProvider(identifier, () => [
148
+ { identifier, action },
149
+ ]);
150
+ }
151
+
152
+ getEntryActions(entry: ZappEntry): RegisteredAction[] {
153
+ const results = Object.keys(this.registeredActions)
154
+ .map((key) => this.registeredActions[key]({ entry }))
155
+ .flatMap((a) => a);
156
+
157
+ log_verbose(
158
+ `getEntryActions: resolved ${results.length} action(s) for entry "${entry?.id}"`,
159
+ { entryId: entry?.id, identifiers: results.map((r) => r.identifier) }
160
+ );
161
+
162
+ return results;
163
+ }
164
+
165
+ getActions(name: string, entry?: ZappEntry | ZappFeed): RegisteredAction[] {
166
+ if (!this.registeredActions[name]) {
167
+ log_warning(`getActions: no provider found for "${name}"`, { name });
168
+
169
+ return [];
170
+ }
171
+
172
+ const results = this.registeredActions[name]({ entry }) ?? [];
173
+
174
+ log_verbose(
175
+ `getActions: resolved ${results.length} action(s) for "${name}"`,
176
+ {
177
+ name,
178
+ entryId: (entry as ZappEntry)?.id,
179
+ identifiers: results.map((r) => r.identifier),
180
+ }
181
+ );
182
+
183
+ return results;
184
+ }
185
+
186
+ /**
187
+ * Returns the runtime value of the first action registered under `name`, or
188
+ * `undefined`. This mirrors the shape returned by the legacy `useActions`
189
+ * hook, easing migration of single-action consumers.
190
+ */
191
+ getAction(
192
+ name: string,
193
+ entry?: ZappEntry | ZappFeed
194
+ ): RegisteredActionValue | undefined {
195
+ return this.getActions(name, entry)[0]?.action;
196
+ }
197
+
198
+ hasAction(name: string): boolean {
199
+ return Boolean(this.registeredActions[name]);
200
+ }
201
+ }
202
+
203
+ export const uiActionsRegistry = new UIActionsRegistry();
@@ -1 +0,0 @@
1
- export const usePipesCacheReset = jest.fn();