@applicaster/zapp-react-native-utils 16.0.0-rc.8 → 16.0.0-rc.80

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 (189) hide show
  1. package/actionsExecutor/ActionExecutor.ts +47 -11
  2. package/actionsExecutor/ActionExecutorContext.tsx +102 -315
  3. package/actionsExecutor/__tests__/feedDecorator.test.ts +61 -0
  4. package/actionsExecutor/actions/__tests__/dismissBottomSheet.test.ts +25 -0
  5. package/actionsExecutor/actions/__tests__/goBack.test.ts +62 -0
  6. package/actionsExecutor/actions/__tests__/goHome.test.ts +19 -0
  7. package/actionsExecutor/actions/__tests__/loadItemsFromSource.test.ts +88 -0
  8. package/actionsExecutor/actions/__tests__/navigateToScreen.test.ts +133 -0
  9. package/actionsExecutor/actions/__tests__/openBottomSheet.customContent.test.ts +76 -0
  10. package/actionsExecutor/actions/__tests__/openBottomSheet.inlineItems.test.ts +212 -0
  11. package/actionsExecutor/actions/__tests__/showToast.test.ts +88 -0
  12. package/actionsExecutor/actions/appRestart.ts +24 -0
  13. package/actionsExecutor/actions/confirmDialog.ts +53 -0
  14. package/actionsExecutor/actions/dismissBottomSheet.ts +23 -0
  15. package/actionsExecutor/actions/goBack.ts +60 -0
  16. package/actionsExecutor/actions/goHome.ts +31 -0
  17. package/actionsExecutor/actions/index.ts +38 -0
  18. package/actionsExecutor/actions/localStorageRemove.ts +27 -0
  19. package/actionsExecutor/actions/localStorageSet.ts +28 -0
  20. package/actionsExecutor/actions/localStorageToggleFlag.ts +28 -0
  21. package/actionsExecutor/actions/navigateToScreen.ts +137 -0
  22. package/actionsExecutor/actions/openBottomSheet.ts +325 -0
  23. package/actionsExecutor/actions/refreshComponent.ts +85 -0
  24. package/actionsExecutor/actions/screenSetVariable.ts +35 -0
  25. package/actionsExecutor/actions/screenToggleFlag.ts +38 -0
  26. package/actionsExecutor/actions/sendCloudEvent.ts +93 -0
  27. package/actionsExecutor/actions/sessionStorageRemove.ts +19 -0
  28. package/actionsExecutor/actions/sessionStorageSet.ts +20 -0
  29. package/actionsExecutor/actions/sessionStorageToggleFlag.ts +15 -0
  30. package/actionsExecutor/actions/showToast.ts +87 -0
  31. package/actionsExecutor/actions/switchLayout.ts +40 -0
  32. package/actionsExecutor/consts.ts +25 -0
  33. package/actionsExecutor/feedDecorator.ts +6 -6
  34. package/actionsExecutor/types.ts +59 -0
  35. package/analyticsUtils/AnalyticsEvents/sendMenuClickEvent.ts +2 -2
  36. package/analyticsUtils/PlayerAnalyticsManager.ts +12 -2
  37. package/analyticsUtils/__tests__/analyticsMapper.test.ts +35 -0
  38. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testACP_events.json +1 -1
  39. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testBlockUnlistedParams_rules.json +1 -1
  40. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_events.json +4 -0
  41. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_rules.json +6 -0
  42. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEventRegex_events.json +3 -9
  43. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_events.json +18 -0
  44. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_rules.json +16 -0
  45. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_events.json +4 -0
  46. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_rules.json +6 -0
  47. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_events.json +4 -0
  48. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_rules.json +6 -0
  49. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_events.json +4 -0
  50. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_rules.json +6 -0
  51. package/analyticsUtils/__tests__/fixtures/index.js +20 -0
  52. package/analyticsUtils/analyticsMapper.ts +4 -1
  53. package/analyticsUtils/playerAnalyticsTracker.ts +26 -3
  54. package/appUtils/HooksManager/index.ts +12 -8
  55. package/appUtils/contextKeysManager/__tests__/getKey/failure.test.ts +1 -1
  56. package/appUtils/contextKeysManager/__tests__/removeKey/failure.test.ts +1 -1
  57. package/appUtils/contextKeysManager/__tests__/setKey/failure/invalidKey.test.ts +4 -4
  58. package/appUtils/contextKeysManager/index.ts +1 -1
  59. package/appUtils/contextKeysManager/utils/index.ts +38 -25
  60. package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +143 -53
  61. package/appUtils/playerManager/OverlayObserver/__tests__/liveContent.test.ts +205 -0
  62. package/appUtils/playerManager/OverlayObserver/__tests__/utils.test.ts +49 -0
  63. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.android.tv.ts +4 -0
  64. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ios.tv.ts +4 -0
  65. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ts +11 -0
  66. package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.web.ts +4 -0
  67. package/appUtils/playerManager/OverlayObserver/utils.ts +54 -20
  68. package/appUtils/playerManager/__tests__/playerContent.test.ts +403 -0
  69. package/appUtils/playerManager/__tests__/playerFactory.test.ts +1 -1
  70. package/appUtils/playerManager/__tests__/playerNative.test.ts +38 -0
  71. package/appUtils/playerManager/__tests__/usePlayerContent.test.tsx +64 -0
  72. package/appUtils/playerManager/{conts.ts → const.ts} +20 -0
  73. package/appUtils/playerManager/index.ts +1 -1
  74. package/appUtils/playerManager/player.ts +115 -3
  75. package/appUtils/playerManager/playerFactory.ts +1 -1
  76. package/appUtils/playerManager/playerNative.ts +6 -4
  77. package/appUtils/playerManager/usePlayerContent.tsx +43 -0
  78. package/appUtils/playerManager/usePlayerControllerSetup.tsx +1 -1
  79. package/appUtils/playerManager/userLanguagePreference.ts +1 -1
  80. package/arrayUtils/__tests__/{anyThruthy.test.ts → anyTruthy.test.ts} +8 -0
  81. package/arrayUtils/__tests__/arrayUtils.test.ts +165 -108
  82. package/arrayUtils/__tests__/isEmptyArray.test.ts +11 -0
  83. package/arrayUtils/__tests__/isFilledArray.test.ts +12 -0
  84. package/arrayUtils/__tests__/isFirst.test.ts +17 -0
  85. package/arrayUtils/__tests__/isIndexInRange.test.ts +14 -0
  86. package/arrayUtils/__tests__/isLast.test.ts +31 -0
  87. package/arrayUtils/__tests__/makeListOf.test.ts +31 -0
  88. package/arrayUtils/__tests__/makeListOfIndexes.test.ts +20 -0
  89. package/arrayUtils/__tests__/reorderByIds.test.ts +50 -0
  90. package/arrayUtils/__tests__/sample.test.ts +61 -0
  91. package/arrayUtils/index.ts +136 -20
  92. package/bottomSheet/__tests__/scrollContext.test.tsx +35 -0
  93. package/bottomSheet/index.ts +17 -0
  94. package/cellUtils/index.ts +33 -8
  95. package/colorUtils/__tests__/isTransparentColor.test.ts +76 -0
  96. package/colorUtils/__tests__/isValidColor.test.ts +70 -0
  97. package/colorUtils/index.ts +50 -0
  98. package/configurationUtils/__tests__/modalBlocksParser.test.ts +107 -0
  99. package/configurationUtils/manifestKeyParser.ts +38 -9
  100. package/configurationUtils/modalBlocksParser.ts +178 -0
  101. package/entryActions/__tests__/buildEntryActions.test.ts +156 -0
  102. package/entryActions/aliasPresentation.ts +124 -0
  103. package/entryActions/buildEntryActions.ts +166 -0
  104. package/entryActions/index.ts +17 -0
  105. package/entryActions/types.ts +39 -0
  106. package/manifestUtils/__tests__/player.audioControls.test.js +158 -0
  107. package/manifestUtils/_internals/index.js +14 -3
  108. package/manifestUtils/defaultManifestConfigurations/generalContent.js +35 -0
  109. package/manifestUtils/defaultManifestConfigurations/player.js +349 -20
  110. package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +84 -0
  111. package/manifestUtils/fieldUtils/index.js +125 -0
  112. package/manifestUtils/index.js +3 -0
  113. package/manifestUtils/keys.js +9 -0
  114. package/manifestUtils/mobileAction/button/index.js +16 -0
  115. package/manifestUtils/mobileAction/container/index.js +3 -1
  116. package/manifestUtils/mobileAction/groups/defaults.js +3 -1
  117. package/manifestUtils/modalBlocks.js +304 -0
  118. package/manifestUtils/platformIsTV.js +1 -0
  119. package/modalState/ContentViewModel.ts +113 -0
  120. package/modalState/EditableCollection.ts +17 -0
  121. package/modalState/EditableCollectionRegistry.ts +51 -0
  122. package/modalState/ModalOrchestrator.ts +211 -0
  123. package/modalState/RemoteEditableCollection.ts +227 -0
  124. package/modalState/__tests__/ContentViewModel.editable.test.ts +69 -0
  125. package/modalState/__tests__/ContentViewModel.test.ts +165 -0
  126. package/modalState/__tests__/EditableCollectionRegistry.test.ts +112 -0
  127. package/modalState/__tests__/ModalOrchestrator.phase3.test.ts +47 -0
  128. package/modalState/__tests__/RemoteEditableCollection.test.ts +326 -0
  129. package/modalState/__tests__/index.test.ts +30 -1
  130. package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
  131. package/modalState/index.ts +35 -83
  132. package/modalState/store.ts +102 -0
  133. package/modalState/types.ts +159 -0
  134. package/modalState/useBottomSheetContent.ts +104 -0
  135. package/numberUtils/__tests__/isMinusZero.test.ts +20 -0
  136. package/numberUtils/__tests__/isZero.test.ts +27 -0
  137. package/numberUtils/__tests__/requireNumber.test.ts +50 -0
  138. package/numberUtils/__tests__/toNumber.test.ts +27 -0
  139. package/numberUtils/__tests__/toNumberWithDefault.test.ts +64 -0
  140. package/numberUtils/__tests__/toNumberWithDefaultZero.test.ts +48 -0
  141. package/numberUtils/index.ts +27 -8
  142. package/package.json +2 -2
  143. package/pipesUtils/__tests__/buildUrlWithQuery.test.ts +33 -0
  144. package/pipesUtils/__tests__/withPipesEndpoint.test.tsx +56 -0
  145. package/pipesUtils/index.ts +1 -0
  146. package/pipesUtils/withPipesEndpoint.tsx +54 -0
  147. package/playerUtils/__tests__/contentDataKeys.test.ts +297 -0
  148. package/playerUtils/__tests__/resolvePlayerActions.test.ts +138 -0
  149. package/playerUtils/__tests__/resolvePlayerTitleSubtitle.test.ts +180 -0
  150. package/playerUtils/contentDataKeys.ts +134 -0
  151. package/playerUtils/index.ts +58 -15
  152. package/playerUtils/isAudioItem.ts +26 -0
  153. package/playerUtils/resolvePlayerActions.ts +71 -0
  154. package/playerUtils/resolvePlayerTitleSubtitle.ts +76 -0
  155. package/reactHooks/actions/index.ts +117 -2
  156. package/reactHooks/cell-click/index.ts +18 -10
  157. package/reactHooks/feed/__mocks__/useMarkPipesDataStale.ts +4 -0
  158. package/reactHooks/feed/__tests__/useInflatedUrl.test.tsx +25 -0
  159. package/reactHooks/feed/index.ts +5 -1
  160. package/reactHooks/feed/useBatchLoading.ts +9 -1
  161. package/reactHooks/feed/{usePipesCacheReset.ts → useMarkPipesDataStale.ts} +12 -4
  162. package/reactHooks/index.ts +2 -0
  163. package/reactHooks/layout/index.ts +1 -1
  164. package/reactHooks/navigation/__mocks__/index.ts +4 -0
  165. package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
  166. package/reactHooks/navigation/index.ts +1 -1
  167. package/reactHooks/navigation/useIsScreenActive.ts +29 -8
  168. package/reactHooks/state/useComponentScreenState.ts +1 -1
  169. package/reactHooks/usePluginConfiguration.ts +4 -1
  170. package/reactHooks/utils/__tests__/index.test.js +22 -2
  171. package/reactHooks/utils/index.ts +13 -2
  172. package/reactHooks/videoModal/hooks/useVideoModalScreenData.tsx +22 -4
  173. package/riverComponetsMeasurementProvider/index.tsx +12 -8
  174. package/stringUtils/__tests__/stringUtils.test.js +42 -0
  175. package/stringUtils/index.ts +2 -2
  176. package/uiActionsRegistrator/__tests__/resolveActionIdentifiers.test.ts +93 -0
  177. package/uiActionsRegistrator/__tests__/subscribe.test.ts +107 -0
  178. package/uiActionsRegistrator/__tests__/usableActionItems.test.ts +52 -0
  179. package/uiActionsRegistrator/index.ts +25 -0
  180. package/uiActionsRegistrator/registry.ts +335 -0
  181. package/uiActionsRegistrator/resolveActionIdentifiers.ts +100 -0
  182. package/uiActionsRegistrator/usableActionItems.ts +66 -0
  183. package/zappFrameworkUtils/__tests__/localStorageHelper.test.ts +146 -0
  184. package/zappFrameworkUtils/localStorageHelper.ts +19 -15
  185. package/appUtils/playerManager/usePlayerTitleSummaryOverlay.tsx +0 -56
  186. package/playerUtils/__tests__/getPlayerActionButtons.test.ts +0 -54
  187. package/playerUtils/getPlayerActionButtons.ts +0 -17
  188. package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
  189. /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
@@ -0,0 +1,70 @@
1
+ import { isValidColor } from "..";
2
+
3
+ describe("isValidColor", () => {
4
+ it("returns true for valid hex colors", () => {
5
+ const validHexColors = ["#fff", "#ffffff", "#FF0000", "#000", "#abc123"];
6
+
7
+ expect.assertions(validHexColors.length);
8
+
9
+ validHexColors.forEach((color) => {
10
+ expect(isValidColor(color)).toBe(true);
11
+ });
12
+ });
13
+
14
+ it("returns true for valid rgb and rgba colors", () => {
15
+ const validRgbColors = [
16
+ "rgb(255,0,0)",
17
+ "rgb(255, 0, 0)",
18
+ "rgba(255,0,0,0.5)",
19
+ "rgba(255, 0, 0, 0.5)",
20
+ ];
21
+
22
+ expect.assertions(validRgbColors.length);
23
+
24
+ validRgbColors.forEach((color) => {
25
+ expect(isValidColor(color)).toBe(true);
26
+ });
27
+ });
28
+
29
+ it("returns true for valid named and special CSS colors", () => {
30
+ const validNamedColors = ["red", "transparent", "currentColor", "inherit"];
31
+
32
+ expect.assertions(validNamedColors.length);
33
+
34
+ validNamedColors.forEach((color) => {
35
+ expect(isValidColor(color)).toBe(true);
36
+ });
37
+ });
38
+
39
+ it("returns true for valid hsl colors", () => {
40
+ expect(isValidColor("hsl(0, 100%, 50%)")).toBe(true);
41
+ });
42
+
43
+ it("returns false for invalid color strings", () => {
44
+ const invalidColors = [
45
+ "invalid",
46
+ "",
47
+ "#gggggg",
48
+ "#fff.00",
49
+ "unset",
50
+ undefined,
51
+ null,
52
+ ];
53
+
54
+ expect.assertions(invalidColors.length);
55
+
56
+ invalidColors.forEach((color) => {
57
+ expect(isValidColor(color)).toBe(false);
58
+ });
59
+ });
60
+
61
+ it("returns true for valid rgb and rgba colors", () => {
62
+ const validRgbColors = ["rgba(239,239,239,1.0)"];
63
+
64
+ expect.assertions(validRgbColors.length);
65
+
66
+ validRgbColors.forEach((color) => {
67
+ expect(isValidColor(color)).toBe(true);
68
+ });
69
+ });
70
+ });
@@ -0,0 +1,50 @@
1
+ import validateColor from "validate-color";
2
+ import { isNil } from "@applicaster/zapp-react-native-utils/utils";
3
+ import { isString } from "@applicaster/zapp-react-native-utils/stringUtils";
4
+
5
+ const normalizeRgbaAlpha = (color: string): string => {
6
+ return color.replace(
7
+ /^rgba\(([^)]+),\s*(\d+(?:\.\d+)?)\s*\)$/i,
8
+ (_, rgb, alpha) => {
9
+ const alphaValue = parseFloat(alpha);
10
+
11
+ if (!Number.isFinite(alphaValue) || !Number.isInteger(alphaValue)) {
12
+ return color;
13
+ }
14
+
15
+ return `rgba(${rgb},${alphaValue})`;
16
+ }
17
+ );
18
+ };
19
+
20
+ export const isValidColor = (color: string): boolean => {
21
+ if (isNil(color) || !isString(color)) {
22
+ return false;
23
+ }
24
+
25
+ if (validateColor(color)) {
26
+ return true;
27
+ }
28
+
29
+ // validate-color rejects integer alpha values written as floats (e.g. 1.0)
30
+ // https://github.com/dreamyguy/validate-color/issues/44
31
+ const normalizedColor = normalizeRgbaAlpha(color);
32
+
33
+ return normalizedColor !== color && validateColor(normalizedColor);
34
+ };
35
+
36
+ function isRgbaAlphaZero(color: string): boolean {
37
+ const layers = color
38
+ .replace("rgba(", "")
39
+ .replace(")", "")
40
+ .split(",")
41
+ .map((layer) => layer.trim());
42
+
43
+ return Number(layers[3]) === 0;
44
+ }
45
+
46
+ export const isTransparentColor = (color: string): boolean => {
47
+ return (
48
+ isValidColor(color) && (color === "transparent" || isRgbaAlphaZero(color))
49
+ );
50
+ };
@@ -0,0 +1,107 @@
1
+ import { parseModalBlocksConfiguration } from "../modalBlocksParser";
2
+
3
+ // Mock the platform selection logic so it's consistent
4
+ jest.mock("../../reactUtils", () => ({
5
+ platformSelect: jest.fn().mockReturnValue("ios"),
6
+ }));
7
+
8
+ describe("parseModalBlocksConfiguration", () => {
9
+ beforeEach(() => {
10
+ jest.clearAllMocks();
11
+ });
12
+
13
+ it("should return empty structures for missing config or componentName", () => {
14
+ const result1 = parseModalBlocksConfiguration(
15
+ undefined as any,
16
+ "queue_action"
17
+ );
18
+
19
+ expect(result1.header.container).toEqual({});
20
+
21
+ const result2 = parseModalBlocksConfiguration({ foo: "bar" }, "");
22
+ expect(result2.item.background).toEqual({});
23
+ });
24
+
25
+ it("should correctly parse the specified flat keys into nested objects", () => {
26
+ // The keys follow: <component_name>_style_<blockName>_<subComponent>_[platform_][state_]<styleName>
27
+ const config = {
28
+ // Header container - default platform, default state
29
+ queue_action_style_header_container_backgroundColor: "#000000",
30
+
31
+ // Header title - default platform, pressed state
32
+ queue_action_style_header_title_pressed_fontColor: "#ffffff",
33
+
34
+ // Item background - ios platform, default state
35
+ queue_action_style_item_background_ios_backgroundColor: "blue",
36
+
37
+ // Item textLabel1 - default platform, focused state
38
+ queue_action_style_item_text_label_1_focused_fontSize: 16,
39
+
40
+ // Ignored key (unrelated to building blocks or queue_action)
41
+ other_action_style_header_title_fontColor: "red",
42
+ some_random_key: "value",
43
+
44
+ // Ignored non-style data keys (should NEVER be parsed as styles)
45
+ item_data_source: "http://pipes.example.com",
46
+ item_url: "http://example.com",
47
+
48
+ // New dot notation from manifest-generator (without plugin prefix)
49
+ "item.text_label_2.fontColor": "green",
50
+ "action.background.pressed_backgroundColor": "black",
51
+
52
+ // New now_playing_item block
53
+ "now_playing_item.text_label_1.fontColor": "yellow",
54
+ "now_playing_item.now_playing_asset.asset": "equalizer.png",
55
+ };
56
+
57
+ const componentName = "queue_action";
58
+
59
+ const result = parseModalBlocksConfiguration(config, componentName);
60
+
61
+ // Assert header container default state
62
+ expect(result.header.container.default).toEqual({
63
+ backgroundColor: "#000000",
64
+ });
65
+
66
+ // Assert header title pressed state
67
+ // (pressed state will inherit default styles in getAllSpecificStyles if any,
68
+ // but here we just have pressed, so it has default empty from the parser)
69
+ expect(result.header.title.pressed).toEqual({
70
+ fontColor: "#ffffff",
71
+ });
72
+
73
+ // Assert item background ios default state
74
+ // (mocked platform is ios, so it should be accepted and assigned to default)
75
+ expect(result.item.background.default).toEqual({
76
+ backgroundColor: "blue",
77
+ });
78
+
79
+ // Assert item textLabel1 focused state
80
+ expect(result.item.textLabel1.focused).toEqual({
81
+ fontSize: 16,
82
+ });
83
+
84
+ // Assert dot notation textLabel2 default state
85
+ expect(result.item.textLabel2.default).toEqual({
86
+ fontColor: "green",
87
+ });
88
+
89
+ // Assert dot notation action background pressed state
90
+ expect(result.action.background.pressed).toEqual({
91
+ backgroundColor: "black",
92
+ });
93
+
94
+ // Assert nowPlayingItem states
95
+ expect(result.nowPlayingItem?.textLabel1.default).toEqual({
96
+ fontColor: "yellow",
97
+ });
98
+
99
+ expect(result.nowPlayingItem?.nowPlayingAsset.default).toEqual({
100
+ asset: "equalizer.png",
101
+ });
102
+
103
+ // Assert untouched properties remain empty default style objects
104
+ expect(result.button.title).toEqual({ default: {} });
105
+ expect(result.action.leadingIcon).toEqual({ default: {} });
106
+ });
107
+ });
@@ -12,16 +12,23 @@ const currentPlatform = platformSelect({
12
12
  });
13
13
 
14
14
  // Do not change the order, focused_selected should be first
15
- const states = ["focused_selected", "pressed", "focused", "selected"];
15
+ const states = [
16
+ "focused_selected",
17
+ "pressed",
18
+ "focused",
19
+ "selected",
20
+ "default",
21
+ ];
16
22
 
17
23
  const platformSuffixes = ["ios", "tvos", "samsung", "lg", "android"];
18
- type StateKey = (typeof states)[number] | "default";
24
+ type StateKey = (typeof states)[number];
19
25
 
20
26
  export type GetAllSpecificStylesProps = {
21
27
  componentName: string;
22
28
  subComponentName: string;
23
29
  configuration: Record<string, any>;
24
30
  outStyles: Record<string, any>;
31
+ styleSeparator?: string;
25
32
  };
26
33
 
27
34
  /*
@@ -35,14 +42,23 @@ export const getAllSpecificStyles = ({
35
42
  componentName,
36
43
  subComponentName,
37
44
  outStyles,
45
+ styleSeparator = "_style_",
38
46
  }: GetAllSpecificStylesProps) => {
39
47
  if (!outStyles) throw new Error("outStyles is required");
40
48
  if (!componentName) throw new Error("componentName is required");
41
49
 
42
- const prefix =
50
+ const prefixes =
43
51
  subComponentName?.length > 0
44
- ? `${componentName}_style_${subComponentName}_`
45
- : `${componentName}_style_`;
52
+ ? [
53
+ styleSeparator
54
+ ? `${componentName}${styleSeparator}${subComponentName}_`
55
+ : `${subComponentName}_`,
56
+ `${componentName}_style_${subComponentName}_`,
57
+ ]
58
+ : [
59
+ styleSeparator ? `${componentName}${styleSeparator}` : "",
60
+ `${componentName}_style_`,
61
+ ];
46
62
 
47
63
  const defaultKey = "default";
48
64
 
@@ -51,12 +67,24 @@ export const getAllSpecificStyles = ({
51
67
  const tmpGenericDict: Record<StateKey, Record<string, any>> = {};
52
68
  const tmpPlatformDict: Record<StateKey, Record<string, any>> = {};
53
69
 
54
- const parseKey = (key: string, value: any) => {
55
- if (!key.startsWith(prefix)) {
70
+ const parseKey = (key: string, originalKey: string, value: any) => {
71
+ const matchedPrefix = prefixes.find((p) => p && key.startsWith(p));
72
+
73
+ if (!matchedPrefix) {
56
74
  return;
57
75
  }
58
76
 
59
- let styleName = key.slice(prefix.length);
77
+ // Guard: for empty styleSeparator, if matching modern prefix, require dot in originalKey
78
+ if (
79
+ styleSeparator === "" &&
80
+ matchedPrefix === `${subComponentName}_` &&
81
+ !originalKey.includes(".")
82
+ ) {
83
+ return;
84
+ }
85
+
86
+ let styleName = key.slice(matchedPrefix.length);
87
+
60
88
  if (!styleName || styleName.startsWith("_")) return;
61
89
 
62
90
  const platform = platformSuffixes.find((prefix) =>
@@ -93,7 +121,8 @@ export const getAllSpecificStyles = ({
93
121
  };
94
122
 
95
123
  for (const [key, value] of Object.entries(configuration)) {
96
- parseKey(key, value);
124
+ const formattedKey = key.replace(/\./g, "_");
125
+ parseKey(formattedKey, key, value);
97
126
  }
98
127
 
99
128
  const allStates = Array.from(
@@ -0,0 +1,178 @@
1
+ import { getAllSpecificStyles } from "./manifestKeyParser";
2
+
3
+ export type ModalBlocksConfig = {
4
+ header: {
5
+ container: Record<string, any>;
6
+ title: Record<string, any>;
7
+ closeButton: Record<string, any>;
8
+ actionButtons: Record<string, any>;
9
+ };
10
+ action: {
11
+ background: Record<string, any>;
12
+ title: Record<string, any>;
13
+ icons: Record<string, any>;
14
+ leadingIcon: Record<string, any>;
15
+ trailingIcon: Record<string, any>;
16
+ };
17
+ item: {
18
+ background: Record<string, any>;
19
+ image: Record<string, any>;
20
+ nowPlayingContainer: Record<string, any>;
21
+ nowPlayingAsset: Record<string, any>;
22
+ nowPlayingLabel: Record<string, any>;
23
+ textLabel1: Record<string, any>;
24
+ textLabel2: Record<string, any>;
25
+ buttonsContainer: Record<string, any>;
26
+ button1: Record<string, any>;
27
+ button2: Record<string, any>;
28
+ };
29
+ nowPlayingItem?: {
30
+ background: Record<string, any>;
31
+ image: Record<string, any>;
32
+ nowPlayingContainer: Record<string, any>;
33
+ nowPlayingAsset: Record<string, any>;
34
+ nowPlayingLabel: Record<string, any>;
35
+ textLabel1: Record<string, any>;
36
+ textLabel2: Record<string, any>;
37
+ buttonsContainer: Record<string, any>;
38
+ button1: Record<string, any>;
39
+ button2: Record<string, any>;
40
+ };
41
+ button: {
42
+ background: Record<string, any>;
43
+ title: Record<string, any>;
44
+ icons: Record<string, any>;
45
+ leadingIcon: Record<string, any>;
46
+ };
47
+ };
48
+
49
+ export const parseModalBlocksConfiguration = (
50
+ configuration: Record<string, any>,
51
+ componentName: string
52
+ ): ModalBlocksConfig => {
53
+ const result: ModalBlocksConfig = {
54
+ header: {
55
+ container: {},
56
+ title: {},
57
+ closeButton: {},
58
+ actionButtons: {},
59
+ },
60
+ action: {
61
+ background: {},
62
+ title: {},
63
+ icons: {},
64
+ leadingIcon: {},
65
+ trailingIcon: {},
66
+ },
67
+ item: {
68
+ background: {},
69
+ image: {},
70
+ nowPlayingContainer: {},
71
+ nowPlayingAsset: {},
72
+ nowPlayingLabel: {},
73
+ textLabel1: {},
74
+ textLabel2: {},
75
+ buttonsContainer: {},
76
+ button1: {},
77
+ button2: {},
78
+ },
79
+ nowPlayingItem: {
80
+ background: {},
81
+ image: {},
82
+ nowPlayingContainer: {},
83
+ nowPlayingAsset: {},
84
+ nowPlayingLabel: {},
85
+ textLabel1: {},
86
+ textLabel2: {},
87
+ buttonsContainer: {},
88
+ button1: {},
89
+ button2: {},
90
+ },
91
+ button: {
92
+ background: {},
93
+ title: {},
94
+ icons: {},
95
+ leadingIcon: {},
96
+ },
97
+ };
98
+
99
+ if (!configuration || !componentName) {
100
+ return result;
101
+ }
102
+
103
+ const normalizedComponentName = componentName.replace(/-/g, "_");
104
+
105
+ // Helper to parse sub-components for a block
106
+ const parseBlock = (blockName: string, subComponents: string[]) => {
107
+ subComponents.forEach((subComponent) => {
108
+ // e.g. header_container
109
+ const fullSubComponentName = `${blockName}_${subComponent}`;
110
+
111
+ // e.g. result.header.container
112
+ const camelSubComponent = subComponent.replace(/_([a-z0-9])/g, (g) =>
113
+ g[1].toUpperCase()
114
+ );
115
+
116
+ const camelBlockName = (blockName as string).replace(
117
+ /_([a-z0-9])/g,
118
+ (g) => g[1].toUpperCase()
119
+ ) as keyof ModalBlocksConfig;
120
+
121
+ getAllSpecificStyles({
122
+ configuration,
123
+ componentName: normalizedComponentName,
124
+ subComponentName: fullSubComponentName,
125
+ styleSeparator: "",
126
+ outStyles:
127
+ result[camelBlockName]![
128
+ camelSubComponent as keyof (typeof result)[typeof camelBlockName]
129
+ ],
130
+ });
131
+ });
132
+ };
133
+
134
+ parseBlock("header", [
135
+ "container",
136
+ "title",
137
+ "close_button",
138
+ "action_buttons",
139
+ ]);
140
+
141
+ parseBlock("action", [
142
+ "background",
143
+ "title",
144
+ "icons",
145
+ "leading_icon",
146
+ "trailing_icon",
147
+ ]);
148
+
149
+ parseBlock("item", [
150
+ "background",
151
+ "image",
152
+ "now_playing_container",
153
+ "now_playing_asset",
154
+ "now_playing_label",
155
+ "text_label_1",
156
+ "text_label_2",
157
+ "buttons_container",
158
+ "button_1",
159
+ "button_2",
160
+ ]);
161
+
162
+ parseBlock("now_playing_item", [
163
+ "background",
164
+ "image",
165
+ "now_playing_container",
166
+ "now_playing_asset",
167
+ "now_playing_label",
168
+ "text_label_1",
169
+ "text_label_2",
170
+ "buttons_container",
171
+ "button_1",
172
+ "button_2",
173
+ ]);
174
+
175
+ parseBlock("button", ["background", "title", "icons", "leading_icon"]);
176
+
177
+ return result;
178
+ };
@@ -0,0 +1,156 @@
1
+ import { buildEntryActions } from "../buildEntryActions";
2
+
3
+ describe("buildEntryActions - alias & label resolution", () => {
4
+ const mockDeps = {
5
+ actionExecutor: { handleActions: jest.fn() } as any,
6
+ actionContext: {},
7
+ };
8
+
9
+ const resolveEntryActions = (entry: ZappEntry) =>
10
+ buildEntryActions(entry, mockDeps);
11
+
12
+ it("resolves entry action with explicit button title", () => {
13
+ const entry = {
14
+ id: "entry-1",
15
+ extensions: {
16
+ entry_action: [
17
+ {
18
+ button: {
19
+ title: "Custom Action Title",
20
+ iconURL: "http://example.com/icon.png",
21
+ },
22
+ actions: [{ type: "test" }],
23
+ dismiss_on_action: true,
24
+ },
25
+ ],
26
+ },
27
+ };
28
+
29
+ const actions = resolveEntryActions(entry as any);
30
+
31
+ expect(actions).toHaveLength(1);
32
+ expect(actions[0].identifier).toBe("entry_action_0");
33
+
34
+ const state = actions[0].action.initialEntryState(entry as any);
35
+
36
+ expect(state).toEqual({
37
+ state: 0,
38
+ label: "Custom Action Title",
39
+ asset: "http://example.com/icon.png",
40
+ });
41
+ });
42
+
43
+ it("resolves entry action with button label property", () => {
44
+ const entry = {
45
+ id: "entry-2",
46
+ extensions: {
47
+ entry_action: [
48
+ {
49
+ button: { label: "Label Property Action" },
50
+ actions: [{ type: "test" }],
51
+ },
52
+ ],
53
+ },
54
+ };
55
+
56
+ const actions = resolveEntryActions(entry as any);
57
+
58
+ expect(actions).toHaveLength(1);
59
+ const state = actions[0].action.initialEntryState(entry as any);
60
+ expect(state.label).toBe("Label Property Action");
61
+ });
62
+
63
+ it("resolves entry action with known backend button alias (e.g. add_all_to_queue)", () => {
64
+ const entry = {
65
+ id: "entry-3",
66
+ extensions: {
67
+ entry_action: [
68
+ {
69
+ button: { alias: "add_all_to_queue" },
70
+ actions: [{ type: "test" }],
71
+ dismiss_on_action: true,
72
+ },
73
+ {
74
+ button: { alias: "add_to_playlist" },
75
+ actions: [{ type: "test" }],
76
+ },
77
+ {
78
+ button: { alias: "delete_collection" },
79
+ actions: [{ type: "test" }],
80
+ },
81
+ ],
82
+ },
83
+ };
84
+
85
+ const actions = resolveEntryActions(entry as any);
86
+
87
+ expect(actions).toHaveLength(3);
88
+
89
+ expect(actions[0].action.initialEntryState(entry as any)).toMatchObject({
90
+ state: 0,
91
+ label: "Add all to Queue",
92
+ });
93
+
94
+ expect(actions[1].action.initialEntryState(entry as any)).toMatchObject({
95
+ state: 0,
96
+ label: "Add to Playlist",
97
+ });
98
+
99
+ expect(actions[2].action.initialEntryState(entry as any)).toMatchObject({
100
+ state: 0,
101
+ label: "Delete collection",
102
+ });
103
+ });
104
+
105
+ it("formats unknown alias nicely as fallback", () => {
106
+ const entry = {
107
+ id: "entry-4",
108
+ extensions: {
109
+ entry_action: [
110
+ {
111
+ button: { alias: "custom_unknown_action" },
112
+ actions: [{ type: "test" }],
113
+ },
114
+ ],
115
+ },
116
+ };
117
+
118
+ const actions = resolveEntryActions(entry as any);
119
+
120
+ expect(actions).toHaveLength(1);
121
+ const state = actions[0].action.initialEntryState(entry as any);
122
+ expect(state.label).toBe("Custom unknown action");
123
+ });
124
+
125
+ it("uses actionExecutor.getActionState for plugin-provided label and asset", () => {
126
+ mockDeps.actionExecutor.getActionState = jest.fn(() => ({
127
+ label: "From Plugin",
128
+ asset: "plugin_asset",
129
+ }));
130
+
131
+ const entry = {
132
+ id: "entry-plugin-state",
133
+ extensions: {
134
+ entry_action: [
135
+ {
136
+ button: { alias: "custom_plugin_action" },
137
+ actions: [{ type: "plugin-action" }],
138
+ },
139
+ ],
140
+ },
141
+ };
142
+
143
+ const actions = resolveEntryActions(entry as any);
144
+ const state = actions[0].action.initialEntryState(entry as any);
145
+
146
+ expect(mockDeps.actionExecutor.getActionState).toHaveBeenCalledWith(
147
+ "plugin-action",
148
+ entry
149
+ );
150
+
151
+ expect(state).toMatchObject({
152
+ label: "From Plugin",
153
+ asset: "plugin_asset",
154
+ });
155
+ });
156
+ });