@applicaster/zapp-react-native-utils 15.0.0-alpha.1456157166 → 15.0.0-alpha.1597356006
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/analyticsUtils/AnalyticPlayerListener.ts +5 -2
- package/appUtils/focusManager/__tests__/__snapshots__/focusManager.test.js.snap +1 -0
- package/appUtils/focusManager/index.ios.ts +18 -1
- package/appUtils/focusManagerAux/utils/index.ts +18 -0
- package/appUtils/focusManagerAux/utils/utils.ios.ts +35 -0
- package/appUtils/platform/platformUtils.ts +2 -2
- package/appUtils/playerManager/conts.ts +21 -0
- package/appUtils/playerManager/player.ts +4 -0
- package/appUtils/playerManager/usePlayerState.tsx +14 -2
- package/arrayUtils/__tests__/allTruthy.test.ts +24 -0
- package/arrayUtils/__tests__/anyThruthy.test.ts +24 -0
- package/arrayUtils/index.ts +5 -0
- package/manifestUtils/defaultManifestConfigurations/player.js +33 -1
- package/navigationUtils/index.ts +19 -16
- package/package.json +2 -2
- package/reactHooks/feed/useBatchLoading.ts +7 -1
- package/reactHooks/feed/usePipesCacheReset.ts +3 -1
- package/reactHooks/layout/index.ts +1 -1
- package/reactHooks/player/TVSeekControlller/TVSeekController.ts +27 -10
- package/utils/__tests__/mapAccum.test.ts +73 -0
- package/utils/index.ts +7 -0
- package/utils/mapAccum.ts +23 -0
- package/zappFrameworkUtils/HookCallback/callbackNavigationAction.ts +98 -31
- package/zappFrameworkUtils/HookCallback/hookCallbackManifestExtensions.config.js +25 -9
- package/zappFrameworkUtils/HookCallback/useCallbackActions.ts +6 -9
|
@@ -35,8 +35,11 @@ export class AnalyticPlayerListener
|
|
|
35
35
|
this.handleAnalyticEvent(PLAYBACK_EVENT.complete);
|
|
36
36
|
};
|
|
37
37
|
|
|
38
|
-
onError = (err:
|
|
39
|
-
this.handleAnalyticEvent(
|
|
38
|
+
onError = (err: QuickBrickPlayer.PlayerErrorI) => {
|
|
39
|
+
this.handleAnalyticEvent(
|
|
40
|
+
PLAYBACK_EVENT.error,
|
|
41
|
+
err.toObject?.() || { message: err.message }
|
|
42
|
+
);
|
|
40
43
|
};
|
|
41
44
|
|
|
42
45
|
onPlayerPause = (event) => {
|
|
@@ -69,6 +69,7 @@ exports[`focusManagerIOS should be defined 1`] = `
|
|
|
69
69
|
"getGroupRootById": [Function],
|
|
70
70
|
"getPreferredFocusChild": [Function],
|
|
71
71
|
"invokeHandler": [Function],
|
|
72
|
+
"isChildOf": [Function],
|
|
72
73
|
"isFocusOn": [Function],
|
|
73
74
|
"isGroupItemFocused": [Function],
|
|
74
75
|
"moveFocus": [Function],
|
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
import { NativeModules } from "react-native";
|
|
2
2
|
import * as R from "ramda";
|
|
3
3
|
|
|
4
|
-
import {
|
|
4
|
+
import {
|
|
5
|
+
isCurrentFocusOn,
|
|
6
|
+
isChildOf as isChildOfUtils,
|
|
7
|
+
} from "../focusManagerAux/utils";
|
|
5
8
|
import { Tree } from "./treeDataStructure/Tree";
|
|
6
9
|
import { findFocusableNode } from "./treeDataStructure/Utils";
|
|
7
10
|
import { subscriber } from "../../functionUtils";
|
|
8
11
|
import { findChild } from "./utils";
|
|
9
12
|
|
|
13
|
+
import {
|
|
14
|
+
emitRegistered,
|
|
15
|
+
emitUnregistered,
|
|
16
|
+
} from "../focusManagerAux/utils/utils.ios";
|
|
17
|
+
|
|
10
18
|
const { FocusableManagerModule } = NativeModules;
|
|
11
19
|
|
|
12
20
|
/**
|
|
@@ -180,10 +188,14 @@ export const focusManager = (function () {
|
|
|
180
188
|
function register({ id, component }) {
|
|
181
189
|
const { isGroup = false } = component;
|
|
182
190
|
|
|
191
|
+
emitRegistered(id);
|
|
192
|
+
|
|
183
193
|
return isGroup ? registerGroup(id, component) : registerItem(id, component);
|
|
184
194
|
}
|
|
185
195
|
|
|
186
196
|
function unregister(id, { group = false } = {}) {
|
|
197
|
+
emitUnregistered(id);
|
|
198
|
+
|
|
187
199
|
group ? unregisterGroup(id) : unregisterItem(id);
|
|
188
200
|
}
|
|
189
201
|
|
|
@@ -400,6 +412,10 @@ export const focusManager = (function () {
|
|
|
400
412
|
return id && isCurrentFocusOn(id, currentFocusNode);
|
|
401
413
|
}
|
|
402
414
|
|
|
415
|
+
function isChildOf(childId, parentId): boolean {
|
|
416
|
+
return isChildOfUtils(focusableTree, childId, parentId);
|
|
417
|
+
}
|
|
418
|
+
|
|
403
419
|
return {
|
|
404
420
|
on,
|
|
405
421
|
invokeHandler,
|
|
@@ -422,5 +438,6 @@ export const focusManager = (function () {
|
|
|
422
438
|
isGroupItemFocused,
|
|
423
439
|
getPreferredFocusChild,
|
|
424
440
|
isFocusOn,
|
|
441
|
+
isChildOf,
|
|
425
442
|
};
|
|
426
443
|
})();
|
|
@@ -190,3 +190,21 @@ export const isCurrentFocusOn = (id, node) => {
|
|
|
190
190
|
|
|
191
191
|
return isCurrentFocusOn(id, node.parent);
|
|
192
192
|
};
|
|
193
|
+
|
|
194
|
+
export const isChildOf = (focusableTree, childId, parentId) => {
|
|
195
|
+
if (isNil(childId) || isNil(parentId)) {
|
|
196
|
+
return false;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
const childNode = focusableTree.findInTree(childId);
|
|
200
|
+
|
|
201
|
+
if (isNil(childNode)) {
|
|
202
|
+
return false;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
if (childNode.parent?.id === parentId) {
|
|
206
|
+
return true;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
return isChildOf(focusableTree, childNode.parent?.id, parentId);
|
|
210
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { ReplaySubject } from "rxjs";
|
|
2
|
+
import { filter } from "rxjs/operators";
|
|
3
|
+
import { BUTTON_PREFIX } from "@applicaster/zapp-react-native-ui-components/Components/MasterCell/DefaultComponents/tv/TvActionButtons/const";
|
|
4
|
+
import { focusManager } from "@applicaster/zapp-react-native-utils/appUtils/focusManager/index.ios";
|
|
5
|
+
|
|
6
|
+
type FocusableID = string;
|
|
7
|
+
type RegistrationEvent = {
|
|
8
|
+
id: FocusableID;
|
|
9
|
+
registered: boolean;
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
const isFocusableButton = (id: Option<FocusableID>): boolean =>
|
|
13
|
+
id && id.includes?.(BUTTON_PREFIX);
|
|
14
|
+
|
|
15
|
+
const registeredSubject$ = new ReplaySubject<RegistrationEvent>(1);
|
|
16
|
+
|
|
17
|
+
export const focusableButtonsRegistration$ = (focusableGroupId: string) =>
|
|
18
|
+
registeredSubject$.pipe(
|
|
19
|
+
filter(
|
|
20
|
+
(value) =>
|
|
21
|
+
value.registered && focusManager.isChildOf(value.id, focusableGroupId)
|
|
22
|
+
)
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
export const emitRegistered = (id: Option<FocusableID>): void => {
|
|
26
|
+
if (isFocusableButton(id)) {
|
|
27
|
+
registeredSubject$.next({ id, registered: true });
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
export const emitUnregistered = (id: Option<FocusableID>): void => {
|
|
32
|
+
if (isFocusableButton(id)) {
|
|
33
|
+
registeredSubject$.next({ id, registered: false });
|
|
34
|
+
}
|
|
35
|
+
};
|
|
@@ -229,14 +229,14 @@ export class TTSManager {
|
|
|
229
229
|
try {
|
|
230
230
|
window.webOS.service.request("luna://com.webos.service.tts", {
|
|
231
231
|
method: "speak",
|
|
232
|
-
onFailure(error: any) {
|
|
232
|
+
onFailure: (error: any) => {
|
|
233
233
|
log_debug("There was a failure setting up webOS TTS service", {
|
|
234
234
|
error,
|
|
235
235
|
});
|
|
236
236
|
|
|
237
237
|
this.ttsState$.next(false);
|
|
238
238
|
},
|
|
239
|
-
onSuccess(response: any) {
|
|
239
|
+
onSuccess: (response: any) => {
|
|
240
240
|
log_debug("webOS TTS service is configured successfully", {
|
|
241
241
|
response,
|
|
242
242
|
});
|
|
@@ -2,6 +2,27 @@ export const userPreferencesNamespace = "user_preferences";
|
|
|
2
2
|
|
|
3
3
|
export const skipActionType = "show_skip";
|
|
4
4
|
|
|
5
|
+
export class PlayerError
|
|
6
|
+
extends Error
|
|
7
|
+
implements QuickBrickPlayer.PlayerErrorI
|
|
8
|
+
{
|
|
9
|
+
description: string;
|
|
10
|
+
|
|
11
|
+
constructor(message: string, description: string) {
|
|
12
|
+
super(message);
|
|
13
|
+
this.description = description;
|
|
14
|
+
|
|
15
|
+
Object.setPrototypeOf(this, PlayerError.prototype);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
toObject() {
|
|
19
|
+
return {
|
|
20
|
+
error: this.message,
|
|
21
|
+
message: this.description,
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
5
26
|
export enum SharedPlayerCallBacksKeys {
|
|
6
27
|
OnPlayerResume = "onPlayerResume",
|
|
7
28
|
OnPlayerPause = "onPlayerPause",
|
|
@@ -2,7 +2,7 @@ import * as React from "react";
|
|
|
2
2
|
import { Player } from "./player";
|
|
3
3
|
import { usePlayer } from "./usePlayer";
|
|
4
4
|
|
|
5
|
-
type PlayerState = {
|
|
5
|
+
export type PlayerState = {
|
|
6
6
|
currentTime: number;
|
|
7
7
|
duration: number;
|
|
8
8
|
seekableDuration: number;
|
|
@@ -10,6 +10,8 @@ type PlayerState = {
|
|
|
10
10
|
isPaused: boolean;
|
|
11
11
|
isBuffering: boolean;
|
|
12
12
|
isReadyToPlay: boolean;
|
|
13
|
+
trackState?: QuickBrickPlayer.TracksState;
|
|
14
|
+
isAd: boolean;
|
|
13
15
|
};
|
|
14
16
|
|
|
15
17
|
export const usePlayerState = (
|
|
@@ -24,6 +26,8 @@ export const usePlayerState = (
|
|
|
24
26
|
isPaused: null,
|
|
25
27
|
isBuffering: false,
|
|
26
28
|
isReadyToPlay: false,
|
|
29
|
+
trackState: null,
|
|
30
|
+
isAd: false,
|
|
27
31
|
});
|
|
28
32
|
|
|
29
33
|
const player: Player = usePlayer(playerId);
|
|
@@ -37,6 +41,8 @@ export const usePlayerState = (
|
|
|
37
41
|
isPaused: player.isPaused(),
|
|
38
42
|
isBuffering: player.isBuffering(),
|
|
39
43
|
isReadyToPlay: player.isReadyToPlay(),
|
|
44
|
+
trackState: player.getTracksState(),
|
|
45
|
+
isAd: player.isAd(),
|
|
40
46
|
});
|
|
41
47
|
}, [player]);
|
|
42
48
|
|
|
@@ -54,10 +60,16 @@ export const usePlayerState = (
|
|
|
54
60
|
onPlayerPause: onPlayerChangeState,
|
|
55
61
|
onPlayerResume: onPlayerChangeState,
|
|
56
62
|
onPlayerSeekComplete: onPlayerChangeState,
|
|
63
|
+
onTracksChanged: onPlayerChangeState,
|
|
64
|
+
onAdBreakBegin: onPlayerChangeState,
|
|
65
|
+
onAdBreakEnd: onPlayerChangeState,
|
|
66
|
+
onAdBegin: onPlayerChangeState,
|
|
67
|
+
onAdEnd: onPlayerChangeState,
|
|
68
|
+
onAdError: onPlayerChangeState,
|
|
57
69
|
},
|
|
58
70
|
});
|
|
59
71
|
}
|
|
60
|
-
}, [player]);
|
|
72
|
+
}, [listenerId, onPlayerChangeState, player]);
|
|
61
73
|
|
|
62
74
|
return state;
|
|
63
75
|
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { allTruthy } from "..";
|
|
2
|
+
|
|
3
|
+
describe("allTruthy", () => {
|
|
4
|
+
it("should return true when all values are true", () => {
|
|
5
|
+
expect(allTruthy([true, true, true])).toBe(true);
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
it("should return false when at least one value is false", () => {
|
|
9
|
+
expect(allTruthy([true, false, true])).toBe(false);
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it("should return false when all values are false", () => {
|
|
13
|
+
expect(allTruthy([false, false, false])).toBe(false);
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it("should return false for an empty array", () => {
|
|
17
|
+
expect(allTruthy([])).toBe(false);
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it("should handle single-element arrays correctly", () => {
|
|
21
|
+
expect(allTruthy([true])).toBe(true);
|
|
22
|
+
expect(allTruthy([false])).toBe(false);
|
|
23
|
+
});
|
|
24
|
+
});
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { anyTruthy } from "..";
|
|
2
|
+
|
|
3
|
+
describe("anyTruthy", () => {
|
|
4
|
+
it("should return true when at least one value is true", () => {
|
|
5
|
+
expect(anyTruthy([false, true, false])).toBe(true);
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
it("should return false when all values are false", () => {
|
|
9
|
+
expect(anyTruthy([false, false, false])).toBe(false);
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it("should return true when all values are true", () => {
|
|
13
|
+
expect(anyTruthy([true, true, true])).toBe(true);
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it("should return false for an empty array", () => {
|
|
17
|
+
expect(anyTruthy([])).toBe(false);
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it("should handle single-element arrays correctly", () => {
|
|
21
|
+
expect(anyTruthy([true])).toBe(true);
|
|
22
|
+
expect(anyTruthy([false])).toBe(false);
|
|
23
|
+
});
|
|
24
|
+
});
|
package/arrayUtils/index.ts
CHANGED
|
@@ -447,7 +447,7 @@ function getPlayerConfiguration({ platform, version }) {
|
|
|
447
447
|
),
|
|
448
448
|
fieldsGroup(
|
|
449
449
|
"Skip Button",
|
|
450
|
-
"This section allows you to configure the skip button
|
|
450
|
+
"This section allows you to configure the skip button behaviour",
|
|
451
451
|
[
|
|
452
452
|
{
|
|
453
453
|
type: "switch",
|
|
@@ -464,6 +464,12 @@ function getPlayerConfiguration({ platform, version }) {
|
|
|
464
464
|
label: "Persistent Button Toggle",
|
|
465
465
|
initial_value: true,
|
|
466
466
|
},
|
|
467
|
+
]
|
|
468
|
+
),
|
|
469
|
+
fieldsGroup(
|
|
470
|
+
"Labeled Button Style",
|
|
471
|
+
"This section allows you to configure the labeled button styles",
|
|
472
|
+
[
|
|
467
473
|
{
|
|
468
474
|
type: "color_picker_rgba",
|
|
469
475
|
label_tooltip: "",
|
|
@@ -619,6 +625,32 @@ function getPlayerConfiguration({ platform, version }) {
|
|
|
619
625
|
);
|
|
620
626
|
}
|
|
621
627
|
|
|
628
|
+
if (isTV(platform)) {
|
|
629
|
+
general.fields.push(
|
|
630
|
+
{
|
|
631
|
+
key: "liveSeekingEnabled",
|
|
632
|
+
label: "Live Seeking Enabled",
|
|
633
|
+
initial_value: false,
|
|
634
|
+
type: "switch",
|
|
635
|
+
label_tooltip: "Enable Live Seek",
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
key: "minimumAllowedSeekableDurationInSeconds",
|
|
639
|
+
label: "Minimum allowed seekable duration in seconds",
|
|
640
|
+
initial_value: 300,
|
|
641
|
+
type: "number_input",
|
|
642
|
+
label_tooltip:
|
|
643
|
+
"If duration less that this value, player will disable 'liveSeekingEnabled' value",
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
key: "live_image",
|
|
647
|
+
label: "Live badge",
|
|
648
|
+
type: "uploader",
|
|
649
|
+
label_tooltip: "Override default live badge / icon",
|
|
650
|
+
}
|
|
651
|
+
);
|
|
652
|
+
}
|
|
653
|
+
|
|
622
654
|
if (isMobile(platform)) {
|
|
623
655
|
general.fields.push(
|
|
624
656
|
{
|
package/navigationUtils/index.ts
CHANGED
|
@@ -575,24 +575,27 @@ export function routeIsPlayerScreen(currentRoute) {
|
|
|
575
575
|
return currentRoute?.includes("/playable");
|
|
576
576
|
}
|
|
577
577
|
|
|
578
|
-
export const getNavBarProps =
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
578
|
+
export const getNavBarProps = (
|
|
579
|
+
currentRiver: ZappRiver,
|
|
580
|
+
pathname: string,
|
|
581
|
+
title: string
|
|
582
|
+
) => {
|
|
583
|
+
const props = getNavigationPropsV2({
|
|
584
|
+
currentRiver,
|
|
585
|
+
title,
|
|
586
|
+
category: "nav_bar",
|
|
587
|
+
});
|
|
585
588
|
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
589
|
+
if (props) {
|
|
590
|
+
return {
|
|
591
|
+
...props,
|
|
592
|
+
id: pathname,
|
|
593
|
+
pathname: pathname,
|
|
594
|
+
};
|
|
595
|
+
}
|
|
593
596
|
|
|
594
|
-
|
|
595
|
-
|
|
597
|
+
return null;
|
|
598
|
+
};
|
|
596
599
|
|
|
597
600
|
export const findMenuPlugin = (
|
|
598
601
|
navigations: ZappNavigation[],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applicaster/zapp-react-native-utils",
|
|
3
|
-
"version": "15.0.0-alpha.
|
|
3
|
+
"version": "15.0.0-alpha.1597356006",
|
|
4
4
|
"description": "Applicaster Zapp React Native utilities package",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/applicaster/quickbrick#readme",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@applicaster/applicaster-types": "15.0.0-alpha.
|
|
30
|
+
"@applicaster/applicaster-types": "15.0.0-alpha.1597356006",
|
|
31
31
|
"buffer": "^5.2.1",
|
|
32
32
|
"camelize": "^1.0.0",
|
|
33
33
|
"dayjs": "^1.11.10",
|
|
@@ -151,7 +151,13 @@ export const useBatchLoading = (
|
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
153
|
});
|
|
154
|
-
}, [
|
|
154
|
+
}, [
|
|
155
|
+
batchComponents,
|
|
156
|
+
feeds,
|
|
157
|
+
getUrl,
|
|
158
|
+
loadPipesDataDispatcher,
|
|
159
|
+
options.riverId,
|
|
160
|
+
]);
|
|
155
161
|
|
|
156
162
|
React.useEffect(() => {
|
|
157
163
|
runBatchLoading();
|
|
@@ -147,17 +147,34 @@ export class TVSeekController
|
|
|
147
147
|
|
|
148
148
|
let targetPos = currentPos;
|
|
149
149
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
150
|
+
const isLive = this.playerController.isLive();
|
|
151
|
+
|
|
152
|
+
if (isLive) {
|
|
153
|
+
if (this.currentSeekType === SEEK_TYPE.REWIND) {
|
|
154
|
+
targetPos = Math.min(
|
|
155
|
+
currentPos + offset,
|
|
156
|
+
this.playerController.getSeekableDuration()
|
|
157
|
+
);
|
|
158
|
+
} else if (this.currentSeekType === SEEK_TYPE.FORWARD) {
|
|
159
|
+
targetPos = Math.max(0, currentPos - offset);
|
|
160
|
+
} else {
|
|
161
|
+
log_warning(
|
|
162
|
+
`TVSeekController: handleDelayedSeek - invalid seek type: ${this.currentSeekType}`
|
|
163
|
+
);
|
|
164
|
+
}
|
|
157
165
|
} else {
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
166
|
+
if (this.currentSeekType === SEEK_TYPE.FORWARD) {
|
|
167
|
+
targetPos = Math.min(
|
|
168
|
+
currentPos + offset,
|
|
169
|
+
this.playerController.getSeekableDuration()
|
|
170
|
+
);
|
|
171
|
+
} else if (this.currentSeekType === SEEK_TYPE.REWIND) {
|
|
172
|
+
targetPos = Math.max(0, currentPos - offset);
|
|
173
|
+
} else {
|
|
174
|
+
log_warning(
|
|
175
|
+
`TVSeekController: handleDelayedSeek - invalid seek type: ${this.currentSeekType}`
|
|
176
|
+
);
|
|
177
|
+
}
|
|
161
178
|
}
|
|
162
179
|
|
|
163
180
|
log_debug(
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { mapAccum } from "../mapAccum";
|
|
2
|
+
|
|
3
|
+
describe("mapAccum", () => {
|
|
4
|
+
it("using standard ramda test", () => {
|
|
5
|
+
const digits = ["1", "2", "3", "4"];
|
|
6
|
+
const appender = (a, b) => [a + b, a + b];
|
|
7
|
+
|
|
8
|
+
const [acc, result] = mapAccum(appender, 0, digits); //= > ['01234', ['01', '012', '0123', '01234']]
|
|
9
|
+
expect(acc).toBe("01234");
|
|
10
|
+
expect(result).toEqual(["01", "012", "0123", "01234"]);
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
it("maps and accumulates over an array", () => {
|
|
14
|
+
const fn = (acc, x) => [acc + x, x * 2];
|
|
15
|
+
const [acc, result] = mapAccum(fn, 0, [1, 2, 3]);
|
|
16
|
+
|
|
17
|
+
expect(acc).toBe(6); // final accumulator (0 + 1 + 2 + 3)
|
|
18
|
+
expect(result).toEqual([2, 4, 6]); // mapped values (acc + x*2 at each step)
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
it("returns initial accumulator for empty array", () => {
|
|
22
|
+
const fn = (acc, x) => [acc + x, acc * x];
|
|
23
|
+
const [acc, result] = mapAccum(fn, 10, []);
|
|
24
|
+
|
|
25
|
+
expect(acc).toBe(10);
|
|
26
|
+
expect(result).toEqual([]);
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
it("accumulates strings correctly", () => {
|
|
30
|
+
const fn = (acc, x) => [acc + x, acc + x];
|
|
31
|
+
const [acc, result] = mapAccum(fn, "A", ["B", "C", "D"]);
|
|
32
|
+
|
|
33
|
+
expect(acc).toBe("ABCD");
|
|
34
|
+
expect(result).toEqual(["AB", "ABC", "ABCD"]);
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
it("works with objects as accumulator", () => {
|
|
38
|
+
const fn = (acc, x) => {
|
|
39
|
+
const newAcc = { sum: acc.sum + x };
|
|
40
|
+
|
|
41
|
+
return [newAcc, newAcc.sum];
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
const [acc, result] = mapAccum(fn, { sum: 0 }, [1, 2, 3]);
|
|
45
|
+
|
|
46
|
+
expect(acc).toEqual({ sum: 6 });
|
|
47
|
+
expect(result).toEqual([1, 3, 6]);
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
it("is curried", () => {
|
|
51
|
+
const fn = (acc, x) => [acc + x, x * 2];
|
|
52
|
+
const mapWithFn = mapAccum(fn);
|
|
53
|
+
const withInit = mapWithFn(2);
|
|
54
|
+
const [acc, result] = withInit([1, 2, 3]);
|
|
55
|
+
|
|
56
|
+
expect(acc).toBe(8);
|
|
57
|
+
expect(result).toEqual([2, 4, 6]);
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
it("does not mutate the original array", () => {
|
|
61
|
+
const arr = [1, 2, 3];
|
|
62
|
+
mapAccum((acc, x) => [acc + x, acc + x], 0, arr);
|
|
63
|
+
expect(arr).toEqual([1, 2, 3]);
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
it("handles mixed types in accumulator and result", () => {
|
|
67
|
+
const fn = (acc, x) => [acc + x.length, acc + "-" + x];
|
|
68
|
+
const [acc, result] = mapAccum(fn, 0, ["a", "bb", "ccc"]);
|
|
69
|
+
|
|
70
|
+
expect(acc).toBe(6);
|
|
71
|
+
expect(result).toEqual(["0-a", "1-bb", "3-ccc"]);
|
|
72
|
+
});
|
|
73
|
+
});
|
package/utils/index.ts
CHANGED
|
@@ -16,6 +16,8 @@ export { endsWith } from "./endsWith";
|
|
|
16
16
|
|
|
17
17
|
export { take } from "./take";
|
|
18
18
|
|
|
19
|
+
export { mapAccum } from "./mapAccum";
|
|
20
|
+
|
|
19
21
|
export {
|
|
20
22
|
cloneDeep as clone,
|
|
21
23
|
flatten,
|
|
@@ -34,4 +36,9 @@ export {
|
|
|
34
36
|
last,
|
|
35
37
|
toLower,
|
|
36
38
|
isEqual as equals,
|
|
39
|
+
uniq,
|
|
40
|
+
uniqWith,
|
|
41
|
+
flowRight as compose,
|
|
42
|
+
partial,
|
|
43
|
+
reverse,
|
|
37
44
|
} from "lodash";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { curry } from "lodash";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* A native reimplementation of Ramda's mapAccum.
|
|
5
|
+
*
|
|
6
|
+
* @template A, B, C
|
|
7
|
+
* @param {(acc: A, value: B) => [A, C]} fn - Function returning [newAcc, mappedValue]
|
|
8
|
+
* @param {A} acc - Initial accumulator
|
|
9
|
+
* @param {B[]} list - List to process
|
|
10
|
+
* @returns {[A, C[]]} - Tuple of [final accumulator, mapped array]
|
|
11
|
+
*/
|
|
12
|
+
export const mapAccum = curry((fn, acc, list) => {
|
|
13
|
+
const result = [];
|
|
14
|
+
let currentAcc = acc;
|
|
15
|
+
|
|
16
|
+
for (let i = 0; i < list.length; i++) {
|
|
17
|
+
const [nextAcc, mapped] = fn(currentAcc, list[i]);
|
|
18
|
+
currentAcc = nextAcc;
|
|
19
|
+
result.push(mapped);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return [currentAcc, result];
|
|
23
|
+
});
|
|
@@ -9,10 +9,23 @@ export enum NavigationCallbackOptions {
|
|
|
9
9
|
GO_TO_SCREEN = "go_to_screen",
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
export
|
|
12
|
+
export enum ResultType {
|
|
13
|
+
login = "login",
|
|
14
|
+
logout = "logout",
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export type CallbackResult = hookCallbackArgs & {
|
|
18
|
+
options?: {
|
|
19
|
+
resultType?: ResultType;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
export type ScreenResultCallback = (args: CallbackResult) => void | undefined;
|
|
24
|
+
|
|
25
|
+
export const CALLBACK_NAVIGATION_KEY = "completion_action";
|
|
13
26
|
|
|
14
27
|
export const CALLBACK_NAVIGATION_GO_TO_SCREEN_KEY =
|
|
15
|
-
"
|
|
28
|
+
"completion_action_navigation_go_to_screen";
|
|
16
29
|
|
|
17
30
|
type NavKeys = {
|
|
18
31
|
action: NavigationCallbackOptions;
|
|
@@ -23,7 +36,7 @@ type General = Record<string, unknown>;
|
|
|
23
36
|
|
|
24
37
|
const LogPrefix = "useCallbackNavigationAction:";
|
|
25
38
|
|
|
26
|
-
const { log_info, log_verbose } = createLogger({
|
|
39
|
+
const { log_info, log_verbose, log_debug } = createLogger({
|
|
27
40
|
subsystem: "hook-navigation-callback",
|
|
28
41
|
});
|
|
29
42
|
|
|
@@ -35,50 +48,77 @@ const legacyMappingKeys = {
|
|
|
35
48
|
"quick-brick-user-account-ui-component": {
|
|
36
49
|
actionType: "callbackAction",
|
|
37
50
|
},
|
|
51
|
+
"quick-brick-login-multi-login-providers.login": {
|
|
52
|
+
actionType: "login_completion_action",
|
|
53
|
+
targetScreen: "navigate_to_login_screen",
|
|
54
|
+
},
|
|
55
|
+
"quick-brick-login-multi-login-providers.logout": {
|
|
56
|
+
actionType: "logout_completion_action",
|
|
57
|
+
targetScreen: "navigate_to_logout_screen",
|
|
58
|
+
},
|
|
59
|
+
"quick-brick-storefront": {
|
|
60
|
+
actionType: "purchase_completion_action",
|
|
61
|
+
targetScreen: "navigate_to_screen_after_purchase",
|
|
62
|
+
},
|
|
63
|
+
"zapp_login_plugin_oauth_tv_2_0.login": {
|
|
64
|
+
actionType: "login_completion_action",
|
|
65
|
+
targetScreen: "navigate_to_login_screen",
|
|
66
|
+
},
|
|
67
|
+
"zapp_login_plugin_oauth_tv_2_0.logout": {
|
|
68
|
+
actionType: "logout_completion_action",
|
|
69
|
+
targetScreen: "navigate_to_logout_screen",
|
|
70
|
+
},
|
|
38
71
|
};
|
|
39
72
|
|
|
40
|
-
const
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
const NAV_ACTIONS = Object.values(NavigationCallbackOptions) as string[];
|
|
73
|
+
const NAV_ACTIONS = (
|
|
74
|
+
Object.values(NavigationCallbackOptions) as string[]
|
|
75
|
+
).filter((value) => value !== NavigationCallbackOptions.DEFAULT);
|
|
44
76
|
|
|
45
77
|
const isNavAction = (v: unknown): v is NavigationCallbackOptions =>
|
|
46
|
-
typeof v === "string" && NAV_ACTIONS.includes(v
|
|
78
|
+
typeof v === "string" && NAV_ACTIONS.includes(v);
|
|
47
79
|
|
|
48
80
|
export const getNavigationKeys = (
|
|
49
|
-
item?: ZappUIComponent | ZappRiver
|
|
81
|
+
item?: ZappUIComponent | ZappRiver,
|
|
82
|
+
resultType: ResultType | null = null
|
|
50
83
|
): NavKeys => {
|
|
51
84
|
const general = (item?.general ?? {}) as General;
|
|
52
|
-
|
|
53
|
-
const
|
|
85
|
+
|
|
86
|
+
const pluginIdentifier = (item as any).identifier ?? item?.type ?? "";
|
|
87
|
+
|
|
88
|
+
const legacy =
|
|
89
|
+
legacyMappingKeys[`${pluginIdentifier}.${resultType}`] ??
|
|
90
|
+
legacyMappingKeys[pluginIdentifier] ??
|
|
91
|
+
{};
|
|
92
|
+
|
|
93
|
+
const actionKey = resultType
|
|
94
|
+
? `${resultType}_${CALLBACK_NAVIGATION_KEY}`
|
|
95
|
+
: CALLBACK_NAVIGATION_KEY;
|
|
54
96
|
|
|
55
97
|
const rawAction =
|
|
56
|
-
(general as General)
|
|
98
|
+
(general as General)[actionKey] ??
|
|
57
99
|
(legacy.actionType ? (general as General)[legacy.actionType] : undefined);
|
|
58
100
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
const trimmed = rawAction.trim();
|
|
63
|
-
action = isNavAction(trimmed) ? trimmed : null;
|
|
64
|
-
}
|
|
101
|
+
const action: NavigationCallbackOptions | null = isNavAction(rawAction)
|
|
102
|
+
? rawAction
|
|
103
|
+
: null;
|
|
65
104
|
|
|
66
105
|
if (!action) return null;
|
|
67
106
|
|
|
68
107
|
let targetScreenId: string | null = null;
|
|
69
108
|
|
|
70
109
|
if (action === NavigationCallbackOptions.GO_TO_SCREEN) {
|
|
110
|
+
const screenKey = resultType
|
|
111
|
+
? `${resultType}_${CALLBACK_NAVIGATION_GO_TO_SCREEN_KEY}`
|
|
112
|
+
: CALLBACK_NAVIGATION_GO_TO_SCREEN_KEY;
|
|
113
|
+
|
|
71
114
|
const screenId: string | null =
|
|
72
|
-
((general as General)[
|
|
115
|
+
((general as General)[screenKey] as string) ??
|
|
73
116
|
(legacy.targetScreen
|
|
74
117
|
? ((general as General)[legacy.targetScreen] as string)
|
|
75
118
|
: undefined);
|
|
76
119
|
|
|
77
120
|
if (screenId) {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
targetScreenId =
|
|
81
|
-
trimmedTargetScreenId.length > 0 ? trimmedTargetScreenId : null;
|
|
121
|
+
targetScreenId = screenId.length > 0 ? screenId : null;
|
|
82
122
|
}
|
|
83
123
|
}
|
|
84
124
|
|
|
@@ -87,10 +127,12 @@ export const getNavigationKeys = (
|
|
|
87
127
|
|
|
88
128
|
export const useCallbackNavigationAction = (
|
|
89
129
|
item?: ZappUIComponent | ZappRiver
|
|
90
|
-
):
|
|
130
|
+
): ((
|
|
131
|
+
args: CallbackResult,
|
|
132
|
+
hookCallback?: hookCallback
|
|
133
|
+
) => void | undefined) => {
|
|
91
134
|
const navigation = useNavigation();
|
|
92
135
|
const rivers = useRivers();
|
|
93
|
-
const enabled = Boolean(item?.general?.[CALLBACK_NAVIGATION_KEY]);
|
|
94
136
|
const screenContext = useScreenContext();
|
|
95
137
|
|
|
96
138
|
const overrideCallbackFromComponent = useMemo(() => {
|
|
@@ -105,11 +147,36 @@ export const useCallbackNavigationAction = (
|
|
|
105
147
|
}
|
|
106
148
|
|
|
107
149
|
const callbackAction = useCallback<hookCallback>(
|
|
108
|
-
(
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
150
|
+
(args: CallbackResult, hookCallback: hookCallback = null) => {
|
|
151
|
+
if (!args.success) {
|
|
152
|
+
log_debug(
|
|
153
|
+
`${LogPrefix} callback called with no success, use original callback`
|
|
154
|
+
);
|
|
155
|
+
|
|
156
|
+
hookCallback?.(args);
|
|
157
|
+
|
|
158
|
+
return;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
if (args.cancelled) {
|
|
162
|
+
log_debug(
|
|
163
|
+
`${LogPrefix} callback called but cancelled, use original callback`
|
|
164
|
+
);
|
|
165
|
+
|
|
166
|
+
hookCallback?.(args);
|
|
167
|
+
|
|
168
|
+
return;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
const data = getNavigationKeys(item, args.options?.resultType ?? null);
|
|
172
|
+
|
|
173
|
+
if (!data) {
|
|
174
|
+
hookCallback?.(args);
|
|
175
|
+
|
|
176
|
+
return;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
hookCallback?.({ ...args, success: false, cancelled: true });
|
|
113
180
|
|
|
114
181
|
switch (data.action) {
|
|
115
182
|
case NavigationCallbackOptions.GO_BACK: {
|
|
@@ -160,5 +227,5 @@ export const useCallbackNavigationAction = (
|
|
|
160
227
|
[item, navigation, rivers]
|
|
161
228
|
);
|
|
162
229
|
|
|
163
|
-
return
|
|
230
|
+
return overrideCallbackFromComponent || callbackAction;
|
|
164
231
|
};
|
|
@@ -5,20 +5,32 @@ const NavigationCallbackOptions = {
|
|
|
5
5
|
GO_TO_SCREEN: "go_to_screen",
|
|
6
6
|
};
|
|
7
7
|
|
|
8
|
-
const
|
|
8
|
+
const ResultType = {
|
|
9
|
+
login: "login",
|
|
10
|
+
logout: "logout",
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
const CALLBACK_NAVIGATION_KEY = "completion_action";
|
|
9
14
|
|
|
10
15
|
const CALLBACK_NAVIGATION_GO_TO_SCREEN_KEY =
|
|
11
|
-
"
|
|
16
|
+
"completion_action_navigation_go_to_screen";
|
|
17
|
+
|
|
18
|
+
const callbackKeyPrefix = (key, prefix, keySeparator = "_") =>
|
|
19
|
+
prefix ? `${prefix}${keySeparator}${key}` : key;
|
|
12
20
|
|
|
13
|
-
const extendManifestWithHookCallback = () => ({
|
|
21
|
+
const extendManifestWithHookCallback = (prefix = null) => ({
|
|
14
22
|
group: true,
|
|
15
23
|
label: "CallBack Navigation",
|
|
16
24
|
folded: true,
|
|
17
25
|
fields: [
|
|
18
26
|
{
|
|
19
27
|
type: "select",
|
|
20
|
-
key: CALLBACK_NAVIGATION_KEY,
|
|
21
|
-
label:
|
|
28
|
+
key: callbackKeyPrefix(CALLBACK_NAVIGATION_KEY, prefix),
|
|
29
|
+
label: callbackKeyPrefix(
|
|
30
|
+
"Callback Navigation",
|
|
31
|
+
prefix?.toUpperCase(),
|
|
32
|
+
" "
|
|
33
|
+
),
|
|
22
34
|
label_tooltip:
|
|
23
35
|
"Defines what navigation action should be performed after the callback is called.",
|
|
24
36
|
options: [
|
|
@@ -43,13 +55,17 @@ const extendManifestWithHookCallback = () => ({
|
|
|
43
55
|
},
|
|
44
56
|
{
|
|
45
57
|
type: "screen_selector",
|
|
46
|
-
key: CALLBACK_NAVIGATION_GO_TO_SCREEN_KEY,
|
|
47
|
-
label:
|
|
58
|
+
key: callbackKeyPrefix(CALLBACK_NAVIGATION_GO_TO_SCREEN_KEY, prefix),
|
|
59
|
+
label: callbackKeyPrefix(
|
|
60
|
+
"Navigate to screen",
|
|
61
|
+
prefix?.toUpperCase(),
|
|
62
|
+
" "
|
|
63
|
+
),
|
|
48
64
|
label_tooltip: "Screen you wish to navigate to after success purchase",
|
|
49
65
|
rules: "conditional",
|
|
50
66
|
conditional_fields: [
|
|
51
67
|
{
|
|
52
|
-
key: `general/${CALLBACK_NAVIGATION_KEY}`,
|
|
68
|
+
key: `general/${callbackKeyPrefix(CALLBACK_NAVIGATION_KEY, prefix)}`,
|
|
53
69
|
condition_value: NavigationCallbackOptions.GO_TO_SCREEN,
|
|
54
70
|
},
|
|
55
71
|
],
|
|
@@ -57,4 +73,4 @@ const extendManifestWithHookCallback = () => ({
|
|
|
57
73
|
],
|
|
58
74
|
});
|
|
59
75
|
|
|
60
|
-
module.exports = { extendManifestWithHookCallback };
|
|
76
|
+
module.exports = { extendManifestWithHookCallback, ResultType };
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { useCallback } from "react";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
CallbackResult,
|
|
4
|
+
useCallbackNavigationAction,
|
|
5
|
+
} from "./callbackNavigationAction";
|
|
3
6
|
|
|
4
7
|
export const useCallbackActions = (
|
|
5
8
|
item?: ZappUIComponent | ZappRiver,
|
|
@@ -8,14 +11,8 @@ export const useCallbackActions = (
|
|
|
8
11
|
const navigationAction = useCallbackNavigationAction(item);
|
|
9
12
|
|
|
10
13
|
return useCallback(
|
|
11
|
-
async (data:
|
|
12
|
-
|
|
13
|
-
hookCallback?.({ ...data, success: false, cancelled: true });
|
|
14
|
-
|
|
15
|
-
navigationAction(data);
|
|
16
|
-
} else {
|
|
17
|
-
hookCallback?.(data);
|
|
18
|
-
}
|
|
14
|
+
async (data: CallbackResult) => {
|
|
15
|
+
navigationAction(data, hookCallback);
|
|
19
16
|
},
|
|
20
17
|
[navigationAction, hookCallback]
|
|
21
18
|
);
|