@applicaster/zapp-react-native-utils 16.0.0-rc.8 → 16.0.0-rc.81
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/actionsExecutor/ActionExecutor.ts +47 -11
- package/actionsExecutor/ActionExecutorContext.tsx +102 -315
- package/actionsExecutor/__tests__/feedDecorator.test.ts +61 -0
- package/actionsExecutor/actions/__tests__/dismissBottomSheet.test.ts +25 -0
- package/actionsExecutor/actions/__tests__/goBack.test.ts +62 -0
- package/actionsExecutor/actions/__tests__/goHome.test.ts +19 -0
- package/actionsExecutor/actions/__tests__/loadItemsFromSource.test.ts +88 -0
- package/actionsExecutor/actions/__tests__/navigateToScreen.test.ts +133 -0
- package/actionsExecutor/actions/__tests__/openBottomSheet.customContent.test.ts +76 -0
- package/actionsExecutor/actions/__tests__/openBottomSheet.inlineItems.test.ts +212 -0
- package/actionsExecutor/actions/__tests__/showToast.test.ts +88 -0
- package/actionsExecutor/actions/appRestart.ts +24 -0
- package/actionsExecutor/actions/confirmDialog.ts +53 -0
- package/actionsExecutor/actions/dismissBottomSheet.ts +23 -0
- package/actionsExecutor/actions/goBack.ts +60 -0
- package/actionsExecutor/actions/goHome.ts +31 -0
- package/actionsExecutor/actions/index.ts +38 -0
- package/actionsExecutor/actions/localStorageRemove.ts +27 -0
- package/actionsExecutor/actions/localStorageSet.ts +28 -0
- package/actionsExecutor/actions/localStorageToggleFlag.ts +28 -0
- package/actionsExecutor/actions/navigateToScreen.ts +137 -0
- package/actionsExecutor/actions/openBottomSheet.ts +325 -0
- package/actionsExecutor/actions/refreshComponent.ts +85 -0
- package/actionsExecutor/actions/screenSetVariable.ts +35 -0
- package/actionsExecutor/actions/screenToggleFlag.ts +38 -0
- package/actionsExecutor/actions/sendCloudEvent.ts +93 -0
- package/actionsExecutor/actions/sessionStorageRemove.ts +19 -0
- package/actionsExecutor/actions/sessionStorageSet.ts +20 -0
- package/actionsExecutor/actions/sessionStorageToggleFlag.ts +15 -0
- package/actionsExecutor/actions/showToast.ts +87 -0
- package/actionsExecutor/actions/switchLayout.ts +40 -0
- package/actionsExecutor/consts.ts +25 -0
- package/actionsExecutor/feedDecorator.ts +6 -6
- package/actionsExecutor/types.ts +59 -0
- package/analyticsUtils/AnalyticsEvents/sendMenuClickEvent.ts +2 -2
- package/analyticsUtils/PlayerAnalyticsManager.ts +12 -2
- package/analyticsUtils/__tests__/analyticsMapper.test.ts +35 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testACP_events.json +1 -1
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testBlockUnlistedParams_rules.json +1 -1
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEmptyRenameKeepsName_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testEventRegex_events.json +3 -9
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_events.json +18 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testIgnoreOrdering_rules.json +16 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexEventNoFallback_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexMultiGroupRename_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_events.json +4 -0
- package/analyticsUtils/__tests__/fixtures/analytics_mapper_testRegexNonNamedFullMatch_rules.json +6 -0
- package/analyticsUtils/__tests__/fixtures/index.js +20 -0
- package/analyticsUtils/analyticsMapper.ts +4 -1
- package/analyticsUtils/playerAnalyticsTracker.ts +26 -3
- package/appUtils/HooksManager/index.ts +12 -8
- package/appUtils/contextKeysManager/__tests__/getKey/failure.test.ts +1 -1
- package/appUtils/contextKeysManager/__tests__/removeKey/failure.test.ts +1 -1
- package/appUtils/contextKeysManager/__tests__/setKey/failure/invalidKey.test.ts +4 -4
- package/appUtils/contextKeysManager/index.ts +1 -1
- package/appUtils/contextKeysManager/utils/index.ts +38 -25
- package/appUtils/playerManager/OverlayObserver/OverlaysObserver.ts +143 -53
- package/appUtils/playerManager/OverlayObserver/__tests__/liveContent.test.ts +205 -0
- package/appUtils/playerManager/OverlayObserver/__tests__/utils.test.ts +49 -0
- package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.android.tv.ts +4 -0
- package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ios.tv.ts +4 -0
- package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.ts +11 -0
- package/appUtils/playerManager/OverlayObserver/getUpcomingQueue.web.ts +4 -0
- package/appUtils/playerManager/OverlayObserver/utils.ts +54 -20
- package/appUtils/playerManager/__tests__/playerContent.test.ts +403 -0
- package/appUtils/playerManager/__tests__/playerFactory.test.ts +1 -1
- package/appUtils/playerManager/__tests__/playerNative.test.ts +38 -0
- package/appUtils/playerManager/__tests__/usePlayerContent.test.tsx +64 -0
- package/appUtils/playerManager/{conts.ts → const.ts} +20 -0
- package/appUtils/playerManager/index.ts +1 -1
- package/appUtils/playerManager/player.ts +115 -3
- package/appUtils/playerManager/playerFactory.ts +1 -1
- package/appUtils/playerManager/playerNative.ts +6 -4
- package/appUtils/playerManager/usePlayerContent.tsx +43 -0
- package/appUtils/playerManager/usePlayerControllerSetup.tsx +1 -1
- package/appUtils/playerManager/userLanguagePreference.ts +1 -1
- package/arrayUtils/__tests__/{anyThruthy.test.ts → anyTruthy.test.ts} +8 -0
- package/arrayUtils/__tests__/arrayUtils.test.ts +165 -108
- package/arrayUtils/__tests__/isEmptyArray.test.ts +11 -0
- package/arrayUtils/__tests__/isFilledArray.test.ts +12 -0
- package/arrayUtils/__tests__/isFirst.test.ts +17 -0
- package/arrayUtils/__tests__/isIndexInRange.test.ts +14 -0
- package/arrayUtils/__tests__/isLast.test.ts +31 -0
- package/arrayUtils/__tests__/makeListOf.test.ts +31 -0
- package/arrayUtils/__tests__/makeListOfIndexes.test.ts +20 -0
- package/arrayUtils/__tests__/reorderByIds.test.ts +50 -0
- package/arrayUtils/__tests__/sample.test.ts +61 -0
- package/arrayUtils/index.ts +136 -20
- package/bottomSheet/__tests__/scrollContext.test.tsx +35 -0
- package/bottomSheet/index.ts +17 -0
- package/cellUtils/index.ts +33 -8
- package/colorUtils/__tests__/isTransparentColor.test.ts +76 -0
- package/colorUtils/__tests__/isValidColor.test.ts +70 -0
- package/colorUtils/index.ts +50 -0
- package/configurationUtils/__tests__/manifestKeyParser.test.ts +21 -0
- package/configurationUtils/__tests__/modalBlocksParser.test.ts +260 -0
- package/configurationUtils/manifestKeyParser.ts +50 -10
- package/configurationUtils/modalBlocksParser.ts +296 -0
- 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/__tests__/player.audioControls.test.js +158 -0
- package/manifestUtils/_internals/index.js +14 -3
- package/manifestUtils/defaultManifestConfigurations/generalContent.js +35 -0
- package/manifestUtils/defaultManifestConfigurations/player.js +349 -20
- package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +84 -0
- package/manifestUtils/fieldUtils/index.js +125 -0
- package/manifestUtils/index.js +3 -0
- package/manifestUtils/keys.js +9 -0
- package/manifestUtils/mobileAction/button/index.js +16 -0
- package/manifestUtils/mobileAction/container/index.js +3 -1
- package/manifestUtils/mobileAction/groups/defaults.js +3 -1
- package/manifestUtils/modalBlocks.js +304 -0
- package/manifestUtils/platformIsTV.js +1 -0
- package/modalState/ContentViewModel.ts +113 -0
- package/modalState/EditableCollection.ts +17 -0
- package/modalState/EditableCollectionRegistry.ts +51 -0
- package/modalState/ModalOrchestrator.ts +211 -0
- package/modalState/RemoteEditableCollection.ts +227 -0
- package/modalState/__tests__/ContentViewModel.editable.test.ts +69 -0
- package/modalState/__tests__/ContentViewModel.test.ts +165 -0
- package/modalState/__tests__/EditableCollectionRegistry.test.ts +112 -0
- package/modalState/__tests__/ModalOrchestrator.phase3.test.ts +47 -0
- package/modalState/__tests__/RemoteEditableCollection.test.ts +326 -0
- package/modalState/__tests__/index.test.ts +30 -1
- package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
- package/modalState/index.ts +35 -83
- package/modalState/store.ts +102 -0
- package/modalState/types.ts +159 -0
- package/modalState/useBottomSheetContent.ts +104 -0
- package/numberUtils/__tests__/isMinusZero.test.ts +20 -0
- package/numberUtils/__tests__/isZero.test.ts +27 -0
- package/numberUtils/__tests__/requireNumber.test.ts +50 -0
- package/numberUtils/__tests__/toNumber.test.ts +27 -0
- package/numberUtils/__tests__/toNumberWithDefault.test.ts +64 -0
- package/numberUtils/__tests__/toNumberWithDefaultZero.test.ts +48 -0
- package/numberUtils/index.ts +27 -8
- package/package.json +2 -2
- package/pipesUtils/__tests__/buildUrlWithQuery.test.ts +33 -0
- package/pipesUtils/__tests__/withPipesEndpoint.test.tsx +56 -0
- package/pipesUtils/index.ts +1 -0
- package/pipesUtils/withPipesEndpoint.tsx +54 -0
- package/playerUtils/__tests__/contentDataKeys.test.ts +297 -0
- package/playerUtils/__tests__/resolvePlayerActions.test.ts +138 -0
- package/playerUtils/__tests__/resolvePlayerTitleSubtitle.test.ts +180 -0
- package/playerUtils/contentDataKeys.ts +134 -0
- package/playerUtils/index.ts +58 -15
- package/playerUtils/isAudioItem.ts +26 -0
- package/playerUtils/resolvePlayerActions.ts +71 -0
- package/playerUtils/resolvePlayerTitleSubtitle.ts +76 -0
- package/reactHooks/actions/index.ts +117 -2
- package/reactHooks/cell-click/index.ts +18 -10
- package/reactHooks/feed/__mocks__/useMarkPipesDataStale.ts +4 -0
- package/reactHooks/feed/__tests__/useInflatedUrl.test.tsx +25 -0
- package/reactHooks/feed/index.ts +5 -1
- package/reactHooks/feed/useBatchLoading.ts +9 -1
- package/reactHooks/feed/{usePipesCacheReset.ts → useMarkPipesDataStale.ts} +12 -4
- package/reactHooks/index.ts +2 -0
- package/reactHooks/layout/index.ts +1 -1
- package/reactHooks/navigation/__mocks__/index.ts +4 -0
- package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
- package/reactHooks/navigation/index.ts +1 -1
- package/reactHooks/navigation/useIsScreenActive.ts +29 -8
- package/reactHooks/state/useComponentScreenState.ts +1 -1
- package/reactHooks/usePluginConfiguration.ts +4 -1
- package/reactHooks/utils/__tests__/index.test.js +22 -2
- package/reactHooks/utils/index.ts +13 -2
- package/reactHooks/videoModal/hooks/useVideoModalScreenData.tsx +22 -4
- package/riverComponetsMeasurementProvider/index.tsx +12 -8
- package/stringUtils/__tests__/stringUtils.test.js +42 -0
- package/stringUtils/index.ts +2 -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 -0
- package/uiActionsRegistrator/registry.ts +335 -0
- package/uiActionsRegistrator/resolveActionIdentifiers.ts +100 -0
- package/uiActionsRegistrator/usableActionItems.ts +66 -0
- package/zappFrameworkUtils/__tests__/localStorageHelper.test.ts +146 -0
- package/zappFrameworkUtils/localStorageHelper.ts +19 -15
- package/appUtils/playerManager/usePlayerTitleSummaryOverlay.tsx +0 -56
- package/playerUtils/__tests__/getPlayerActionButtons.test.ts +0 -54
- package/playerUtils/getPlayerActionButtons.ts +0 -17
- package/reactHooks/feed/__mocks__/usePipesCacheReset.ts +0 -1
- /package/reactHooks/actions/__tests__/{index.test.js → index.test.tsx} +0 -0
|
@@ -1,9 +1,22 @@
|
|
|
1
1
|
import * as R from "ramda";
|
|
2
|
-
import { BehaviorSubject } from "rxjs";
|
|
2
|
+
import { BehaviorSubject, Observable } from "rxjs";
|
|
3
|
+
import { distinctUntilChanged } from "rxjs/operators";
|
|
3
4
|
import { isEmptyOrNil } from "@applicaster/zapp-react-native-utils/cellUtils";
|
|
4
5
|
import { createLogger, utilsLogger } from "../../logger";
|
|
5
|
-
import {
|
|
6
|
-
|
|
6
|
+
import {
|
|
7
|
+
getBoolFromConfigValue,
|
|
8
|
+
imageSrcFromMediaItem,
|
|
9
|
+
} from "../../configurationUtils";
|
|
10
|
+
// Imported from the leaf modules rather than the `playerUtils` barrel: that
|
|
11
|
+
// barrel imports `playerManager`, so going through it would create a require
|
|
12
|
+
// cycle (playerManager/index -> player -> playerUtils/index -> playerManager).
|
|
13
|
+
import {
|
|
14
|
+
resolvePlayerTitleSubtitle,
|
|
15
|
+
getPlayerContentDataKeys,
|
|
16
|
+
} from "../../playerUtils/resolvePlayerTitleSubtitle";
|
|
17
|
+
import { isAudioItem } from "../../playerUtils/isAudioItem";
|
|
18
|
+
import { isTV } from "../../reactUtils";
|
|
19
|
+
import { PlayerRole, SharedPlayerCallBacksKeys } from "./const";
|
|
7
20
|
import { OverlaysObserver } from "./OverlayObserver/OverlaysObserver";
|
|
8
21
|
import { TVSeekController } from "../../reactHooks/player/TVSeekControlller/TVSeekController";
|
|
9
22
|
|
|
@@ -19,6 +32,23 @@ export declare type PlayerControllerListenerData = {
|
|
|
19
32
|
id: string;
|
|
20
33
|
listener: QuickBrickPlayer.SharedPlayerCallBacks;
|
|
21
34
|
};
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* The player's resolved Title/Subtitle text, published by the player the same
|
|
38
|
+
* way duration and progress are. Consumers render these values as-is rather
|
|
39
|
+
* than reading `entry` or the plugin configuration themselves.
|
|
40
|
+
*/
|
|
41
|
+
export type PlayerContent = {
|
|
42
|
+
title: Option<string | number>;
|
|
43
|
+
summary: Option<string | number>;
|
|
44
|
+
/**
|
|
45
|
+
* Cover art for the content currently playing. Published alongside the text
|
|
46
|
+
* (rather than read from `entry` by whoever needs it) so it follows the same
|
|
47
|
+
* entry: on live audio that means the programme's own artwork, refreshed
|
|
48
|
+
* with every feed poll, instead of the channel's.
|
|
49
|
+
*/
|
|
50
|
+
imageUrl: Option<string>;
|
|
51
|
+
};
|
|
22
52
|
/**
|
|
23
53
|
* Player Instance Controller
|
|
24
54
|
* Instance exposes utility methods that will help set or get state
|
|
@@ -45,6 +75,7 @@ export class Player {
|
|
|
45
75
|
readonly playerRole: PlayerRole = PlayerRole.Unspecified;
|
|
46
76
|
private overlaysObserver?: OverlaysObserver | null;
|
|
47
77
|
private entryObservable?: BehaviorSubject<ZappEntry> | null;
|
|
78
|
+
private contentSubject?: BehaviorSubject<PlayerContent> | null;
|
|
48
79
|
|
|
49
80
|
protected listeners: {
|
|
50
81
|
[key: string]: QuickBrickPlayer.SharedPlayerCallBacks;
|
|
@@ -58,7 +89,17 @@ export class Player {
|
|
|
58
89
|
|
|
59
90
|
set entry(newEntry: ZappEntry | null) {
|
|
60
91
|
this._entry = newEntry;
|
|
92
|
+
// The live entry is scoped to the entry it overlays - see
|
|
93
|
+
// `OverlaysObserver.clearLiveEntry`. No-op when there is no observer,
|
|
94
|
+
// which is every non-live player.
|
|
95
|
+
this.overlaysObserver?.clearLiveEntry();
|
|
61
96
|
this.entryObservable?.next(newEntry);
|
|
97
|
+
// Optional chaining short-circuits the whole call expression, so
|
|
98
|
+
// `getContent()` is NOT evaluated while no subscriber exists. That
|
|
99
|
+
// matters: `PlayerNative` assigns `this.entry` in its constructor, before
|
|
100
|
+
// subclass arrow-function properties such as `getPluginConfiguration`
|
|
101
|
+
// have been assigned.
|
|
102
|
+
this.contentSubject?.next(this.getContent());
|
|
62
103
|
}
|
|
63
104
|
|
|
64
105
|
constructor(props) {
|
|
@@ -117,6 +158,77 @@ export class Player {
|
|
|
117
158
|
return this.entryObservable;
|
|
118
159
|
};
|
|
119
160
|
|
|
161
|
+
/**
|
|
162
|
+
* The player's resolved Title/Subtitle.
|
|
163
|
+
*
|
|
164
|
+
* Resolved on demand rather than cached: the plugin configuration arrives
|
|
165
|
+
* asynchronously on both the native and cast paths, so a value computed once
|
|
166
|
+
* at entry-set time would be stale for whichever arrives first.
|
|
167
|
+
*
|
|
168
|
+
* Every fallback (no config, empty/whitespace key, unresolvable key, key
|
|
169
|
+
* resolving to an empty string or to a non-string/non-number) lives in
|
|
170
|
+
* `resolvePlayerContentText` and is never reimplemented here.
|
|
171
|
+
*/
|
|
172
|
+
getContent = (): PlayerContent => {
|
|
173
|
+
// Live audio keeps playing one channel while the programme on air
|
|
174
|
+
// changes, so the observer's freshly-loaded programme entry wins when
|
|
175
|
+
// there is one. Read through `?.` so this never constructs an observer:
|
|
176
|
+
// a VOD or cast player has none and falls straight through to its entry.
|
|
177
|
+
const entry = this.overlaysObserver?.liveEntry ?? this.entry;
|
|
178
|
+
|
|
179
|
+
return {
|
|
180
|
+
...resolvePlayerTitleSubtitle({
|
|
181
|
+
entry,
|
|
182
|
+
pluginConfiguration: this.getPluginConfiguration(),
|
|
183
|
+
dataKeys: getPlayerContentDataKeys({
|
|
184
|
+
isTV: isTV(),
|
|
185
|
+
isAudioContent: isAudioItem(entry),
|
|
186
|
+
}),
|
|
187
|
+
}),
|
|
188
|
+
// Same selection Android's `EntryHelpers.extractCoverImage` makes:
|
|
189
|
+
// prefer the `image_base` media item, otherwise the first one available.
|
|
190
|
+
// Reused rather than reimplemented so the two platforms cannot drift.
|
|
191
|
+
imageUrl: entry ? imageSrcFromMediaItem(entry, []) : undefined,
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* Created lazily, like `entryObservable`. An eagerly created subject would
|
|
197
|
+
* resolve during `PlayerNative`'s constructor and call a not-yet-assigned
|
|
198
|
+
* `getPluginConfiguration`.
|
|
199
|
+
*
|
|
200
|
+
* The seed is produced by calling the resolver, never from raw entry fields:
|
|
201
|
+
* a `BehaviorSubject` replays its seed synchronously on subscribe, so a raw
|
|
202
|
+
* seed would overwrite correctly-resolved text at mount.
|
|
203
|
+
*/
|
|
204
|
+
getContentObservable = (): Observable<PlayerContent> => {
|
|
205
|
+
if (!this.contentSubject) {
|
|
206
|
+
this.contentSubject = new BehaviorSubject<PlayerContent>(
|
|
207
|
+
this.getContent()
|
|
208
|
+
);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
return this.contentSubject.asObservable().pipe(
|
|
212
|
+
// `resolvePlayerTitleSubtitle` returns a fresh object every call, so
|
|
213
|
+
// reference equality would never dedupe. Compare by value.
|
|
214
|
+
distinctUntilChanged(
|
|
215
|
+
(previous, next) =>
|
|
216
|
+
previous.title === next.title &&
|
|
217
|
+
previous.summary === next.summary &&
|
|
218
|
+
previous.imageUrl === next.imageUrl
|
|
219
|
+
)
|
|
220
|
+
);
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* Re-resolves and publishes the current content. Called when something the
|
|
225
|
+
* resolution depends on changed without `entry` itself being reassigned -
|
|
226
|
+
* today that is the observer swapping in a newly-loaded live programme.
|
|
227
|
+
*/
|
|
228
|
+
publishContent = () => {
|
|
229
|
+
this.contentSubject?.next(this.getContent());
|
|
230
|
+
};
|
|
231
|
+
|
|
120
232
|
/**
|
|
121
233
|
* ---------------------------------------- PLAYER SETTERS GETTERS ----------------------------------------
|
|
122
234
|
* These methods let you get information about the content / ad playing
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { appStore } from "@applicaster/zapp-react-native-redux/AppStore";
|
|
2
2
|
import { findPluginByIdentifier } from "@applicaster/zapp-react-native-utils/pluginUtils";
|
|
3
3
|
import { Player } from "./player";
|
|
4
|
-
import { PlayerRole } from "./
|
|
4
|
+
import { PlayerRole } from "./const";
|
|
5
5
|
|
|
6
6
|
type PlayerFactoryItem = {
|
|
7
7
|
Component: any;
|
|
@@ -3,7 +3,7 @@ import { isEmptyOrNil } from "@applicaster/zapp-react-native-utils/cellUtils";
|
|
|
3
3
|
import { createLogger, utilsLogger } from "../../logger";
|
|
4
4
|
import { Player } from "./player";
|
|
5
5
|
import { findNodeHandle } from "react-native";
|
|
6
|
-
import { PlayerRole } from "./
|
|
6
|
+
import { PlayerRole } from "./const";
|
|
7
7
|
import { toBooleanWithDefaultFalse } from "../../booleanUtils";
|
|
8
8
|
import { RNPlayerManager } from "./nativePlayerManager";
|
|
9
9
|
|
|
@@ -296,9 +296,11 @@ export class PlayerNative extends Player {
|
|
|
296
296
|
}, listeners);
|
|
297
297
|
};
|
|
298
298
|
|
|
299
|
-
isAudioItem = () =>
|
|
300
|
-
|
|
301
|
-
|
|
299
|
+
isAudioItem = (): boolean =>
|
|
300
|
+
Boolean(
|
|
301
|
+
this.getEntry()?.content?.type?.includes?.("audio") ||
|
|
302
|
+
this.getEntry()?.type?.value?.includes?.("audio")
|
|
303
|
+
);
|
|
302
304
|
|
|
303
305
|
isFullScreenSupported = (): boolean => {
|
|
304
306
|
const config = this.getConfig();
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { Player, PlayerContent } from "./player";
|
|
3
|
+
import { usePlayer } from "./usePlayer";
|
|
4
|
+
|
|
5
|
+
const EMPTY_CONTENT: PlayerContent = {
|
|
6
|
+
title: null,
|
|
7
|
+
summary: null,
|
|
8
|
+
imageUrl: null,
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Subscribes to the player's resolved Title/Subtitle, the same way
|
|
13
|
+
* `usePlayerState` subscribes to playback state. Modeled on that hook
|
|
14
|
+
* deliberately: one React bridge pattern for everything the manager publishes.
|
|
15
|
+
*
|
|
16
|
+
* Passing no `playerId` uses the active player, which is the right default -
|
|
17
|
+
* only one player instance is live at a time. `usePlayer` additionally swaps
|
|
18
|
+
* to the casting receiver while casting, so this follows cast handover
|
|
19
|
+
* automatically.
|
|
20
|
+
*/
|
|
21
|
+
export const usePlayerContent = (playerId?: string): PlayerContent => {
|
|
22
|
+
const player: Player = usePlayer(playerId);
|
|
23
|
+
|
|
24
|
+
const [content, setContent] = React.useState<PlayerContent>(
|
|
25
|
+
() => player?.getContent() ?? EMPTY_CONTENT
|
|
26
|
+
);
|
|
27
|
+
|
|
28
|
+
React.useEffect(() => {
|
|
29
|
+
if (!player) {
|
|
30
|
+
setContent(EMPTY_CONTENT);
|
|
31
|
+
|
|
32
|
+
return;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
const subscription = player
|
|
36
|
+
.getContentObservable()
|
|
37
|
+
.subscribe((next) => setContent(next));
|
|
38
|
+
|
|
39
|
+
return () => subscription.unsubscribe();
|
|
40
|
+
}, [player]);
|
|
41
|
+
|
|
42
|
+
return content;
|
|
43
|
+
};
|
|
@@ -3,7 +3,7 @@ import { useConfiguration } from "../../reactHooks/useConfiguration";
|
|
|
3
3
|
import { useEffect } from "react";
|
|
4
4
|
import { playerManager } from "./index";
|
|
5
5
|
import { useValidatePlayerConfig } from "../../playerUtils/useValidatePlayerConfig";
|
|
6
|
-
import { PlayerRole } from "./
|
|
6
|
+
import { PlayerRole } from "./const";
|
|
7
7
|
import { isAppleTV } from "@applicaster/zapp-react-native-ui-components/Helpers/Platform";
|
|
8
8
|
import { TVSeekController } from "../../reactHooks/player/TVSeekControlller/TVSeekController";
|
|
9
9
|
import { KeyInputHandler } from "../keyInputHandler/KeyInputHandler";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { localStorage } from "@applicaster/zapp-react-native-bridge/ZappStorage/LocalStorage";
|
|
2
2
|
import { sessionStorage } from "@applicaster/zapp-react-native-bridge/ZappStorage/SessionStorage";
|
|
3
3
|
import { createLogger, utilsLogger } from "../../logger";
|
|
4
|
-
import { userPreferencesNamespace } from "./
|
|
4
|
+
import { userPreferencesNamespace } from "./const";
|
|
5
5
|
|
|
6
6
|
export const preferredAudioLanguageStorageKey = "preferred_audio_language";
|
|
7
7
|
|
|
@@ -21,4 +21,12 @@ describe("anyTruthy", () => {
|
|
|
21
21
|
expect(anyTruthy([true])).toBe(true);
|
|
22
22
|
expect(anyTruthy([false])).toBe(false);
|
|
23
23
|
});
|
|
24
|
+
|
|
25
|
+
it("should return true when the first value is true", () => {
|
|
26
|
+
expect(anyTruthy([true, false, false])).toBe(true);
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
it("should return true when only the last value is true", () => {
|
|
30
|
+
expect(anyTruthy([false, false, true])).toBe(true);
|
|
31
|
+
});
|
|
24
32
|
});
|
|
@@ -28,6 +28,30 @@ describe("shiftArray", () => {
|
|
|
28
28
|
expect(shiftArray(negativeOffset, array)).toMatchSnapshot();
|
|
29
29
|
expect(shiftArray(2 * negativeOffset, array)).toMatchSnapshot();
|
|
30
30
|
});
|
|
31
|
+
|
|
32
|
+
it("returns a new array and does not mutate the original", () => {
|
|
33
|
+
const original = ["a", "b", "c"];
|
|
34
|
+
const result = shiftArray(1, original);
|
|
35
|
+
|
|
36
|
+
expect(result).toEqual(["b", "c", "a"]);
|
|
37
|
+
expect(result).not.toBe(original);
|
|
38
|
+
expect(original).toEqual(["a", "b", "c"]);
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
it("returns an empty array when shifting an empty array", () => {
|
|
42
|
+
expect(shiftArray(1, [])).toEqual([]);
|
|
43
|
+
expect(shiftArray(-1, [])).toEqual([]);
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
it("returns the same order for a single-element array", () => {
|
|
47
|
+
expect(shiftArray(1, [1])).toEqual([1]);
|
|
48
|
+
expect(shiftArray(-1, [1])).toEqual([1]);
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
it("handles an offset equal to the array length", () => {
|
|
52
|
+
expect(shiftArray(4, array)).toEqual(array);
|
|
53
|
+
expect(shiftArray(-4, array)).toEqual(array);
|
|
54
|
+
});
|
|
31
55
|
});
|
|
32
56
|
|
|
33
57
|
describe("removeItemFromList", () => {
|
|
@@ -58,6 +82,38 @@ describe("removeItemFromList", () => {
|
|
|
58
82
|
arrayOfObjects
|
|
59
83
|
);
|
|
60
84
|
});
|
|
85
|
+
|
|
86
|
+
it("returns the same reference when the item is not found", () => {
|
|
87
|
+
const list = [1, 2, 3];
|
|
88
|
+
|
|
89
|
+
expect(removeItemFromList(4, list)).toBe(list);
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
it("returns a new array when the item is removed", () => {
|
|
93
|
+
const list = [1, 2, 3];
|
|
94
|
+
const result = removeItemFromList(2, list);
|
|
95
|
+
|
|
96
|
+
expect(result).toEqual([1, 3]);
|
|
97
|
+
expect(result).not.toBe(list);
|
|
98
|
+
expect(list).toEqual([1, 2, 3]);
|
|
99
|
+
});
|
|
100
|
+
|
|
101
|
+
it("removes only the first occurrence of a duplicate item", () => {
|
|
102
|
+
expect(removeItemFromList(2, [1, 2, 2, 3])).toEqual([1, 2, 3]);
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
it("removes the first and last items", () => {
|
|
106
|
+
expect(removeItemFromList(1, [1, 2, 3])).toEqual([2, 3]);
|
|
107
|
+
expect(removeItemFromList(3, [1, 2, 3])).toEqual([1, 2]);
|
|
108
|
+
});
|
|
109
|
+
|
|
110
|
+
it("returns an empty list when removing from an empty list", () => {
|
|
111
|
+
expect(removeItemFromList(1, [])).toEqual([]);
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
it("returns an empty list when removing the only item", () => {
|
|
115
|
+
expect(removeItemFromList(1, [1])).toEqual([]);
|
|
116
|
+
});
|
|
61
117
|
});
|
|
62
118
|
|
|
63
119
|
describe("mapPromises", () => {
|
|
@@ -84,145 +140,146 @@ describe("mapPromises", () => {
|
|
|
84
140
|
values.forEach((value) => {
|
|
85
141
|
expect(promiseFn).toHaveBeenNthCalledWith(value, value, value - 1);
|
|
86
142
|
});
|
|
87
|
-
});
|
|
88
143
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
const arrayOfPrimitives = [1, 2, 3, 4];
|
|
92
|
-
expect(removeItemFromList(1, arrayOfPrimitives)).toEqual([2, 3, 4]);
|
|
144
|
+
expect.assertions(values.length + 1);
|
|
145
|
+
});
|
|
93
146
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
];
|
|
147
|
+
it("resolves to an empty array for an empty input", async () => {
|
|
148
|
+
await expect(mapPromises(promiseFn, [])).resolves.toEqual([]);
|
|
149
|
+
expect(promiseFn).not.toHaveBeenCalled();
|
|
150
|
+
});
|
|
99
151
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
});
|
|
152
|
+
it("rejects when any promise rejects", async () => {
|
|
153
|
+
const failingFn = jest.fn((num) =>
|
|
154
|
+
num === 2 ? Promise.reject(new Error("fail")) : Promise.resolve(num)
|
|
155
|
+
);
|
|
105
156
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
{ prop: "value2" },
|
|
110
|
-
{ prop: "value3" },
|
|
111
|
-
];
|
|
157
|
+
await expect(mapPromises(failingFn, [1, 2, 3])).rejects.toThrow("fail");
|
|
158
|
+
});
|
|
159
|
+
});
|
|
112
160
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
161
|
+
describe("reducePromises", () => {
|
|
162
|
+
const promiseFn = jest.fn((current, previous, index, cb) => {
|
|
163
|
+
return new Promise((resolve) => {
|
|
164
|
+
setTimeout(() => {
|
|
165
|
+
resolve(previous + current);
|
|
166
|
+
cb?.(index);
|
|
167
|
+
}, 1);
|
|
116
168
|
});
|
|
117
169
|
});
|
|
118
170
|
|
|
119
|
-
|
|
120
|
-
|
|
171
|
+
beforeEach(() => {
|
|
172
|
+
promiseFn.mockClear();
|
|
173
|
+
});
|
|
121
174
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
});
|
|
175
|
+
it("is a curried function; and returns the reduced promise values", async () => {
|
|
176
|
+
const promiseReducer = reducePromises(promiseFn);
|
|
125
177
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
178
|
+
const initialValue = 0;
|
|
179
|
+
const values = [1, 2, 3];
|
|
180
|
+
const sumOfValues = initialValue + values.reduce((a, b) => a + b, 0);
|
|
129
181
|
|
|
130
|
-
|
|
131
|
-
await expect(promiseMapper(values)).resolves.toEqual([2, 3, 4]);
|
|
132
|
-
});
|
|
182
|
+
expect(typeof promiseReducer).toBe("function");
|
|
133
183
|
|
|
134
|
-
|
|
135
|
-
|
|
184
|
+
await expect(promiseReducer(initialValue, values)).resolves.toEqual(
|
|
185
|
+
sumOfValues
|
|
186
|
+
);
|
|
187
|
+
});
|
|
136
188
|
|
|
137
|
-
|
|
138
|
-
|
|
189
|
+
it("calls promises one after the other", (done) => {
|
|
190
|
+
const values = [1, 2, 3];
|
|
191
|
+
const previousValues = [0, 1, 3];
|
|
192
|
+
|
|
193
|
+
reducePromises(
|
|
194
|
+
(current, previous, index) =>
|
|
195
|
+
promiseFn(current, previous, index, (index) => {
|
|
196
|
+
expect(promiseFn).toHaveBeenCalledTimes(index + 1);
|
|
197
|
+
|
|
198
|
+
expect(promiseFn).toHaveBeenNthCalledWith(
|
|
199
|
+
index + 1,
|
|
200
|
+
values[index],
|
|
201
|
+
previousValues[index],
|
|
202
|
+
index,
|
|
203
|
+
expect.any(Function)
|
|
204
|
+
);
|
|
205
|
+
|
|
206
|
+
if (index === 2) done();
|
|
207
|
+
}),
|
|
208
|
+
0,
|
|
209
|
+
values
|
|
210
|
+
);
|
|
139
211
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
});
|
|
212
|
+
expect.assertions(values.length * 2);
|
|
213
|
+
});
|
|
143
214
|
|
|
144
|
-
|
|
145
|
-
|
|
215
|
+
it("returns the initial value for an empty list", async () => {
|
|
216
|
+
await expect(reducePromises(promiseFn, 10, [])).resolves.toBe(10);
|
|
217
|
+
expect(promiseFn).not.toHaveBeenCalled();
|
|
146
218
|
});
|
|
147
219
|
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
setTimeout(() => {
|
|
152
|
-
resolve(previous + current);
|
|
153
|
-
cb?.(index);
|
|
154
|
-
}, 1);
|
|
155
|
-
});
|
|
156
|
-
});
|
|
220
|
+
it("reduces a single-element list", async () => {
|
|
221
|
+
await expect(reducePromises(promiseFn, 5, [2])).resolves.toBe(7);
|
|
222
|
+
});
|
|
157
223
|
|
|
158
|
-
|
|
159
|
-
|
|
224
|
+
it("rejects when a promise rejects", async () => {
|
|
225
|
+
const failingFn = jest.fn(async (current, previous) => {
|
|
226
|
+
if (current === 2) throw new Error("reduce fail");
|
|
227
|
+
|
|
228
|
+
return previous + current;
|
|
160
229
|
});
|
|
161
230
|
|
|
162
|
-
|
|
163
|
-
|
|
231
|
+
await expect(reducePromises(failingFn, 0, [1, 2, 3])).rejects.toThrow(
|
|
232
|
+
"reduce fail"
|
|
233
|
+
);
|
|
234
|
+
});
|
|
235
|
+
});
|
|
236
|
+
|
|
237
|
+
describe("mapAndSplit", () => {
|
|
238
|
+
it("maps over a list of values and split it in chunks", () => {
|
|
239
|
+
const values = new Array(20).fill(0).map((_, i) => i);
|
|
240
|
+
|
|
241
|
+
const alphabet = Array.from(Array(26)).map((_, i) =>
|
|
242
|
+
String.fromCharCode(i + 65)
|
|
243
|
+
);
|
|
164
244
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
const sumOfValues = initialValue + values.reduce((a, b) => a + b, 0);
|
|
245
|
+
const getLetterForInt = (num) => alphabet[num];
|
|
246
|
+
const chunkSize = 5;
|
|
168
247
|
|
|
169
|
-
|
|
248
|
+
const result = mapAndSplit<number, string>(
|
|
249
|
+
getLetterForInt,
|
|
250
|
+
chunkSize
|
|
251
|
+
)(values);
|
|
170
252
|
|
|
171
|
-
|
|
172
|
-
sumOfValues
|
|
173
|
-
);
|
|
174
|
-
});
|
|
253
|
+
expect(result.length).toBe(values.length / chunkSize);
|
|
175
254
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
reducePromises(
|
|
181
|
-
(current, previous, index) =>
|
|
182
|
-
promiseFn(current, previous, index, (index) => {
|
|
183
|
-
expect(promiseFn).toHaveBeenCalledTimes(index + 1);
|
|
184
|
-
|
|
185
|
-
expect(promiseFn).toHaveBeenNthCalledWith(
|
|
186
|
-
index + 1,
|
|
187
|
-
values[index],
|
|
188
|
-
previousValues[index],
|
|
189
|
-
index,
|
|
190
|
-
expect.any(Function)
|
|
191
|
-
);
|
|
192
|
-
|
|
193
|
-
if (index === 2) done();
|
|
194
|
-
}),
|
|
195
|
-
0,
|
|
196
|
-
values
|
|
197
|
-
);
|
|
198
|
-
|
|
199
|
-
expect.assertions(values.length * 2);
|
|
255
|
+
result.forEach((chunk, chunkIndex) => {
|
|
256
|
+
chunk.forEach((value, index) => {
|
|
257
|
+
expect(value).toBe(alphabet[chunkIndex * chunkSize + index]);
|
|
258
|
+
});
|
|
200
259
|
});
|
|
201
260
|
});
|
|
202
261
|
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
262
|
+
it("is a curried function", () => {
|
|
263
|
+
const mapper = (n: number) => n * 2;
|
|
264
|
+
const splitBy2 = mapAndSplit(mapper, 2);
|
|
206
265
|
|
|
207
|
-
|
|
208
|
-
String.fromCharCode(i + 65)
|
|
209
|
-
);
|
|
266
|
+
expect(typeof splitBy2).toBe("function");
|
|
210
267
|
|
|
211
|
-
|
|
212
|
-
|
|
268
|
+
expect(splitBy2([1, 2, 3, 4])).toEqual([
|
|
269
|
+
[2, 4],
|
|
270
|
+
[6, 8],
|
|
271
|
+
]);
|
|
272
|
+
});
|
|
213
273
|
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
)(values);
|
|
274
|
+
it("returns an empty list for an empty input", () => {
|
|
275
|
+
expect(mapAndSplit((n: number) => n, 2)([])).toEqual([]);
|
|
276
|
+
});
|
|
218
277
|
|
|
219
|
-
|
|
278
|
+
it("puts remaining items in a final smaller chunk", () => {
|
|
279
|
+
expect(mapAndSplit((n: number) => n, 2)([1, 2, 3])).toEqual([[1, 2], [3]]);
|
|
280
|
+
});
|
|
220
281
|
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
expect(value).toBe(alphabet[chunkIndex * chunkSize + index]);
|
|
224
|
-
});
|
|
225
|
-
});
|
|
226
|
-
});
|
|
282
|
+
it("returns a single chunk when chunk size exceeds the list length", () => {
|
|
283
|
+
expect(mapAndSplit((n: number) => n * 10, 10)([1, 2])).toEqual([[10, 20]]);
|
|
227
284
|
});
|
|
228
285
|
});
|
|
@@ -60,4 +60,15 @@ describe("isEmptyArray", () => {
|
|
|
60
60
|
|
|
61
61
|
expect(isEmptyArray(value)).toBe(false);
|
|
62
62
|
});
|
|
63
|
+
|
|
64
|
+
it("array with falsy values is not empty", () => {
|
|
65
|
+
expect(isEmptyArray([0])).toBe(false);
|
|
66
|
+
expect(isEmptyArray([false])).toBe(false);
|
|
67
|
+
expect(isEmptyArray([null])).toBe(false);
|
|
68
|
+
expect(isEmptyArray([undefined])).toBe(false);
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
it("nested empty array is not empty", () => {
|
|
72
|
+
expect(isEmptyArray([[]])).toBe(false);
|
|
73
|
+
});
|
|
63
74
|
});
|
|
@@ -60,4 +60,16 @@ describe("isFilledArray", () => {
|
|
|
60
60
|
|
|
61
61
|
expect(isFilledArray(value)).toBe(false);
|
|
62
62
|
});
|
|
63
|
+
|
|
64
|
+
it("array with falsy values is filled", () => {
|
|
65
|
+
expect(isFilledArray([0])).toBe(true);
|
|
66
|
+
expect(isFilledArray([false])).toBe(true);
|
|
67
|
+
expect(isFilledArray([null])).toBe(true);
|
|
68
|
+
expect(isFilledArray([undefined])).toBe(true);
|
|
69
|
+
expect(isFilledArray([""])).toBe(true);
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
it("nested empty array is filled", () => {
|
|
73
|
+
expect(isFilledArray([[]])).toBe(true);
|
|
74
|
+
});
|
|
63
75
|
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { isFirst } from "..";
|
|
2
|
+
|
|
3
|
+
describe("isFirst", () => {
|
|
4
|
+
it("returns true for index 0", () => {
|
|
5
|
+
expect(isFirst(0)).toBe(true);
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
it("returns false for positive indexes", () => {
|
|
9
|
+
expect(isFirst(1)).toBe(false);
|
|
10
|
+
expect(isFirst(10)).toBe(false);
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
it("returns true for negative indexes", () => {
|
|
14
|
+
expect(isFirst(-1)).toBe(true);
|
|
15
|
+
expect(isFirst(-100)).toBe(true);
|
|
16
|
+
});
|
|
17
|
+
});
|
|
@@ -56,4 +56,18 @@ describe("isIndexInRange", () => {
|
|
|
56
56
|
|
|
57
57
|
expect(isIndexInRange(index, length)).toBe(false);
|
|
58
58
|
});
|
|
59
|
+
|
|
60
|
+
it("single-element list", () => {
|
|
61
|
+
expect(isIndexInRange(0, 1)).toBe(true);
|
|
62
|
+
expect(isIndexInRange(1, 1)).toBe(false);
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
it("negative length is out of range", () => {
|
|
66
|
+
expect(isIndexInRange(0, -1)).toBe(false);
|
|
67
|
+
expect(isIndexInRange(0, -5)).toBe(false);
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
it("middle index is in range", () => {
|
|
71
|
+
expect(isIndexInRange(1, 3)).toBe(true);
|
|
72
|
+
});
|
|
59
73
|
});
|