@applicaster/zapp-react-native-utils 16.0.0-rc.71 → 16.0.0-rc.73
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.
- package/entryActions/__tests__/buildEntryActions.test.ts +156 -0
- package/entryActions/aliasPresentation.ts +124 -0
- package/entryActions/buildEntryActions.ts +166 -0
- package/entryActions/index.ts +17 -0
- package/entryActions/types.ts +39 -0
- package/manifestUtils/defaultManifestConfigurations/player.js +22 -1
- package/package.json +2 -2
- package/playerUtils/__tests__/resolvePlayerActions.test.ts +138 -0
- package/playerUtils/index.ts +17 -1
- package/playerUtils/resolvePlayerActions.ts +71 -0
- package/reactHooks/actions/index.ts +67 -2
- package/uiActionsRegistrator/__tests__/resolveActionIdentifiers.test.ts +93 -0
- package/uiActionsRegistrator/__tests__/subscribe.test.ts +107 -0
- package/uiActionsRegistrator/__tests__/usableActionItems.test.ts +52 -0
- package/uiActionsRegistrator/index.ts +25 -203
- package/uiActionsRegistrator/registry.ts +335 -0
- package/uiActionsRegistrator/resolveActionIdentifiers.ts +100 -0
- package/uiActionsRegistrator/usableActionItems.ts +66 -0
- package/playerUtils/__tests__/getPlayerActionButtons.test.ts +0 -54
- package/playerUtils/getPlayerActionButtons.ts +0 -17
package/playerUtils/index.ts
CHANGED
|
@@ -7,7 +7,23 @@ import { isTV } from "@applicaster/zapp-react-native-utils/reactUtils";
|
|
|
7
7
|
import { getBoolFromConfigValue } from "../configurationUtils";
|
|
8
8
|
import { Dimensions } from "react-native";
|
|
9
9
|
|
|
10
|
-
export {
|
|
10
|
+
export { resolvePlayerActions } from "./resolvePlayerActions";
|
|
11
|
+
|
|
12
|
+
export { isEntryAction } from "../entryActions";
|
|
13
|
+
|
|
14
|
+
export {
|
|
15
|
+
parseActionIdentifiers,
|
|
16
|
+
resolveActionIdentifiers,
|
|
17
|
+
} from "../uiActionsRegistrator";
|
|
18
|
+
|
|
19
|
+
export type { ResolveActionIdentifiersParams } from "../uiActionsRegistrator";
|
|
20
|
+
|
|
21
|
+
export type {
|
|
22
|
+
ActionButtonDescriptor,
|
|
23
|
+
OverflowDescriptor,
|
|
24
|
+
PlayerControlDescriptor,
|
|
25
|
+
ResolvePlayerActionsParams,
|
|
26
|
+
} from "./resolvePlayerActions";
|
|
11
27
|
|
|
12
28
|
export {
|
|
13
29
|
resolvePlayerContentText,
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { selectActionButtons } from "../conf/player/selectors";
|
|
2
|
+
import {
|
|
3
|
+
usableActionItems,
|
|
4
|
+
RegisteredAction,
|
|
5
|
+
resolveActionIdentifiers,
|
|
6
|
+
} from "../uiActionsRegistrator";
|
|
7
|
+
|
|
8
|
+
export type ResolvePlayerActionsParams = {
|
|
9
|
+
configuration: any;
|
|
10
|
+
entry: ZappEntry | ZappFeed;
|
|
11
|
+
/** Expands the `entry_actions` token; see `resolveActionIdentifiers`. */
|
|
12
|
+
expandEntryActions?: (entry: ZappEntry | ZappFeed) => RegisteredAction[];
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* The player's action buttons, resolved against the entry.
|
|
17
|
+
*
|
|
18
|
+
* Every `player_action_buttons` token goes through `uiActionsRegistry`, except
|
|
19
|
+
* `entry_actions`, which the caller expands from the entry itself. The list is
|
|
20
|
+
* not capped; the overlay decides how many fit and sends the rest to the sheet.
|
|
21
|
+
*/
|
|
22
|
+
export function resolvePlayerActions({
|
|
23
|
+
configuration,
|
|
24
|
+
entry,
|
|
25
|
+
expandEntryActions,
|
|
26
|
+
}: ResolvePlayerActionsParams): RegisteredAction[] {
|
|
27
|
+
const buttonsString = selectActionButtons(configuration);
|
|
28
|
+
|
|
29
|
+
if (!buttonsString) {
|
|
30
|
+
return [];
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// Deduped at the source: `player_action_buttons` is a hand-typed string, so
|
|
34
|
+
// the same identifier can legitimately appear twice. Left alone, a repeat
|
|
35
|
+
// would be counted twice against the inline limit, rendered twice on the
|
|
36
|
+
// overlay, and collide as a React key. Items with no `invokeAction` are
|
|
37
|
+
// dropped here too - they can never do anything.
|
|
38
|
+
return usableActionItems(
|
|
39
|
+
resolveActionIdentifiers({
|
|
40
|
+
identifiers: buttonsString,
|
|
41
|
+
entry,
|
|
42
|
+
expandEntryActions,
|
|
43
|
+
})
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/** One control on the player overlay, before overflow is applied. */
|
|
48
|
+
export type ActionButtonDescriptor =
|
|
49
|
+
| { kind: "subtitle" }
|
|
50
|
+
| { kind: "close" }
|
|
51
|
+
| { kind: "airplay" }
|
|
52
|
+
| { kind: "action"; action: RegisteredAction };
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* The Overflow control, produced by `splitOverflow` when more content actions
|
|
56
|
+
* resolve than fit on the overlay.
|
|
57
|
+
*/
|
|
58
|
+
export type OverflowDescriptor = {
|
|
59
|
+
kind: "overflow";
|
|
60
|
+
/**
|
|
61
|
+
* Every content action, the overlay companion included. An overlay button
|
|
62
|
+
* renders nothing when its action has no icon, so the companion needs the
|
|
63
|
+
* sheet as a second home or it could be reachable from nowhere.
|
|
64
|
+
*/
|
|
65
|
+
additionalActions: RegisteredAction[];
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
/** What the overlay actually renders, once overflow has been applied. */
|
|
69
|
+
export type PlayerControlDescriptor =
|
|
70
|
+
| ActionButtonDescriptor
|
|
71
|
+
| OverflowDescriptor;
|
|
@@ -6,6 +6,7 @@ import { ActionsContext } from "@applicaster/zapp-react-native-ui-components/Con
|
|
|
6
6
|
import {
|
|
7
7
|
observeEntryState,
|
|
8
8
|
RegisteredActionValue,
|
|
9
|
+
uiActionsRegistry,
|
|
9
10
|
} from "../../uiActionsRegistrator";
|
|
10
11
|
import { reactHooksLogger } from "../logger";
|
|
11
12
|
|
|
@@ -34,7 +35,13 @@ export function useActions<T = unknown>(plugId: string): any {
|
|
|
34
35
|
if (!logged) {
|
|
35
36
|
logger.warning({
|
|
36
37
|
message: `useActions: Couldn't find an action for ${plugId} plugin`,
|
|
37
|
-
|
|
38
|
+
// Identifiers only. The action map holds every plugin's module and
|
|
39
|
+
// live React context, which is far too large for a log line and can
|
|
40
|
+
// carry whatever state those plugins hold.
|
|
41
|
+
data: {
|
|
42
|
+
plugId,
|
|
43
|
+
availableActions: Object.keys(context?.actions ?? {}),
|
|
44
|
+
},
|
|
38
45
|
});
|
|
39
46
|
|
|
40
47
|
setLogged(true);
|
|
@@ -80,7 +87,31 @@ export function useEntryActionState(
|
|
|
80
87
|
useEffect(() => {
|
|
81
88
|
if (!action) return undefined;
|
|
82
89
|
|
|
83
|
-
|
|
90
|
+
// An action's stream is third-party code. Subscribing with only a `next`
|
|
91
|
+
// handler lets RxJS rethrow an error notification asynchronously, where no
|
|
92
|
+
// error boundary catches it - one plugin faulting would take the app down
|
|
93
|
+
// rather than this one button. The button keeps its last known state.
|
|
94
|
+
let subscription;
|
|
95
|
+
|
|
96
|
+
try {
|
|
97
|
+
subscription = observeEntryState(action, entry).subscribe({
|
|
98
|
+
next: setState,
|
|
99
|
+
error: (error) =>
|
|
100
|
+
logger.warning({
|
|
101
|
+
message:
|
|
102
|
+
"useEntryActionState: the action's state stream failed - the button keeps its last state",
|
|
103
|
+
data: { entryId, error },
|
|
104
|
+
}),
|
|
105
|
+
});
|
|
106
|
+
} catch (error) {
|
|
107
|
+
logger.warning({
|
|
108
|
+
message:
|
|
109
|
+
"useEntryActionState: could not observe the action - the button keeps its initial state",
|
|
110
|
+
data: { entryId, error },
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
return undefined;
|
|
114
|
+
}
|
|
84
115
|
|
|
85
116
|
return () => subscription.unsubscribe();
|
|
86
117
|
// eslint-disable-next-line @wogns3623/better-exhaustive-deps/exhaustive-deps
|
|
@@ -88,6 +119,18 @@ export function useEntryActionState(
|
|
|
88
119
|
|
|
89
120
|
const invokeAction = useCallback(
|
|
90
121
|
(options: InvokeArgsOptions = {}) => {
|
|
122
|
+
if (typeof action?.invokeAction !== "function") {
|
|
123
|
+
// A button was rendered and pressed, and the press goes nowhere. Only
|
|
124
|
+
// reachable on a user interaction, so it costs nothing on render. The
|
|
125
|
+
// action value carries no identifier, so the label is what locates the
|
|
126
|
+
// button that misbehaved.
|
|
127
|
+
logger.warning({
|
|
128
|
+
message:
|
|
129
|
+
"useEntryActionState: the pressed action has no invokeAction - the press did nothing",
|
|
130
|
+
data: { entryId, label: state?.label },
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
|
|
91
134
|
action?.invokeAction?.(entry, { updateState: setState, ...options });
|
|
92
135
|
},
|
|
93
136
|
// eslint-disable-next-line @wogns3623/better-exhaustive-deps/exhaustive-deps
|
|
@@ -96,3 +139,25 @@ export function useEntryActionState(
|
|
|
96
139
|
|
|
97
140
|
return { state, invokeAction };
|
|
98
141
|
}
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* A value that changes whenever a provider is added to or removed from
|
|
145
|
+
* `uiActionsRegistry`.
|
|
146
|
+
*
|
|
147
|
+
* Providers can register after the UI that wants them has rendered - the audio
|
|
148
|
+
* player registers playback speed only once its controller has state, and
|
|
149
|
+
* plugin-backed actions are bridged in from an effect. Put this in the
|
|
150
|
+
* dependency list of anything that resolves actions, so the list is re-read
|
|
151
|
+
* instead of being frozen at first paint.
|
|
152
|
+
*/
|
|
153
|
+
export function useRegistryRevision(): number {
|
|
154
|
+
const [revision, setRevision] = useState(0);
|
|
155
|
+
|
|
156
|
+
useEffect(
|
|
157
|
+
() =>
|
|
158
|
+
uiActionsRegistry.subscribe(() => setRevision((current) => current + 1)),
|
|
159
|
+
[]
|
|
160
|
+
);
|
|
161
|
+
|
|
162
|
+
return revision;
|
|
163
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import {
|
|
2
|
+
parseActionIdentifiers,
|
|
3
|
+
resolveActionIdentifiers,
|
|
4
|
+
} from "../resolveActionIdentifiers";
|
|
5
|
+
import { uiActionsRegistry } from "../registry";
|
|
6
|
+
|
|
7
|
+
const action = (identifier: string) =>
|
|
8
|
+
({ identifier, action: { invokeAction: jest.fn() } }) as any;
|
|
9
|
+
|
|
10
|
+
describe("parseActionIdentifiers", () => {
|
|
11
|
+
it("parses comma-separated identifiers", () => {
|
|
12
|
+
expect(parseActionIdentifiers(" a, b , ,c ")).toEqual(["a", "b", "c"]);
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
it("parses identifier arrays", () => {
|
|
16
|
+
expect(parseActionIdentifiers([" a ", "", "b", " ", "c"])).toEqual([
|
|
17
|
+
"a",
|
|
18
|
+
"b",
|
|
19
|
+
"c",
|
|
20
|
+
]);
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
it("returns empty array for nil config", () => {
|
|
24
|
+
expect(parseActionIdentifiers(null)).toEqual([]);
|
|
25
|
+
expect(parseActionIdentifiers(undefined)).toEqual([]);
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
describe("resolveActionIdentifiers", () => {
|
|
30
|
+
const entry = { id: "entry-1" } as any;
|
|
31
|
+
|
|
32
|
+
beforeEach(() => {
|
|
33
|
+
jest
|
|
34
|
+
.spyOn(uiActionsRegistry, "getActions")
|
|
35
|
+
.mockImplementation((identifier) => [action(identifier)] as any);
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
afterEach(() => {
|
|
39
|
+
jest.restoreAllMocks();
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
it("resolves through registry by default", () => {
|
|
43
|
+
const result = resolveActionIdentifiers({
|
|
44
|
+
identifiers: "favorites,share",
|
|
45
|
+
entry,
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
expect(result.map((item) => item.identifier)).toEqual([
|
|
49
|
+
"favorites",
|
|
50
|
+
"share",
|
|
51
|
+
]);
|
|
52
|
+
|
|
53
|
+
expect(uiActionsRegistry.getActions).toHaveBeenCalledWith(
|
|
54
|
+
"favorites",
|
|
55
|
+
entry
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
expect(uiActionsRegistry.getActions).toHaveBeenCalledWith("share", entry);
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
it("expands entry_actions through the caller, not the registry", () => {
|
|
62
|
+
const expanded = [action("entry_action_0"), action("entry_action_1")];
|
|
63
|
+
const expandEntryActions = jest.fn(() => expanded);
|
|
64
|
+
|
|
65
|
+
const unregister = uiActionsRegistry.registerAction("share", {
|
|
66
|
+
invokeAction: jest.fn(),
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
try {
|
|
70
|
+
const result = resolveActionIdentifiers({
|
|
71
|
+
identifiers: "entry_actions,share",
|
|
72
|
+
entry,
|
|
73
|
+
expandEntryActions,
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
expect(expandEntryActions).toHaveBeenCalledWith(entry);
|
|
77
|
+
|
|
78
|
+
expect(result.map((item) => item.identifier)).toEqual([
|
|
79
|
+
"entry_action_0",
|
|
80
|
+
"entry_action_1",
|
|
81
|
+
"share",
|
|
82
|
+
]);
|
|
83
|
+
} finally {
|
|
84
|
+
unregister();
|
|
85
|
+
}
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
it("resolves nothing for entry_actions when the caller cannot expand it", () => {
|
|
89
|
+
expect(
|
|
90
|
+
resolveActionIdentifiers({ identifiers: "entry_actions", entry })
|
|
91
|
+
).toEqual([]);
|
|
92
|
+
});
|
|
93
|
+
});
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { isActionAvailableFor, uiActionsRegistry } from "../registry";
|
|
2
|
+
|
|
3
|
+
const value = { invokeAction: jest.fn() };
|
|
4
|
+
|
|
5
|
+
describe("uiActionsRegistry.subscribe", () => {
|
|
6
|
+
it("fires on registration and on unregistration", () => {
|
|
7
|
+
const listener = jest.fn();
|
|
8
|
+
const unsubscribe = uiActionsRegistry.subscribe(listener);
|
|
9
|
+
|
|
10
|
+
const unregister = uiActionsRegistry.registerAction("late-action", value);
|
|
11
|
+
|
|
12
|
+
expect(listener).toHaveBeenCalledTimes(1);
|
|
13
|
+
|
|
14
|
+
unregister();
|
|
15
|
+
|
|
16
|
+
expect(listener).toHaveBeenCalledTimes(2);
|
|
17
|
+
|
|
18
|
+
unsubscribe();
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
it("lets a listener see the action it was told about", () => {
|
|
22
|
+
let seen: string[] = [];
|
|
23
|
+
|
|
24
|
+
const unsubscribe = uiActionsRegistry.subscribe(() => {
|
|
25
|
+
seen = uiActionsRegistry
|
|
26
|
+
.getActions("late-action", { id: "e1" } as any)
|
|
27
|
+
.map((item) => item.identifier);
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
const unregister = uiActionsRegistry.registerAction("late-action", value);
|
|
31
|
+
|
|
32
|
+
expect(seen).toEqual(["late-action"]);
|
|
33
|
+
|
|
34
|
+
unregister();
|
|
35
|
+
unsubscribe();
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it("stops calling a listener once unsubscribed", () => {
|
|
39
|
+
const listener = jest.fn();
|
|
40
|
+
|
|
41
|
+
uiActionsRegistry.subscribe(listener)();
|
|
42
|
+
|
|
43
|
+
uiActionsRegistry.registerAction("another-action", value)();
|
|
44
|
+
|
|
45
|
+
expect(listener).not.toHaveBeenCalled();
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
it("survives a listener that unsubscribes itself while being notified", () => {
|
|
49
|
+
const other = jest.fn();
|
|
50
|
+
|
|
51
|
+
const unsubscribeOther = uiActionsRegistry.subscribe(other);
|
|
52
|
+
|
|
53
|
+
const unsubscribeSelf = uiActionsRegistry.subscribe(() => {
|
|
54
|
+
unsubscribeSelf();
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
expect(() =>
|
|
58
|
+
uiActionsRegistry.registerAction("self-removing", value)()
|
|
59
|
+
).not.toThrow();
|
|
60
|
+
|
|
61
|
+
expect(other).toHaveBeenCalled();
|
|
62
|
+
|
|
63
|
+
unsubscribeOther();
|
|
64
|
+
});
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
describe("isActionAvailableFor", () => {
|
|
68
|
+
const entry = { id: "e1" } as any;
|
|
69
|
+
|
|
70
|
+
it("shows an action that states no opinion", () => {
|
|
71
|
+
expect(isActionAvailableFor({ invokeAction: jest.fn() }, entry)).toBe(true);
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
it.each([
|
|
75
|
+
["isSupportDownloads"],
|
|
76
|
+
["isActionSupported"],
|
|
77
|
+
["isActionAvailable"],
|
|
78
|
+
])("honours %s", (predicate) => {
|
|
79
|
+
expect(
|
|
80
|
+
isActionAvailableFor(
|
|
81
|
+
{ invokeAction: jest.fn(), [predicate]: () => false } as any,
|
|
82
|
+
entry
|
|
83
|
+
)
|
|
84
|
+
).toBe(false);
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
it("asks only the first predicate the action defines", () => {
|
|
88
|
+
const isActionAvailable = jest.fn(() => true);
|
|
89
|
+
|
|
90
|
+
expect(
|
|
91
|
+
isActionAvailableFor(
|
|
92
|
+
{
|
|
93
|
+
invokeAction: jest.fn(),
|
|
94
|
+
isSupportDownloads: () => false,
|
|
95
|
+
isActionAvailable,
|
|
96
|
+
} as any,
|
|
97
|
+
entry
|
|
98
|
+
)
|
|
99
|
+
).toBe(false);
|
|
100
|
+
|
|
101
|
+
expect(isActionAvailable).not.toHaveBeenCalled();
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
it("treats a missing action as unavailable-free", () => {
|
|
105
|
+
expect(isActionAvailableFor(undefined, entry)).toBe(true);
|
|
106
|
+
});
|
|
107
|
+
});
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { usableActionItems } from "../usableActionItems";
|
|
2
|
+
|
|
3
|
+
const action = (identifier: string) =>
|
|
4
|
+
({ identifier, action: { invokeAction: jest.fn() } }) as any;
|
|
5
|
+
|
|
6
|
+
describe("usableActionItems", () => {
|
|
7
|
+
it("keeps a usable list untouched, in order", () => {
|
|
8
|
+
const base = [action("share"), action("favorites")];
|
|
9
|
+
|
|
10
|
+
expect(usableActionItems(base).map((item) => item.identifier)).toEqual([
|
|
11
|
+
"share",
|
|
12
|
+
"favorites",
|
|
13
|
+
]);
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it("keeps the first of a repeated identifier", () => {
|
|
17
|
+
const firstShare = action("share");
|
|
18
|
+
const secondShare = action("share");
|
|
19
|
+
|
|
20
|
+
const result = usableActionItems([
|
|
21
|
+
firstShare,
|
|
22
|
+
action("favorites"),
|
|
23
|
+
secondShare,
|
|
24
|
+
]);
|
|
25
|
+
|
|
26
|
+
expect(result.map((item) => item.identifier)).toEqual([
|
|
27
|
+
"share",
|
|
28
|
+
"favorites",
|
|
29
|
+
]);
|
|
30
|
+
|
|
31
|
+
expect(result[0]).toBe(firstShare);
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
it("drops items that cannot be invoked or have no identifier", () => {
|
|
35
|
+
const result = usableActionItems([
|
|
36
|
+
action("share"),
|
|
37
|
+
{ identifier: "blank" } as any,
|
|
38
|
+
{ identifier: "no-invoke", action: {} } as any,
|
|
39
|
+
{ action: { invokeAction: jest.fn() } } as any,
|
|
40
|
+
action("entry_action_0"),
|
|
41
|
+
]);
|
|
42
|
+
|
|
43
|
+
expect(result.map((item) => item.identifier)).toEqual([
|
|
44
|
+
"share",
|
|
45
|
+
"entry_action_0",
|
|
46
|
+
]);
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it("tolerates a missing list", () => {
|
|
50
|
+
expect(usableActionItems(undefined as any)).toEqual([]);
|
|
51
|
+
});
|
|
52
|
+
});
|
|
@@ -1,203 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
export
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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
|
+
export {
|
|
2
|
+
canRenderActionIcon,
|
|
3
|
+
resolveActionAsset,
|
|
4
|
+
isActionAvailableFor,
|
|
5
|
+
observeEntryState,
|
|
6
|
+
uiActionsRegistry,
|
|
7
|
+
} from "./registry";
|
|
8
|
+
|
|
9
|
+
export type {
|
|
10
|
+
RegisteredAction,
|
|
11
|
+
RegisteredActionSource,
|
|
12
|
+
RegisteredActionValue,
|
|
13
|
+
RegistryChangeListener,
|
|
14
|
+
UIActionProvider,
|
|
15
|
+
} from "./registry";
|
|
16
|
+
|
|
17
|
+
export { usableActionItems } from "./usableActionItems";
|
|
18
|
+
|
|
19
|
+
export {
|
|
20
|
+
ENTRY_ACTIONS_IDENTIFIER,
|
|
21
|
+
parseActionIdentifiers,
|
|
22
|
+
resolveActionIdentifiers,
|
|
23
|
+
} from "./resolveActionIdentifiers";
|
|
24
|
+
|
|
25
|
+
export type { ResolveActionIdentifiersParams } from "./resolveActionIdentifiers";
|