@applicaster/zapp-react-native-utils 16.0.0-rc.6 → 16.0.0-rc.61

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 (161) hide show
  1. package/actionsExecutor/ActionExecutor.ts +47 -11
  2. package/actionsExecutor/ActionExecutorContext.tsx +87 -316
  3. package/actionsExecutor/actions/__tests__/dismissBottomSheet.test.ts +22 -0
  4. package/actionsExecutor/actions/__tests__/loadItemsFromSource.test.ts +88 -0
  5. package/actionsExecutor/actions/__tests__/openBottomSheet.customContent.test.ts +76 -0
  6. package/actionsExecutor/actions/__tests__/openBottomSheet.inlineItems.test.ts +130 -0
  7. package/actionsExecutor/actions/__tests__/showToast.test.ts +88 -0
  8. package/actionsExecutor/actions/appRestart.ts +24 -0
  9. package/actionsExecutor/actions/confirmDialog.ts +53 -0
  10. package/actionsExecutor/actions/dismissBottomSheet.ts +22 -0
  11. package/actionsExecutor/actions/index.ts +34 -0
  12. package/actionsExecutor/actions/localStorageRemove.ts +27 -0
  13. package/actionsExecutor/actions/localStorageSet.ts +28 -0
  14. package/actionsExecutor/actions/localStorageToggleFlag.ts +28 -0
  15. package/actionsExecutor/actions/navigateToScreen.ts +123 -0
  16. package/actionsExecutor/actions/openBottomSheet.ts +322 -0
  17. package/actionsExecutor/actions/refreshComponent.ts +85 -0
  18. package/actionsExecutor/actions/screenSetVariable.ts +35 -0
  19. package/actionsExecutor/actions/screenToggleFlag.ts +38 -0
  20. package/actionsExecutor/actions/sendCloudEvent.ts +93 -0
  21. package/actionsExecutor/actions/sessionStorageRemove.ts +19 -0
  22. package/actionsExecutor/actions/sessionStorageSet.ts +20 -0
  23. package/actionsExecutor/actions/sessionStorageToggleFlag.ts +15 -0
  24. package/actionsExecutor/actions/showToast.ts +87 -0
  25. package/actionsExecutor/actions/switchLayout.ts +40 -0
  26. package/actionsExecutor/consts.ts +23 -0
  27. package/actionsExecutor/types.ts +59 -0
  28. package/analyticsUtils/AnalyticsEvents/sendMenuClickEvent.ts +2 -2
  29. package/analyticsUtils/PlayerAnalyticsManager.ts +12 -2
  30. package/analyticsUtils/__tests__/analyticsMapper.test.ts +35 -0
  31. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testACP_events.json +1 -1
  32. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testBlockUnlistedParams_rules.json +1 -1
  33. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_events.json +4 -0
  34. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_rules.json +6 -0
  35. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEventRegex_events.json +3 -9
  36. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_events.json +18 -0
  37. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_rules.json +16 -0
  38. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_events.json +4 -0
  39. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_rules.json +6 -0
  40. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_events.json +4 -0
  41. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_rules.json +6 -0
  42. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_events.json +4 -0
  43. package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_rules.json +6 -0
  44. package/analyticsUtils/__tests__/fixtures/index.js +20 -0
  45. package/analyticsUtils/analyticsMapper.ts +4 -1
  46. package/analyticsUtils/playerAnalyticsTracker.ts +26 -3
  47. package/appUtils/HooksManager/index.ts +12 -8
  48. package/appUtils/contextKeysManager/__tests__/getKey/failure.test.ts +1 -1
  49. package/appUtils/contextKeysManager/__tests__/removeKey/failure.test.ts +1 -1
  50. package/appUtils/contextKeysManager/__tests__/setKey/failure/invalidKey.test.ts +4 -4
  51. package/appUtils/contextKeysManager/index.ts +1 -1
  52. package/appUtils/contextKeysManager/utils/index.ts +38 -25
  53. package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +143 -53
  54. package/appUtils/playerManager/OverlayObserver/__tests__/liveContent.test.ts +205 -0
  55. package/appUtils/playerManager/OverlayObserver/__tests__/utils.test.ts +49 -0
  56. package/appUtils/playerManager/OverlayObserver/utils.ts +49 -20
  57. package/appUtils/playerManager/__tests__/playerContent.test.ts +403 -0
  58. package/appUtils/playerManager/__tests__/playerFactory.test.ts +150 -0
  59. package/appUtils/playerManager/__tests__/usePlayerContent.test.tsx +64 -0
  60. package/appUtils/playerManager/{conts.ts → const.ts} +20 -0
  61. package/appUtils/playerManager/index.ts +1 -1
  62. package/appUtils/playerManager/player.ts +115 -3
  63. package/appUtils/playerManager/playerFactory.ts +18 -35
  64. package/appUtils/playerManager/playerNative.ts +1 -1
  65. package/appUtils/playerManager/usePlayerContent.tsx +43 -0
  66. package/appUtils/playerManager/usePlayerControllerSetup.tsx +1 -1
  67. package/appUtils/playerManager/userLanguagePreference.ts +1 -1
  68. package/arrayUtils/__tests__/{anyThruthy.test.ts → anyTruthy.test.ts} +8 -0
  69. package/arrayUtils/__tests__/arrayUtils.test.ts +165 -108
  70. package/arrayUtils/__tests__/isEmptyArray.test.ts +11 -0
  71. package/arrayUtils/__tests__/isFilledArray.test.ts +12 -0
  72. package/arrayUtils/__tests__/isFirst.test.ts +17 -0
  73. package/arrayUtils/__tests__/isIndexInRange.test.ts +14 -0
  74. package/arrayUtils/__tests__/isLast.test.ts +31 -0
  75. package/arrayUtils/__tests__/makeListOf.test.ts +31 -0
  76. package/arrayUtils/__tests__/makeListOfIndexes.test.ts +20 -0
  77. package/arrayUtils/__tests__/reorderByIds.test.ts +50 -0
  78. package/arrayUtils/__tests__/sample.test.ts +61 -0
  79. package/arrayUtils/index.ts +136 -20
  80. package/bottomSheet/__tests__/scrollContext.test.tsx +35 -0
  81. package/bottomSheet/index.ts +17 -0
  82. package/cellUtils/index.ts +3 -5
  83. package/colorUtils/__tests__/isTransparentColor.test.ts +76 -0
  84. package/colorUtils/__tests__/isValidColor.test.ts +70 -0
  85. package/colorUtils/index.ts +50 -0
  86. package/configurationUtils/__tests__/modalBlocksParser.test.ts +107 -0
  87. package/configurationUtils/manifestKeyParser.ts +38 -9
  88. package/configurationUtils/modalBlocksParser.ts +178 -0
  89. package/manifestUtils/__tests__/player.audioControls.test.js +158 -0
  90. package/manifestUtils/_internals/index.js +6 -0
  91. package/manifestUtils/defaultManifestConfigurations/generalContent.js +35 -0
  92. package/manifestUtils/defaultManifestConfigurations/player.js +327 -19
  93. package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +84 -0
  94. package/manifestUtils/fieldUtils/index.js +125 -0
  95. package/manifestUtils/index.js +3 -0
  96. package/manifestUtils/keys.js +9 -0
  97. package/manifestUtils/mobileAction/button/index.js +16 -0
  98. package/manifestUtils/mobileAction/container/index.js +3 -1
  99. package/manifestUtils/mobileAction/groups/defaults.js +3 -1
  100. package/manifestUtils/modalBlocks.js +304 -0
  101. package/manifestUtils/platformIsTV.js +1 -0
  102. package/modalState/ContentViewModel.ts +113 -0
  103. package/modalState/EditableCollection.ts +17 -0
  104. package/modalState/EditableCollectionRegistry.ts +51 -0
  105. package/modalState/ModalOrchestrator.ts +201 -0
  106. package/modalState/RemoteEditableCollection.ts +227 -0
  107. package/modalState/__tests__/ContentViewModel.editable.test.ts +69 -0
  108. package/modalState/__tests__/ContentViewModel.test.ts +165 -0
  109. package/modalState/__tests__/EditableCollectionRegistry.test.ts +112 -0
  110. package/modalState/__tests__/ModalOrchestrator.phase3.test.ts +55 -0
  111. package/modalState/__tests__/RemoteEditableCollection.test.ts +326 -0
  112. package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
  113. package/modalState/index.ts +30 -83
  114. package/modalState/store.ts +102 -0
  115. package/modalState/types.ts +137 -0
  116. package/modalState/useBottomSheetContent.ts +102 -0
  117. package/numberUtils/__tests__/isMinusZero.test.ts +20 -0
  118. package/numberUtils/__tests__/isZero.test.ts +27 -0
  119. package/numberUtils/__tests__/requireNumber.test.ts +50 -0
  120. package/numberUtils/__tests__/toNumber.test.ts +27 -0
  121. package/numberUtils/__tests__/toNumberWithDefault.test.ts +64 -0
  122. package/numberUtils/__tests__/toNumberWithDefaultZero.test.ts +48 -0
  123. package/numberUtils/index.ts +27 -8
  124. package/package.json +2 -2
  125. package/pipesUtils/__tests__/buildUrlWithQuery.test.ts +33 -0
  126. package/pipesUtils/__tests__/withPipesEndpoint.test.tsx +56 -0
  127. package/pipesUtils/index.ts +1 -0
  128. package/pipesUtils/withPipesEndpoint.tsx +54 -0
  129. package/playerUtils/__tests__/contentDataKeys.test.ts +297 -0
  130. package/playerUtils/__tests__/resolvePlayerTitleSubtitle.test.ts +180 -0
  131. package/playerUtils/contentDataKeys.ts +134 -0
  132. package/playerUtils/index.ts +41 -14
  133. package/playerUtils/isAudioItem.ts +26 -0
  134. package/playerUtils/resolvePlayerTitleSubtitle.ts +76 -0
  135. package/reactHooks/actions/index.ts +51 -1
  136. package/reactHooks/cell-click/index.ts +18 -10
  137. package/reactHooks/feed/__mocks__/useMarkPipesDataStale.ts +4 -0
  138. package/reactHooks/feed/__tests__/useInflatedUrl.test.tsx +25 -0
  139. package/reactHooks/feed/index.ts +5 -1
  140. package/reactHooks/feed/useBatchLoading.ts +9 -1
  141. package/reactHooks/feed/{usePipesCacheReset.ts → useMarkPipesDataStale.ts} +12 -4
  142. package/reactHooks/index.ts +2 -0
  143. package/reactHooks/layout/index.ts +1 -1
  144. package/reactHooks/navigation/__mocks__/index.ts +4 -0
  145. package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
  146. package/reactHooks/navigation/index.ts +1 -1
  147. package/reactHooks/navigation/useIsScreenActive.ts +29 -8
  148. package/reactHooks/state/useComponentScreenState.ts +1 -1
  149. package/reactHooks/usePluginConfiguration.ts +4 -1
  150. package/reactHooks/utils/__tests__/index.test.js +22 -2
  151. package/reactHooks/utils/index.ts +13 -2
  152. package/reactHooks/videoModal/hooks/useVideoModalScreenData.tsx +22 -4
  153. package/riverComponetsMeasurementProvider/index.tsx +12 -8
  154. package/stringUtils/__tests__/stringUtils.test.js +42 -0
  155. package/stringUtils/index.ts +2 -2
  156. package/uiActionsRegistrator/index.ts +203 -0
  157. package/zappFrameworkUtils/__tests__/localStorageHelper.test.ts +146 -0
  158. package/zappFrameworkUtils/localStorageHelper.ts +19 -15
  159. package/appUtils/playerManager/usePlayerTitleSummaryOverlay.tsx +0 -56
  160. package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
  161. /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
@@ -24,6 +24,7 @@ const {
24
24
  const { buttonKey } = require("./buttons");
25
25
  const { tvBadges } = require("./tvBadges");
26
26
  const { mobileProgressBar, tvProgressBar } = require("./progressBar");
27
+ const { getModalBlockStyles, getModalLocalizations } = require("./modalBlocks");
27
28
 
28
29
  const {
29
30
  secondaryImage,
@@ -54,4 +55,6 @@ module.exports = {
54
55
  getUpdatedSecondaryImageKeys,
55
56
  DEFAULT_GRADIENT_IMAGE,
56
57
  compact,
58
+ getModalBlockStyles,
59
+ getModalLocalizations,
57
60
  };
@@ -43,6 +43,7 @@ const TV_PLATFORMS = [
43
43
  "tvos_for_quickbrick",
44
44
  "samsung_tv",
45
45
  "lg_tv",
46
+ "vidaa",
46
47
  "vizio",
47
48
  ];
48
49
 
@@ -630,6 +631,14 @@ const MOBILE_ACTION_BUTTON_FIELDS = [
630
631
  type: ZAPPIFEST_FIELDS.number_input,
631
632
  suffix: "margin left",
632
633
  },
634
+ {
635
+ type: ZAPPIFEST_FIELDS.number_input,
636
+ suffix: "horizontal gutter",
637
+ },
638
+ {
639
+ type: ZAPPIFEST_FIELDS.number_input,
640
+ suffix: "vertical gutter",
641
+ },
633
642
  ];
634
643
 
635
644
  const TV_MENU_LABEL_FIELDS = [
@@ -129,6 +129,22 @@ function mobileActionButton({ label, description, defaults, isFirstButton }) {
129
129
  conditions.push(createConditionalField(labelEnabledKey, true));
130
130
  }
131
131
 
132
+ const assetAlignmentKey = keyPrefixGenerator("asset_alignment");
133
+
134
+ // horizontal_gutter fields depends on [asset_alignment: left or asset_alignment: right]
135
+ if (isKeyHasSuffix("horizontal_gutter", key)) {
136
+ conditions.push(
137
+ createConditionalField(assetAlignmentKey, ["left", "right"])
138
+ );
139
+ }
140
+
141
+ // vertical_gutter fields depends on [asset_alignment: above or asset_alignment: below]
142
+ if (isKeyHasSuffix("vertical_gutter", key)) {
143
+ conditions.push(
144
+ createConditionalField(assetAlignmentKey, ["above", "below"])
145
+ );
146
+ }
147
+
132
148
  return withConditional(conditions)(field);
133
149
  });
134
150
 
@@ -49,7 +49,9 @@ function mobileActionButtonsContainer({ label, description, defaults }) {
49
49
 
50
50
  // over_image_position depends on [positionKey: over_image]
51
51
  if (isKeyHasSuffix("over_image_position", key)) {
52
- conditions.push(createConditionalField(positionKey, "over_image"));
52
+ conditions.push(
53
+ createConditionalField(positionKey, defaults.position[0])
54
+ );
53
55
  }
54
56
 
55
57
  // horizontal_gutter depends on [stackingKey: horizontal]
@@ -33,7 +33,7 @@ const DEFAULT_MOBILE_ACTION_BUTTON_SHARED_DEFAULTS = {
33
33
  assetHeight: 24,
34
34
  assetWidth: 24,
35
35
  assetMarginTop: 0,
36
- assetMarginRight: 6,
36
+ assetMarginRight: 0,
37
37
  assetMarginBottom: 0,
38
38
  assetMarginLeft: 0,
39
39
  labelEnabled: true,
@@ -50,6 +50,8 @@ const DEFAULT_MOBILE_ACTION_BUTTON_SHARED_DEFAULTS = {
50
50
  marginRight: 0,
51
51
  marginBottom: 0,
52
52
  marginLeft: 0,
53
+ horizontalGutter: 8,
54
+ verticalGutter: 8,
53
55
  };
54
56
 
55
57
  const DEFAULT_MOBILE_ACTION_BUTTON_PRESETS = {
@@ -0,0 +1,304 @@
1
+ function getModalBlockStyles({ prefix }) {
2
+ return [
3
+ {
4
+ group: true,
5
+ label: "Header Styles",
6
+ folded: true,
7
+ fields: [
8
+ {
9
+ type: "color_picker_rgba",
10
+ key: `${prefix}_style_header_container_default_backgroundColor`,
11
+ label: "Header Background Color",
12
+ initial_value: "rgba(30,30,30,1)",
13
+ },
14
+ {
15
+ type: "color_picker_rgba",
16
+ key: `${prefix}_style_header_container_default_borderBottomColor`,
17
+ label: "Header Border Bottom Color",
18
+ initial_value: "transparent",
19
+ },
20
+ {
21
+ type: "number_input",
22
+ key: `${prefix}_style_header_container_default_borderBottomSize`,
23
+ label: "Header Border Bottom Size",
24
+ initial_value: 0,
25
+ },
26
+ {
27
+ type: "color_picker_rgba",
28
+ key: `${prefix}_style_header_title_default_fontColor`,
29
+ label: "Header Title Color",
30
+ initial_value: "#EFEFEF",
31
+ },
32
+ {
33
+ type: "number_input",
34
+ key: `${prefix}_style_header_title_default_fontSize`,
35
+ label: "Header Title Font Size",
36
+ initial_value: 18,
37
+ },
38
+ {
39
+ type: "number_input",
40
+ key: `${prefix}_style_header_title_default_lineHeight`,
41
+ label: "Header Title Line Height",
42
+ initial_value: 32,
43
+ },
44
+ {
45
+ type: "color_picker_rgba",
46
+ key: `${prefix}_style_header_close_button_default_backgroundColor`,
47
+ label: "Close Button Background Color",
48
+ initial_value: "transparent",
49
+ },
50
+ {
51
+ type: "color_picker_rgba",
52
+ key: `${prefix}_style_header_close_button_hover_backgroundColor`,
53
+ label: "Close Button Hover Background Color",
54
+ initial_value: "rgba(46,46,46,1)",
55
+ },
56
+ {
57
+ type: "uploader",
58
+ key: `${prefix}_style_header_close_button_asset`,
59
+ label: "Close Button Icon Asset",
60
+ },
61
+ {
62
+ type: "color_picker_rgba",
63
+ key: `${prefix}_style_header_action_buttons_default_backgroundColor`,
64
+ label: "Header Action Button Background Color",
65
+ initial_value: "rgba(46,46,46,1)",
66
+ },
67
+ {
68
+ type: "color_picker_rgba",
69
+ key: `${prefix}_style_header_action_buttons_hover_backgroundColor`,
70
+ label: "Header Action Button Hover Color",
71
+ initial_value: "rgba(62,62,62,1)",
72
+ },
73
+ {
74
+ type: "color_picker_rgba",
75
+ key: `${prefix}_style_header_action_buttons_default_fontColor`,
76
+ label: "Header Action Button Title Color",
77
+ initial_value: "#EFEFEF",
78
+ },
79
+ {
80
+ type: "number_input",
81
+ key: `${prefix}_style_header_action_buttons_default_fontSize`,
82
+ label: "Header Action Button Font Size",
83
+ initial_value: 14,
84
+ },
85
+ {
86
+ type: "number_input",
87
+ key: `${prefix}_style_header_action_buttons_default_borderRadius`,
88
+ label: "Header Action Button Radius",
89
+ initial_value: 16,
90
+ },
91
+ ],
92
+ },
93
+ {
94
+ group: true,
95
+ label: "Item Styles",
96
+ folded: true,
97
+ fields: [
98
+ {
99
+ type: "color_picker_rgba",
100
+ key: `${prefix}_style_item_background_default_backgroundColor`,
101
+ label: "Item Background Color",
102
+ initial_value: "transparent",
103
+ },
104
+ {
105
+ type: "color_picker_rgba",
106
+ key: `${prefix}_style_item_background_focus_backgroundColor`,
107
+ label: "Item Focus/Touch Color",
108
+ initial_value: "rgba(62,62,62,1)",
109
+ },
110
+ {
111
+ type: "number_input",
112
+ key: `${prefix}_style_item_background_default_borderRadius`,
113
+ label: "Item Corner Radius",
114
+ initial_value: 12,
115
+ },
116
+ {
117
+ type: "number_input",
118
+ key: `${prefix}_style_item_background_default_paddingTop`,
119
+ label: "Item Padding Top",
120
+ initial_value: 8,
121
+ },
122
+ {
123
+ type: "number_input",
124
+ key: `${prefix}_style_item_background_default_paddingBottom`,
125
+ label: "Item Padding Bottom",
126
+ initial_value: 8,
127
+ },
128
+ {
129
+ type: "number_input",
130
+ key: `${prefix}_style_item_background_default_paddingLeft`,
131
+ label: "Item Padding Left",
132
+ initial_value: 10,
133
+ },
134
+ {
135
+ type: "number_input",
136
+ key: `${prefix}_style_item_background_default_paddingRight`,
137
+ label: "Item Padding Right",
138
+ initial_value: 10,
139
+ },
140
+ {
141
+ type: "number_input",
142
+ key: `${prefix}_style_item_image_default_width`,
143
+ label: "Item Image Width",
144
+ initial_value: 48,
145
+ },
146
+ {
147
+ type: "number_input",
148
+ key: `${prefix}_style_item_image_default_height`,
149
+ label: "Item Image Height",
150
+ initial_value: 48,
151
+ },
152
+ {
153
+ type: "number_input",
154
+ key: `${prefix}_style_item_image_default_borderRadius`,
155
+ label: "Item Image Radius",
156
+ initial_value: 6,
157
+ },
158
+ {
159
+ type: "color_picker_rgba",
160
+ key: `${prefix}_style_item_text_label_1_default_fontColor`,
161
+ label: "Item Title Color",
162
+ initial_value: "#FFFFFF",
163
+ },
164
+ {
165
+ type: "number_input",
166
+ key: `${prefix}_style_item_text_label_1_default_fontSize`,
167
+ label: "Item Title Font Size",
168
+ initial_value: 15,
169
+ },
170
+ {
171
+ type: "color_picker_rgba",
172
+ key: `${prefix}_style_item_text_label_2_default_fontColor`,
173
+ label: "Item Subtitle Color",
174
+ initial_value: "#999999",
175
+ },
176
+ {
177
+ type: "number_input",
178
+ key: `${prefix}_style_item_text_label_2_default_fontSize`,
179
+ label: "Item Subtitle Font Size",
180
+ initial_value: 13,
181
+ },
182
+ ],
183
+ },
184
+ {
185
+ group: true,
186
+ label: "Action Styles",
187
+ folded: true,
188
+ fields: [
189
+ {
190
+ type: "color_picker_rgba",
191
+ key: `${prefix}_style_action_background_default_backgroundColor`,
192
+ label: "Action Background Color",
193
+ initial_value: "transparent",
194
+ },
195
+ {
196
+ type: "color_picker_rgba",
197
+ key: `${prefix}_style_action_background_hover_backgroundColor`,
198
+ label: "Action Hover/Touch Color",
199
+ initial_value: "rgba(46,46,46,1)",
200
+ },
201
+ {
202
+ type: "number_input",
203
+ key: `${prefix}_style_action_background_default_borderRadius`,
204
+ label: "Action Corner Radius",
205
+ initial_value: 12,
206
+ },
207
+ {
208
+ type: "number_input",
209
+ key: `${prefix}_style_action_background_default_paddingTop`,
210
+ label: "Action Padding Top",
211
+ initial_value: 14,
212
+ },
213
+ {
214
+ type: "number_input",
215
+ key: `${prefix}_style_action_background_default_paddingBottom`,
216
+ label: "Action Padding Bottom",
217
+ initial_value: 14,
218
+ },
219
+ {
220
+ type: "color_picker_rgba",
221
+ key: `${prefix}_style_action_title_default_fontColor`,
222
+ label: "Action Title Color",
223
+ initial_value: "#EFEFEF",
224
+ },
225
+ {
226
+ type: "number_input",
227
+ key: `${prefix}_style_action_title_default_fontSize`,
228
+ label: "Action Title Font Size",
229
+ initial_value: 14,
230
+ },
231
+ {
232
+ type: "uploader",
233
+ key: `${prefix}_style_action_trailing_icon_chevron_asset`,
234
+ label: "Action Chevron Asset",
235
+ },
236
+ ],
237
+ },
238
+ {
239
+ group: true,
240
+ label: "Button Styles",
241
+ folded: true,
242
+ fields: [
243
+ {
244
+ type: "color_picker_rgba",
245
+ key: `${prefix}_style_button_background_default_backgroundColor`,
246
+ label: "Button Background Color",
247
+ initial_value: "#FFFFFF",
248
+ },
249
+ {
250
+ type: "color_picker_rgba",
251
+ key: `${prefix}_style_button_background_focus_backgroundColor`,
252
+ label: "Button Focus Color",
253
+ initial_value: "#E0E0E0",
254
+ },
255
+ {
256
+ type: "color_picker_rgba",
257
+ key: `${prefix}_style_button_background_inactive_backgroundColor`,
258
+ label: "Button Inactive Color",
259
+ initial_value: "#999999",
260
+ },
261
+ {
262
+ type: "number_input",
263
+ key: `${prefix}_style_button_background_default_borderRadius`,
264
+ label: "Button Corner Radius",
265
+ initial_value: 12,
266
+ },
267
+ {
268
+ type: "color_picker_rgba",
269
+ key: `${prefix}_style_button_title_default_fontColor`,
270
+ label: "Button Title Color",
271
+ initial_value: "#000000",
272
+ },
273
+ {
274
+ type: "number_input",
275
+ key: `${prefix}_style_button_title_default_fontSize`,
276
+ label: "Button Title Font Size",
277
+ initial_value: 15,
278
+ },
279
+ ],
280
+ },
281
+ ];
282
+ }
283
+
284
+ function getModalLocalizations({ prefix }) {
285
+ return [
286
+ {
287
+ type: "text_input",
288
+ label: "Queue Header Title",
289
+ key: `${prefix}_header_title`,
290
+ initial_value: "Queue",
291
+ },
292
+ {
293
+ type: "text_input",
294
+ label: "Go To Queue Action Label",
295
+ key: `${prefix}_label_go_to_queue`,
296
+ initial_value: "Go To Queue",
297
+ },
298
+ ];
299
+ }
300
+
301
+ module.exports = {
302
+ getModalBlockStyles,
303
+ getModalLocalizations,
304
+ };
@@ -4,6 +4,7 @@ function platformIsTV(platform) {
4
4
  "android_tv_for_quickbrick",
5
5
  "amazon_fire_tv_for_quickbrick",
6
6
  "lg_tv",
7
+ "vidaa",
7
8
  "samsung_tv",
8
9
  "web",
9
10
  "vizio",
@@ -0,0 +1,113 @@
1
+ import { BehaviorSubject, Observable } from "rxjs";
2
+ import {
3
+ Content,
4
+ MenuItem,
5
+ SelectionBehavior,
6
+ DynamicCollectionOptions,
7
+ } from "./types";
8
+ import { loadItemsFromSource } from "../actionsExecutor/actions/openBottomSheet";
9
+ import { resolveEditableCollection } from "./EditableCollectionRegistry";
10
+ import { EditableCollection } from "./EditableCollection";
11
+
12
+ export interface ContentState {
13
+ items: MenuItem[];
14
+ isLoading: boolean;
15
+ error?: Error | string;
16
+ role?: string;
17
+ behavior?: SelectionBehavior;
18
+ dynamicCollection?: DynamicCollectionOptions;
19
+ themePluginId?: string;
20
+ }
21
+
22
+ export class ContentViewModel {
23
+ private state$: BehaviorSubject<ContentState>;
24
+ readonly itemsUrl?: string;
25
+ public editableCollection: EditableCollection | null = null;
26
+ private content: Content;
27
+
28
+ constructor(content: Content) {
29
+ this.content = content;
30
+ this.itemsUrl = content.itemsUrl;
31
+
32
+ this.state$ = new BehaviorSubject<ContentState>({
33
+ items: content.items || [],
34
+ isLoading: false,
35
+ role: content.role,
36
+ behavior: content.behavior,
37
+ dynamicCollection: content.dynamicCollection,
38
+ themePluginId: content.themePluginId,
39
+ });
40
+
41
+ this.initEditableCollection(content);
42
+
43
+ if (this.itemsUrl && this.state$.value.items.length === 0) {
44
+ this.refetch();
45
+ }
46
+ }
47
+
48
+ private initEditableCollection(content: Content) {
49
+ this.editableCollection = resolveEditableCollection(content, this.refetch);
50
+ }
51
+
52
+ getState = (): ContentState => this.state$.value;
53
+
54
+ get stateObservable(): Observable<ContentState> {
55
+ return this.state$.asObservable();
56
+ }
57
+
58
+ subscribe = (listener: (state: ContentState) => void) => {
59
+ const subscription = this.state$.subscribe(listener);
60
+
61
+ return () => subscription.unsubscribe();
62
+ };
63
+
64
+ private updateState(partialState: Partial<ContentState>) {
65
+ this.state$.next({ ...this.state$.value, ...partialState });
66
+ }
67
+
68
+ refetch = async () => {
69
+ if (!this.itemsUrl) return;
70
+
71
+ this.updateState({ isLoading: true, error: undefined });
72
+
73
+ try {
74
+ const separator = this.itemsUrl.includes("?") ? "&" : "?";
75
+ const cacheBustedUrl = `${this.itemsUrl}${separator}_t=${Date.now()}`;
76
+
77
+ const { items, role, behavior, dynamicCollection } =
78
+ await loadItemsFromSource(cacheBustedUrl);
79
+
80
+ this.content = {
81
+ ...this.content,
82
+ items,
83
+ role,
84
+ behavior,
85
+ dynamicCollection,
86
+ };
87
+
88
+ this.updateState({
89
+ items,
90
+ role,
91
+ behavior,
92
+ dynamicCollection,
93
+ isLoading: false,
94
+ });
95
+
96
+ if (this.editableCollection) {
97
+ // Reuse the existing collection instance. Pushing the freshly loaded
98
+ // server items replaces any optimistic local state with the
99
+ // authoritative result (and rolls forward a successful mutation).
100
+ this.editableCollection.sync?.(items);
101
+ } else {
102
+ // The collection may only become resolvable once options arrive from
103
+ // the feed (e.g. inline content had none). Create it lazily here.
104
+ this.initEditableCollection(this.content);
105
+ }
106
+ } catch (err) {
107
+ this.updateState({
108
+ error: err?.message || "Failed to load",
109
+ isLoading: false,
110
+ });
111
+ }
112
+ };
113
+ }
@@ -0,0 +1,17 @@
1
+ import { Observable } from "rxjs";
2
+ import { MenuItem, Operation } from "./types";
3
+
4
+ export interface EditableCollection {
5
+ items$: Observable<MenuItem[]>;
6
+ operations: Operation[];
7
+ add?(item?: MenuItem): void | Promise<void>;
8
+ remove?(index: number): void | Promise<void>;
9
+ move?(itemIds: string[]): void | Promise<void>;
10
+ deleteCollection?(): void | Promise<void>;
11
+ /**
12
+ * Push authoritative items (e.g. a fresh server feed after a mutation) into
13
+ * the collection, replacing any optimistic local state. Called by the
14
+ * ContentViewModel on refetch so the instance is reused instead of recreated.
15
+ */
16
+ sync?(items: MenuItem[]): void;
17
+ }
@@ -0,0 +1,51 @@
1
+ import { Content } from "./types";
2
+ import { EditableCollection } from "./EditableCollection";
3
+ import { RemoteEditableCollection } from "./RemoteEditableCollection";
4
+ import { createLogger } from "../logger";
5
+
6
+ const { log_error } = createLogger({
7
+ subsystem: "modalState",
8
+ category: "EditableCollectionRegistry",
9
+ });
10
+
11
+ type ProviderFactory = () => EditableCollection;
12
+
13
+ export class EditableCollectionRegistry {
14
+ private static providers: Record<string, ProviderFactory> = {};
15
+
16
+ static register(token: string, factory: ProviderFactory) {
17
+ this.providers[token] = factory;
18
+ }
19
+
20
+ static getProvider(token: string): EditableCollection | null {
21
+ const factory = this.providers[token];
22
+
23
+ return factory ? factory() : null;
24
+ }
25
+ }
26
+
27
+ export function resolveEditableCollection(
28
+ content: Content,
29
+ refetch: () => Promise<void>
30
+ ): EditableCollection | null {
31
+ const options = content.dynamicCollection;
32
+ if (!options) return null;
33
+
34
+ if (options.provider) {
35
+ const provider = EditableCollectionRegistry.getProvider(options.provider);
36
+
37
+ if (!provider) {
38
+ log_error(
39
+ `No EditableCollection provider registered for token "${options.provider}"`
40
+ );
41
+ }
42
+
43
+ return provider;
44
+ }
45
+
46
+ if (options.postUrl) {
47
+ return new RemoteEditableCollection(content, refetch);
48
+ }
49
+
50
+ return null;
51
+ }