@applicaster/zapp-react-native-ui-components 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.
- package/Components/AudioPlayer/tv/__tests__/audioPlayer.test.js +19 -0
- package/Components/AudioPlayer/tv/__tests__/index.test.tsx +120 -0
- package/Components/AudioPlayer/tv/index.tsx +5 -1
- package/Components/BackgroundImage/BackgroundImage.android.tv.tsx +28 -0
- package/Components/BackgroundImage/BackgroundImage.ios.tv.tsx +24 -0
- package/Components/BackgroundImage/BackgroundImage.tsx +42 -0
- package/Components/BackgroundImage/index.ts +1 -0
- package/Components/CellRendererResolver/index.ts +2 -2
- package/Components/ComponentResolver/__tests__/componentResolver.test.js +1 -1
- package/Components/FocusableGroup/FocusableTvOS.tsx +11 -7
- package/Components/GeneralContentScreen/GeneralContentScreenHookAdapter.tsx +39 -0
- package/Components/GeneralContentScreen/__tests__/GeneralContentScreenHookAdapter.test.tsx +64 -0
- package/Components/GeneralContentScreen/__tests__/HookContentFocusGroup.web.test.tsx +91 -0
- package/Components/GeneralContentScreen/hookAdapter/__tests__/networkService.test.ts +74 -0
- package/Components/GeneralContentScreen/hookAdapter/__tests__/runInBackground.test.ts +139 -0
- package/Components/GeneralContentScreen/hookAdapter/__tests__/validationHelper.test.ts +124 -0
- package/Components/GeneralContentScreen/hookAdapter/logger.ts +6 -0
- package/Components/GeneralContentScreen/hookAdapter/networkService.ts +53 -0
- package/Components/GeneralContentScreen/hookAdapter/runInBackground.ts +48 -0
- package/Components/GeneralContentScreen/hookAdapter/validationHelper.ts +72 -0
- package/Components/GeneralContentScreen/hookFocus/index.tsx +13 -0
- package/Components/GeneralContentScreen/hookFocus/index.web.tsx +69 -0
- package/Components/GeneralContentScreen/index.ts +2 -0
- package/Components/Layout/FullWidthRow.tsx +38 -0
- package/Components/Layout/TV/ScreenContainer.tsx +5 -0
- package/Components/Layout/TV/__tests__/__snapshots__/index.test.tsx.snap +0 -1
- package/Components/Layout/TV/index.tsx +3 -4
- package/Components/Layout/TV/index.web.tsx +2 -3
- package/Components/MasterCell/DefaultComponents/ActionButton.tsx +16 -5
- package/Components/MasterCell/DefaultComponents/ActionButtonsCore/__tests__/placement.test.ts +47 -21
- package/Components/MasterCell/DefaultComponents/ActionButtonsCore/placement.ts +34 -6
- package/Components/MasterCell/DefaultComponents/ButtonContainerView/index.tsx +1 -1
- package/Components/MasterCell/DefaultComponents/Image/hoc/utils/__tests__/withDimensions.test.ts +420 -125
- package/Components/MasterCell/DefaultComponents/Image/hoc/utils/index.ts +114 -19
- package/Components/MasterCell/DefaultComponents/Image/hoc/withDimensions.tsx +19 -8
- package/Components/MasterCell/DefaultComponents/ImageContainer/index.tsx +5 -3
- package/Components/MasterCell/DefaultComponents/PressableView.tsx +29 -9
- package/Components/MasterCell/DefaultComponents/Text/hooks/useText.ts +4 -0
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/ActionButton.tsx +154 -100
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/AssetComponent.tsx +15 -4
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/Button.ts +56 -22
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/Spacer.ts +6 -4
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/TextLabelsContainer.ts +3 -1
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/__tests__/PressableView.test.tsx +32 -21
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/__tests__/index.test.ts +15 -4
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/index.ts +23 -16
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/utils/__tests__/insertButtons.test.ts +8 -3
- package/Components/MasterCell/DefaultComponents/mobile/MobileActionButtons/utils/index.ts +2 -2
- package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/utils/__tests__/insertButtonsBetweenLabels.test.ts +45 -13
- package/Components/MasterCell/DefaultComponents/tv/TvActionButtons/utils/index.ts +2 -2
- package/Components/MasterCell/contexts/PressedStateContext.ts +3 -0
- package/Components/MasterCell/dataAdapter.ts +15 -5
- package/Components/MasterCell/hooks/index.ts +2 -0
- package/Components/MasterCell/hooks/usePressedState.ts +4 -0
- package/Components/MasterCell/index.tsx +30 -5
- package/Components/MasterCell/utils/__tests__/resolveColor.test.js +169 -132
- package/Components/MasterCell/utils/__tests__/resolveColorForProp.test.js +92 -0
- package/Components/MasterCell/utils/index.ts +85 -46
- package/Components/ModalComponent/AudioPlayer/Components/Action.tsx +314 -0
- package/Components/ModalComponent/AudioPlayer/Components/Button.tsx +395 -0
- package/Components/ModalComponent/AudioPlayer/Components/Header.tsx +763 -0
- package/Components/ModalComponent/AudioPlayer/Components/Input.tsx +653 -0
- package/Components/ModalComponent/AudioPlayer/Components/Item.tsx +874 -0
- package/Components/ModalComponent/AudioPlayer/Components/NowPlayingHeaderSection.tsx +89 -0
- package/Components/ModalComponent/AudioPlayer/Components/index.ts +11 -0
- package/Components/ModalComponent/AudioPlayer/utils/mergeStyles.ts +199 -0
- package/Components/ModalComponent/BottomSheetDragArea.tsx +33 -0
- package/Components/ModalComponent/BottomSheetModalContent.tsx +386 -42
- package/Components/ModalComponent/Button/index.tsx +5 -3
- package/Components/ModalComponent/Header/index.tsx +20 -7
- package/Components/ModalComponent/Header/utils.ts +1 -1
- package/Components/ModalComponent/ModalBlocksStyleContext.tsx +10 -0
- package/Components/ModalComponent/SortableList.tsx +142 -0
- package/Components/ModalComponent/TextInputContent.tsx +100 -0
- package/Components/ModalComponent/__tests__/BottomSheetDragArea.test.tsx +74 -0
- package/Components/ModalComponent/__tests__/BottomSheetModalContent.test.tsx +238 -0
- package/Components/ModalComponent/__tests__/TextInputContent.test.tsx +120 -0
- package/Components/ModalComponent/__tests__/showTextInput.test.ts +95 -0
- package/Components/ModalComponent/index.tsx +11 -0
- package/Components/ModalComponent/presets/__tests__/getCell.test.ts +66 -0
- package/Components/ModalComponent/presets/dynamicCollectionCell.tsx +78 -0
- package/Components/ModalComponent/presets/index.ts +27 -0
- package/Components/ModalComponent/presets/selectableCell.tsx +28 -0
- package/Components/ModalComponent/presets/standardCell.tsx +41 -0
- package/Components/ModalComponent/presets/types.ts +35 -0
- package/Components/ModalComponent/showTextInput.ts +43 -0
- package/Components/ModalComponent/utils.ts +76 -20
- package/Components/OfflineHandler/__tests__/__snapshots__/index.test.tsx.snap +4 -85
- package/Components/OfflineHandler/__tests__/index.test.tsx +78 -18
- package/Components/OfflineHandler/hooks.ts +123 -0
- package/Components/OfflineHandler/index.tsx +51 -73
- package/Components/OfflineHandler/utils/index.ts +1 -13
- package/Components/PlayerContainer/PlayerContainer.tsx +25 -17
- package/Components/PlayerContainer/ProgramInfo/index.tsx +3 -4
- package/Components/PlayerContainer/__tests__/PlayerContainer.test.tsx +337 -0
- package/Components/PreloaderWrapper/index.tsx +1 -1
- package/Components/River/ComponentsMap/ComponentsMap.tsx +2 -2
- package/Components/River/__tests__/__snapshots__/componentsMap.test.js.snap +3 -15
- package/Components/Screen/TV/hooks/__tests__/useAfterPaint.test.ts +60 -0
- package/Components/Screen/TV/hooks/index.ts +2 -0
- package/Components/Screen/TV/hooks/useAfterPaint.ts +23 -0
- package/Components/Screen/TV/index.web.tsx +16 -7
- package/Components/Screen/index.tsx +8 -4
- package/Components/ScreenFeedLoader/ScreenFeedLoader.tsx +5 -3
- package/Components/ScreenResolverFeedProvider/ScreenResolverFeedProvider.tsx +1 -1
- package/Components/ScreenRevealManager/Overlay.tsx +34 -0
- package/Components/ScreenRevealManager/__tests__/Overlay.test.tsx +88 -0
- package/Components/ScreenRevealManager/withScreenRevealManager.tsx +8 -19
- package/Components/TopCutoffOverlay/index.tsx +2 -2
- package/Components/Transitioner/Transitioner.tsx +28 -17
- package/Components/VideoLive/LiveImageManager.ts +41 -43
- package/Components/VideoModal/utils.ts +6 -1
- package/Components/ZappFrameworkComponents/BarView/BarView.tsx +12 -5
- package/Components/ZappFrameworkComponents/BarView/__tests__/BarView.test.tsx +2 -2
- package/Contexts/CachedDimensionsContext/__tests__/index.test.ts +154 -0
- package/Contexts/CachedDimensionsContext/index.ts +17 -2
- package/Helpers/ComponentCellSelectionHelper/index.js +0 -6
- package/Helpers/index.js +7 -40
- package/package.json +6 -5
- package/Components/Layout/TV/LayoutBackground.tsx +0 -31
- package/Components/OfflineHandler/NotificationView/NotificationView.lg.tsx +0 -112
- package/Components/OfflineHandler/NotificationView/NotificationView.samsung.tsx +0 -107
- package/Components/OfflineHandler/NotificationView/NotificationView.tsx +0 -153
- package/Components/OfflineHandler/NotificationView/__tests__/index.test.tsx +0 -66
- package/Components/OfflineHandler/NotificationView/utils.ts +0 -34
- package/Components/Screen/utils.ts +0 -16
- package/Helpers/Analytics/index.js +0 -95
- /package/Components/MasterCell/DefaultComponents/ButtonContainerView/{index.tv.android.tsx → index.android.tv.tsx} +0 -0
- /package/Decorators/ZappPipesDataConnector/__tests__/{Hero.js → Hero.tsx} +0 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import {
|
|
2
|
+
actionExecutor,
|
|
3
|
+
ActionResult,
|
|
4
|
+
} from "@applicaster/zapp-react-native-utils/actionsExecutor/ActionExecutor";
|
|
5
|
+
import { TextInputContent } from "../TextInputContent";
|
|
6
|
+
import { showTextInputAction } from "../showTextInput";
|
|
7
|
+
|
|
8
|
+
jest.mock(
|
|
9
|
+
"@applicaster/zapp-react-native-utils/actionsExecutor/ActionExecutor",
|
|
10
|
+
() => ({
|
|
11
|
+
actionExecutor: {
|
|
12
|
+
handleAction: jest.fn().mockResolvedValue("success"),
|
|
13
|
+
},
|
|
14
|
+
ActionResult: { Success: "success", Error: "error" },
|
|
15
|
+
})
|
|
16
|
+
);
|
|
17
|
+
|
|
18
|
+
jest.mock("../TextInputContent", () => ({
|
|
19
|
+
TextInputContent: function MockTextInputContent() {
|
|
20
|
+
return null;
|
|
21
|
+
},
|
|
22
|
+
}));
|
|
23
|
+
|
|
24
|
+
describe("showTextInputAction", () => {
|
|
25
|
+
beforeEach(() => {
|
|
26
|
+
jest.clearAllMocks();
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
it("delegates to openBottomSheet with TextInputContent as body-only component", async () => {
|
|
30
|
+
const action = {
|
|
31
|
+
type: "showTextInput",
|
|
32
|
+
options: {
|
|
33
|
+
headerTitle: "Create Playlist",
|
|
34
|
+
inputLabel: "Name your playlist",
|
|
35
|
+
defaultValue: "",
|
|
36
|
+
buttonLabel: "Create",
|
|
37
|
+
actions: [
|
|
38
|
+
{
|
|
39
|
+
type: "sendCloudEvent",
|
|
40
|
+
options: {
|
|
41
|
+
url: "https://example.com/events",
|
|
42
|
+
type: "com.applicaster.collection.create.v1",
|
|
43
|
+
data: {},
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
type: "showToast",
|
|
48
|
+
options: {
|
|
49
|
+
message: "Playlist created.",
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
},
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
const result = await showTextInputAction(action as any);
|
|
57
|
+
|
|
58
|
+
expect(result).toBe(ActionResult.Success);
|
|
59
|
+
expect(actionExecutor.handleAction).toHaveBeenCalledTimes(1);
|
|
60
|
+
|
|
61
|
+
expect(actionExecutor.handleAction).toHaveBeenCalledWith(
|
|
62
|
+
{
|
|
63
|
+
type: "openBottomSheet",
|
|
64
|
+
options: {
|
|
65
|
+
header: {
|
|
66
|
+
title: "Create Playlist",
|
|
67
|
+
},
|
|
68
|
+
content: {
|
|
69
|
+
component: TextInputContent,
|
|
70
|
+
props: {
|
|
71
|
+
inputLabel: "Name your playlist",
|
|
72
|
+
defaultValue: "",
|
|
73
|
+
buttonLabel: "Create",
|
|
74
|
+
actions: action.options.actions,
|
|
75
|
+
},
|
|
76
|
+
},
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
undefined
|
|
80
|
+
);
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
it("returns Error when required options are missing", async () => {
|
|
84
|
+
const action = {
|
|
85
|
+
type: "showTextInput",
|
|
86
|
+
options: {
|
|
87
|
+
headerTitle: "Create Playlist",
|
|
88
|
+
},
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
const result = await showTextInputAction(action as any);
|
|
92
|
+
expect(result).toBe(ActionResult.Error);
|
|
93
|
+
expect(actionExecutor.handleAction).not.toHaveBeenCalled();
|
|
94
|
+
});
|
|
95
|
+
});
|
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
import React, { useCallback, useState } from "react";
|
|
2
|
+
import { actionExecutor } from "@applicaster/zapp-react-native-utils/actionsExecutor/ActionExecutor";
|
|
2
3
|
|
|
3
4
|
import { BasicMeasurementsPortal as MeasurementsPortal } from "@applicaster/zapp-react-native-ui-components/Components/MeasurmentsPortal";
|
|
4
5
|
import { BottomSheetModalContent } from "./BottomSheetModalContent";
|
|
6
|
+
import { showTextInputAction } from "./showTextInput";
|
|
7
|
+
|
|
8
|
+
actionExecutor.registerAction("showTextInput", showTextInputAction);
|
|
9
|
+
|
|
10
|
+
export { SortableList, type SortableListProps } from "./SortableList";
|
|
11
|
+
|
|
12
|
+
export {
|
|
13
|
+
TextInputContent,
|
|
14
|
+
type TextInputContentProps,
|
|
15
|
+
} from "./TextInputContent";
|
|
5
16
|
|
|
6
17
|
export type PluginConfiguration = {
|
|
7
18
|
[key: string]: any;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { getCell } from "../index";
|
|
2
|
+
import { standardCell } from "../standardCell";
|
|
3
|
+
import { selectableCell } from "../selectableCell";
|
|
4
|
+
import { dynamicCollectionCell } from "../dynamicCollectionCell";
|
|
5
|
+
import { mapMenuItemToPlaylistData } from "../../AudioPlayer/Components/Item";
|
|
6
|
+
|
|
7
|
+
describe("getCell", () => {
|
|
8
|
+
it("returns selectable cell for collection_selector", () => {
|
|
9
|
+
expect(getCell("collection_selector")).toBe(selectableCell);
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
it("returns selectable cell for preference_editor", () => {
|
|
13
|
+
expect(getCell("preference_editor")).toBe(selectableCell);
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it("returns standard cell when role is undefined", () => {
|
|
17
|
+
expect(getCell(undefined)).toBe(standardCell);
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it("returns standard cell for unknown roles", () => {
|
|
21
|
+
expect(getCell("unknown_role")).toBe(standardCell);
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it("returns the dynamic collection cell for dynamic_collection", () => {
|
|
25
|
+
expect(getCell("dynamic_collection")).toBe(dynamicCollectionCell);
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
it("does not use behavior to select the cell family", () => {
|
|
29
|
+
expect(getCell(undefined, { selectMode: "multi" })).toBe(standardCell);
|
|
30
|
+
|
|
31
|
+
expect(getCell("collection_selector", { selectMode: "single" })).toBe(
|
|
32
|
+
selectableCell
|
|
33
|
+
);
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
describe("mapMenuItemToPlaylistData", () => {
|
|
38
|
+
const item = {
|
|
39
|
+
title: "Playlist 1",
|
|
40
|
+
summary: "5 items",
|
|
41
|
+
icon: "https://example.com/icon.png",
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
it("defaults to multiSelect trailing button when selectMode is multi or undefined", () => {
|
|
45
|
+
const data1 = mapMenuItemToPlaylistData(item, { selectMode: "multi" });
|
|
46
|
+
expect(data1.trailingButton).toBe("multiSelect");
|
|
47
|
+
|
|
48
|
+
const data2 = mapMenuItemToPlaylistData(item);
|
|
49
|
+
expect(data2.trailingButton).toBe("multiSelect");
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
it("omits trailing button when behavior selectMode is none", () => {
|
|
53
|
+
const data = mapMenuItemToPlaylistData(item, { selectMode: "none" });
|
|
54
|
+
expect(data.trailingButton).toBeUndefined();
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
it("omits trailing button when item trailingButton is explicitly none", () => {
|
|
58
|
+
const itemWithNone = { ...item, trailingButton: "none" };
|
|
59
|
+
|
|
60
|
+
const data = mapMenuItemToPlaylistData(itemWithNone, {
|
|
61
|
+
selectMode: "multi",
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
expect(data.trailingButton).toBeUndefined();
|
|
65
|
+
});
|
|
66
|
+
});
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {
|
|
3
|
+
AudioPlayerTrackItem,
|
|
4
|
+
VARIANT_QUEUED_ITEM,
|
|
5
|
+
ItemData,
|
|
6
|
+
} from "../AudioPlayer/Components/Item";
|
|
7
|
+
import type { CellRenderer, RenderItemArgs } from "./types";
|
|
8
|
+
import {
|
|
9
|
+
MenuItem,
|
|
10
|
+
OPERATIONS,
|
|
11
|
+
hasOperation,
|
|
12
|
+
} from "@applicaster/zapp-react-native-utils/modalState";
|
|
13
|
+
|
|
14
|
+
function mapMenuItemToDynamicData(
|
|
15
|
+
item: MenuItem,
|
|
16
|
+
operations: string[]
|
|
17
|
+
): ItemData {
|
|
18
|
+
const hasRemove = hasOperation(operations, OPERATIONS.REMOVE);
|
|
19
|
+
const hasReorder = hasOperation(operations, OPERATIONS.REORDER);
|
|
20
|
+
|
|
21
|
+
const title =
|
|
22
|
+
typeof item?.title === "string"
|
|
23
|
+
? item.title
|
|
24
|
+
: item?.title != null
|
|
25
|
+
? String(item.title)
|
|
26
|
+
: "";
|
|
27
|
+
|
|
28
|
+
const summary =
|
|
29
|
+
typeof item?.summary === "string"
|
|
30
|
+
? item.summary
|
|
31
|
+
: item?.summary != null
|
|
32
|
+
? String(item.summary)
|
|
33
|
+
: "";
|
|
34
|
+
|
|
35
|
+
return {
|
|
36
|
+
imageUri: item?.icon,
|
|
37
|
+
textLabel1: title,
|
|
38
|
+
textLabel2: summary,
|
|
39
|
+
leadingButton: hasRemove ? "remove" : undefined,
|
|
40
|
+
trailingButton: hasReorder ? "drag" : undefined,
|
|
41
|
+
isSelected: item?.isSelected,
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export const dynamicCollectionCell: CellRenderer = {
|
|
46
|
+
renderItem: ({
|
|
47
|
+
item,
|
|
48
|
+
index,
|
|
49
|
+
onPress,
|
|
50
|
+
context,
|
|
51
|
+
renderHandle,
|
|
52
|
+
}: RenderItemArgs) => {
|
|
53
|
+
const { editableCollection } = context;
|
|
54
|
+
const operations = editableCollection?.operations || [];
|
|
55
|
+
|
|
56
|
+
const handleRemove = () => {
|
|
57
|
+
if (editableCollection?.remove) {
|
|
58
|
+
editableCollection.remove(index);
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
const handleDrag = () => {
|
|
63
|
+
// Drag is managed by SortableList drag handle context
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
return (
|
|
67
|
+
<AudioPlayerTrackItem
|
|
68
|
+
key={item.id}
|
|
69
|
+
configuration={VARIANT_QUEUED_ITEM}
|
|
70
|
+
data={mapMenuItemToDynamicData(item, operations)}
|
|
71
|
+
onPress={() => onPress(item)}
|
|
72
|
+
onLeadingButtonPress={handleRemove}
|
|
73
|
+
onTrailingButtonPress={handleDrag}
|
|
74
|
+
renderHandle={renderHandle}
|
|
75
|
+
/>
|
|
76
|
+
);
|
|
77
|
+
},
|
|
78
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { SelectionBehavior } from "@applicaster/zapp-react-native-utils/modalState";
|
|
2
|
+
import { selectableCell } from "./selectableCell";
|
|
3
|
+
import { standardCell } from "./standardCell";
|
|
4
|
+
import type { CellRenderer } from "./types";
|
|
5
|
+
|
|
6
|
+
export type { CellRenderer, RenderItemArgs, SheetRenderContext } from "./types";
|
|
7
|
+
|
|
8
|
+
export { standardCell } from "./standardCell";
|
|
9
|
+
|
|
10
|
+
export { selectableCell } from "./selectableCell";
|
|
11
|
+
|
|
12
|
+
import { dynamicCollectionCell } from "./dynamicCollectionCell";
|
|
13
|
+
|
|
14
|
+
const SELECTION_ROLES = new Set(["collection_selector", "preference_editor"]);
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Resolve the row cell from feed role (+ behavior for future config only).
|
|
18
|
+
* Unknown / none -> standard Button cell.
|
|
19
|
+
*/
|
|
20
|
+
export const getCell = (
|
|
21
|
+
role?: string,
|
|
22
|
+
_behavior?: SelectionBehavior
|
|
23
|
+
): CellRenderer => {
|
|
24
|
+
if (role === "dynamic_collection") return dynamicCollectionCell;
|
|
25
|
+
|
|
26
|
+
return role && SELECTION_ROLES.has(role) ? selectableCell : standardCell;
|
|
27
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import {
|
|
3
|
+
AudioPlayerTrackItem,
|
|
4
|
+
mapMenuItemToPlaylistData,
|
|
5
|
+
VARIANT_PLAYLIST_ITEM,
|
|
6
|
+
} from "../AudioPlayer/Components/Item";
|
|
7
|
+
import type { CellRenderer } from "./types";
|
|
8
|
+
|
|
9
|
+
export const selectableCell: CellRenderer = {
|
|
10
|
+
renderItem: ({ item, onPress, context }) => (
|
|
11
|
+
<AudioPlayerTrackItem
|
|
12
|
+
key={item.id}
|
|
13
|
+
configuration={VARIANT_PLAYLIST_ITEM}
|
|
14
|
+
data={mapMenuItemToPlaylistData(item, context?.behavior)}
|
|
15
|
+
onPress={() => onPress(item)}
|
|
16
|
+
onTrailingButtonPress={
|
|
17
|
+
item.secondaryAction?.action
|
|
18
|
+
? () =>
|
|
19
|
+
onPress({
|
|
20
|
+
id: `${item.id}_secondary`,
|
|
21
|
+
title: item.title,
|
|
22
|
+
action: item.secondaryAction!.action,
|
|
23
|
+
})
|
|
24
|
+
: undefined
|
|
25
|
+
}
|
|
26
|
+
/>
|
|
27
|
+
),
|
|
28
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import type { CellRenderer } from "./types";
|
|
3
|
+
|
|
4
|
+
export const standardCell: CellRenderer = {
|
|
5
|
+
renderItem: ({ item, onPress, context }) => {
|
|
6
|
+
if (!item) {
|
|
7
|
+
return null;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const {
|
|
11
|
+
theme,
|
|
12
|
+
ButtonComponent,
|
|
13
|
+
current_selection,
|
|
14
|
+
iconBaseProps,
|
|
15
|
+
itemBaseProps,
|
|
16
|
+
labelBaseProps,
|
|
17
|
+
getSelectedItemIcon,
|
|
18
|
+
getDefaultItemIcon,
|
|
19
|
+
iconPlacement,
|
|
20
|
+
} = context;
|
|
21
|
+
|
|
22
|
+
return (
|
|
23
|
+
<ButtonComponent
|
|
24
|
+
key={item.id}
|
|
25
|
+
configuration={theme}
|
|
26
|
+
selectedItem={current_selection}
|
|
27
|
+
item={item}
|
|
28
|
+
onPress={onPress}
|
|
29
|
+
label={
|
|
30
|
+
theme[(item as any)?.label] ?? ((item as any)?.label || item?.title)
|
|
31
|
+
}
|
|
32
|
+
iconBaseProps={iconBaseProps}
|
|
33
|
+
itemBaseProps={itemBaseProps}
|
|
34
|
+
labelBaseProps={labelBaseProps}
|
|
35
|
+
selectedItemIcon={getSelectedItemIcon(theme)}
|
|
36
|
+
defaultItemIcon={getDefaultItemIcon(theme)}
|
|
37
|
+
iconPlacement={iconPlacement}
|
|
38
|
+
/>
|
|
39
|
+
);
|
|
40
|
+
},
|
|
41
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type React from "react";
|
|
2
|
+
import type {
|
|
3
|
+
MenuItem,
|
|
4
|
+
SelectionBehavior,
|
|
5
|
+
} from "@applicaster/zapp-react-native-utils/modalState";
|
|
6
|
+
import type { EditableCollection } from "@applicaster/zapp-react-native-utils/modalState/EditableCollection";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Extra props row renderers need.
|
|
10
|
+
*/
|
|
11
|
+
export type SheetRenderContext = {
|
|
12
|
+
theme: any;
|
|
13
|
+
ButtonComponent: React.ComponentType<any>;
|
|
14
|
+
current_selection?: any;
|
|
15
|
+
iconBaseProps: any;
|
|
16
|
+
itemBaseProps: any;
|
|
17
|
+
labelBaseProps: any;
|
|
18
|
+
getSelectedItemIcon: (theme: any) => any;
|
|
19
|
+
getDefaultItemIcon: (theme: any) => any;
|
|
20
|
+
iconPlacement?: "left" | "right";
|
|
21
|
+
editableCollection?: EditableCollection | null;
|
|
22
|
+
behavior?: SelectionBehavior;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
export type RenderItemArgs = {
|
|
26
|
+
item: MenuItem;
|
|
27
|
+
index: number;
|
|
28
|
+
onPress: (item: MenuItem) => void;
|
|
29
|
+
context: SheetRenderContext;
|
|
30
|
+
renderHandle?: (children: React.ReactElement) => React.ReactElement;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export type CellRenderer = {
|
|
34
|
+
renderItem: (args: RenderItemArgs) => React.ReactNode;
|
|
35
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import {
|
|
2
|
+
actionExecutor,
|
|
3
|
+
ActionResult,
|
|
4
|
+
} from "@applicaster/zapp-react-native-utils/actionsExecutor/ActionExecutor";
|
|
5
|
+
import { TextInputContent } from "./TextInputContent";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Opens a text-input bottom sheet driven by action.options.
|
|
9
|
+
* Uses openBottomSheet with content.component as body-only UI;
|
|
10
|
+
* standard ModalHeader (dismiss x) is provided by ModalComponent.
|
|
11
|
+
*/
|
|
12
|
+
export async function showTextInputAction(
|
|
13
|
+
action: ActionType,
|
|
14
|
+
context?: Record<string, any>
|
|
15
|
+
): Promise<ActionResult> {
|
|
16
|
+
const { headerTitle, inputLabel, defaultValue, buttonLabel, actions } =
|
|
17
|
+
action.options || {};
|
|
18
|
+
|
|
19
|
+
if (!headerTitle || !buttonLabel || !actions || !actions.length) {
|
|
20
|
+
return ActionResult.Error;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
return actionExecutor.handleAction(
|
|
24
|
+
{
|
|
25
|
+
type: "openBottomSheet",
|
|
26
|
+
options: {
|
|
27
|
+
header: {
|
|
28
|
+
title: headerTitle,
|
|
29
|
+
},
|
|
30
|
+
content: {
|
|
31
|
+
component: TextInputContent,
|
|
32
|
+
props: {
|
|
33
|
+
inputLabel,
|
|
34
|
+
defaultValue: defaultValue ?? "",
|
|
35
|
+
buttonLabel,
|
|
36
|
+
actions,
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
context
|
|
42
|
+
);
|
|
43
|
+
}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { platformSelect } from "@applicaster/zapp-react-native-utils/reactUtils";
|
|
2
|
+
import {
|
|
3
|
+
toNumberWithDefault,
|
|
4
|
+
toNumberWithDefaultZero,
|
|
5
|
+
} from "@applicaster/zapp-react-native-utils/numberUtils";
|
|
2
6
|
import { PluginConfiguration } from "./";
|
|
3
7
|
import { ItemIconProps } from "./Button/ItemIcon";
|
|
4
8
|
import { ItemLabelProps } from "./Button/ItemLabel";
|
|
@@ -6,7 +10,8 @@ import { ItemProps } from "./Button/Item";
|
|
|
6
10
|
|
|
7
11
|
export function defaultItemProps(
|
|
8
12
|
config: PluginConfiguration,
|
|
9
|
-
maxWidth: number
|
|
13
|
+
maxWidth: number,
|
|
14
|
+
blockItemStyle?: Record<string, any>
|
|
10
15
|
): ItemProps {
|
|
11
16
|
const {
|
|
12
17
|
modal_bottom_sheet_item_background_color,
|
|
@@ -24,19 +29,31 @@ export function defaultItemProps(
|
|
|
24
29
|
modal_bottom_sheet_item_padding_top,
|
|
25
30
|
} = config;
|
|
26
31
|
|
|
32
|
+
const bgDefault = blockItemStyle?.background?.default;
|
|
33
|
+
|
|
27
34
|
return {
|
|
28
|
-
backgroundColor:
|
|
35
|
+
backgroundColor:
|
|
36
|
+
bgDefault?.backgroundColor || modal_bottom_sheet_item_background_color,
|
|
29
37
|
focusedBackgroundColor: modal_bottom_sheet_item_focus_background_color,
|
|
30
38
|
selectedBackgroundColor: modal_bottom_sheet_item_selected_background_color,
|
|
31
39
|
focusedSelectedBackgroundColor:
|
|
32
40
|
modal_bottom_sheet_item_focused_selected_background_color,
|
|
33
|
-
borderRadius:
|
|
41
|
+
borderRadius: toNumberWithDefault(
|
|
42
|
+
modal_bottom_sheet_item_corner_radius,
|
|
43
|
+
bgDefault?.borderRadius
|
|
44
|
+
),
|
|
34
45
|
marginBottom: modal_bottom_sheet_item_margin_bottom,
|
|
35
46
|
marginTop: modal_bottom_sheet_item_margin_top,
|
|
36
47
|
marginLeft: modal_bottom_sheet_item_margin_left,
|
|
37
48
|
marginRight: modal_bottom_sheet_item_margin_right,
|
|
38
|
-
paddingTop:
|
|
39
|
-
|
|
49
|
+
paddingTop: toNumberWithDefault(
|
|
50
|
+
modal_bottom_sheet_item_padding_top,
|
|
51
|
+
bgDefault?.paddingTop
|
|
52
|
+
),
|
|
53
|
+
paddingBottom: toNumberWithDefault(
|
|
54
|
+
modal_bottom_sheet_item_padding_bottom,
|
|
55
|
+
bgDefault?.paddingBottom
|
|
56
|
+
),
|
|
40
57
|
paddingRight: modal_bottom_sheet_item_padding_right,
|
|
41
58
|
paddingLeft: modal_bottom_sheet_item_padding_left,
|
|
42
59
|
maxWidth,
|
|
@@ -45,7 +62,8 @@ export function defaultItemProps(
|
|
|
45
62
|
|
|
46
63
|
export function defaultItemLabelProps(
|
|
47
64
|
config: PluginConfiguration,
|
|
48
|
-
sheetWidth: number
|
|
65
|
+
sheetWidth: number,
|
|
66
|
+
blockItemStyle?: Record<string, any>
|
|
49
67
|
): ItemLabelProps {
|
|
50
68
|
const {
|
|
51
69
|
modal_bottom_sheet_item_label_android_letter_spacing,
|
|
@@ -72,15 +90,48 @@ export function defaultItemLabelProps(
|
|
|
72
90
|
modal_bottom_sheet_item_padding_right,
|
|
73
91
|
} = config;
|
|
74
92
|
|
|
75
|
-
const
|
|
93
|
+
const iconWidth = toNumberWithDefaultZero(modal_bottom_sheet_item_icon_width);
|
|
94
|
+
|
|
95
|
+
const iconMarginLeft = toNumberWithDefaultZero(
|
|
96
|
+
modal_bottom_sheet_item_icon_margin_left
|
|
97
|
+
);
|
|
98
|
+
|
|
99
|
+
const iconMarginRight = toNumberWithDefaultZero(
|
|
100
|
+
modal_bottom_sheet_item_icon_margin_right
|
|
101
|
+
);
|
|
102
|
+
|
|
103
|
+
const itemMarginLeft = toNumberWithDefaultZero(
|
|
104
|
+
modal_bottom_sheet_item_margin_left
|
|
105
|
+
);
|
|
106
|
+
|
|
107
|
+
const itemMarginRight = toNumberWithDefaultZero(
|
|
108
|
+
modal_bottom_sheet_item_margin_right
|
|
109
|
+
);
|
|
110
|
+
|
|
111
|
+
const itemPaddingLeft = toNumberWithDefaultZero(
|
|
112
|
+
modal_bottom_sheet_item_padding_left
|
|
113
|
+
);
|
|
114
|
+
|
|
115
|
+
const itemPaddingRight = toNumberWithDefaultZero(
|
|
116
|
+
modal_bottom_sheet_item_padding_right
|
|
117
|
+
);
|
|
118
|
+
|
|
119
|
+
const calculatedMaxWidth =
|
|
76
120
|
sheetWidth -
|
|
77
|
-
(
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
121
|
+
(iconWidth +
|
|
122
|
+
iconMarginLeft +
|
|
123
|
+
iconMarginRight +
|
|
124
|
+
itemMarginLeft +
|
|
125
|
+
itemMarginRight +
|
|
126
|
+
itemPaddingLeft +
|
|
127
|
+
itemPaddingRight);
|
|
128
|
+
|
|
129
|
+
const maxWidth =
|
|
130
|
+
Number.isNaN(calculatedMaxWidth) || calculatedMaxWidth <= 0
|
|
131
|
+
? sheetWidth
|
|
132
|
+
: calculatedMaxWidth;
|
|
133
|
+
|
|
134
|
+
const label1Default = blockItemStyle?.textLabel1?.default;
|
|
84
135
|
|
|
85
136
|
return {
|
|
86
137
|
fontFamily: platformSelect({
|
|
@@ -91,8 +142,11 @@ export function defaultItemLabelProps(
|
|
|
91
142
|
ios: modal_bottom_sheet_item_label_ios_letter_spacing,
|
|
92
143
|
android: modal_bottom_sheet_item_label_android_letter_spacing,
|
|
93
144
|
}),
|
|
94
|
-
fontSize:
|
|
95
|
-
|
|
145
|
+
fontSize: toNumberWithDefault(
|
|
146
|
+
modal_bottom_sheet_item_label_font_size,
|
|
147
|
+
label1Default?.fontSize
|
|
148
|
+
),
|
|
149
|
+
color: label1Default?.fontColor || modal_bottom_sheet_item_label_font_color,
|
|
96
150
|
focusColor: modal_bottom_sheet_item_label_focus_font_color,
|
|
97
151
|
hoverSelectedColor: modal_bottom_sheet_item_label_hover_selected_font_color,
|
|
98
152
|
selectedColor: modal_bottom_sheet_item_label_selected_font_color,
|
|
@@ -146,7 +200,8 @@ export function getItemLabelProps(
|
|
|
146
200
|
width: number,
|
|
147
201
|
labelProps?:
|
|
148
202
|
| ((theme: PluginConfiguration, width: number) => ItemLabelProps)
|
|
149
|
-
| ItemLabelProps
|
|
203
|
+
| ItemLabelProps,
|
|
204
|
+
blockItemStyle?: Record<string, any>
|
|
150
205
|
) {
|
|
151
206
|
if (labelProps) {
|
|
152
207
|
return typeof labelProps === "function"
|
|
@@ -154,7 +209,7 @@ export function getItemLabelProps(
|
|
|
154
209
|
: labelProps;
|
|
155
210
|
}
|
|
156
211
|
|
|
157
|
-
return defaultItemLabelProps(theme, width);
|
|
212
|
+
return defaultItemLabelProps(theme, width, blockItemStyle);
|
|
158
213
|
}
|
|
159
214
|
|
|
160
215
|
export function getItemProps(
|
|
@@ -162,7 +217,8 @@ export function getItemProps(
|
|
|
162
217
|
width: number,
|
|
163
218
|
itemProps?:
|
|
164
219
|
| ((theme: PluginConfiguration, width: number) => ItemProps)
|
|
165
|
-
| ItemProps
|
|
220
|
+
| ItemProps,
|
|
221
|
+
blockItemStyle?: Record<string, any>
|
|
166
222
|
) {
|
|
167
223
|
if (itemProps) {
|
|
168
224
|
return typeof itemProps === "function"
|
|
@@ -170,5 +226,5 @@ export function getItemProps(
|
|
|
170
226
|
: itemProps;
|
|
171
227
|
}
|
|
172
228
|
|
|
173
|
-
return defaultItemProps(theme, width);
|
|
229
|
+
return defaultItemProps(theme, width, blockItemStyle);
|
|
174
230
|
}
|
|
@@ -1,88 +1,7 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
|
-
exports[`OfflineHandler renders 1`] = `
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"flex": 1,
|
|
8
|
-
"position": "relative",
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
>
|
|
12
|
-
<View
|
|
13
|
-
style={
|
|
14
|
-
{
|
|
15
|
-
"bottom": 0,
|
|
16
|
-
"left": 0,
|
|
17
|
-
"position": "absolute",
|
|
18
|
-
"right": 0,
|
|
19
|
-
"top": 0,
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
>
|
|
23
|
-
<View
|
|
24
|
-
accessibilityState={
|
|
25
|
-
{
|
|
26
|
-
"busy": undefined,
|
|
27
|
-
"checked": undefined,
|
|
28
|
-
"disabled": undefined,
|
|
29
|
-
"expanded": undefined,
|
|
30
|
-
"selected": undefined,
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
accessible={true}
|
|
34
|
-
collapsable={false}
|
|
35
|
-
focusable={true}
|
|
36
|
-
onClick={[Function]}
|
|
37
|
-
onResponderGrant={[Function]}
|
|
38
|
-
onResponderMove={[Function]}
|
|
39
|
-
onResponderRelease={[Function]}
|
|
40
|
-
onResponderTerminate={[Function]}
|
|
41
|
-
onResponderTerminationRequest={[Function]}
|
|
42
|
-
onStartShouldSetResponder={[Function]}
|
|
43
|
-
style={
|
|
44
|
-
{
|
|
45
|
-
"alignItems": "center",
|
|
46
|
-
"backgroundColor": undefined,
|
|
47
|
-
"flex": 1,
|
|
48
|
-
"height": 88,
|
|
49
|
-
"justifyContent": "center",
|
|
50
|
-
"left": 0,
|
|
51
|
-
"opacity": 0,
|
|
52
|
-
"position": "absolute",
|
|
53
|
-
"right": 0,
|
|
54
|
-
"top": 0,
|
|
55
|
-
"transform": [
|
|
56
|
-
{
|
|
57
|
-
"translateY": -88,
|
|
58
|
-
},
|
|
59
|
-
],
|
|
60
|
-
"width": "100%",
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
>
|
|
64
|
-
<View
|
|
65
|
-
style={
|
|
66
|
-
{
|
|
67
|
-
"backgroundColor": undefined,
|
|
68
|
-
"height": 44,
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
/>
|
|
72
|
-
<Text
|
|
73
|
-
style={
|
|
74
|
-
{
|
|
75
|
-
"color": undefined,
|
|
76
|
-
"fontFamily": undefined,
|
|
77
|
-
"fontSize": undefined,
|
|
78
|
-
"letterSpacing": undefined,
|
|
79
|
-
"lineHeight": undefined,
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
>
|
|
83
|
-
You are back online
|
|
84
|
-
</Text>
|
|
85
|
-
</View>
|
|
86
|
-
</View>
|
|
87
|
-
</View>
|
|
3
|
+
exports[`OfflineHandler renders its children without wrapping them in a notification view 1`] = `
|
|
4
|
+
<Text>
|
|
5
|
+
child content
|
|
6
|
+
</Text>
|
|
88
7
|
`;
|