@applicaster/zapp-react-native-utils 16.0.0-rc.9 → 16.0.0-rc.90
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 +57 -12
- package/actionsExecutor/ActionExecutorContext.tsx +113 -314
- package/actionsExecutor/__tests__/ActionExecutor.test.ts +71 -0
- 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__/presentScreen.test.ts +127 -0
- package/actionsExecutor/actions/__tests__/showAlert.test.ts +49 -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 +42 -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 +329 -0
- package/actionsExecutor/actions/presentScreen.ts +78 -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/showAlert.ts +51 -0
- package/actionsExecutor/actions/showToast.ts +87 -0
- package/actionsExecutor/actions/switchLayout.ts +40 -0
- package/actionsExecutor/consts.ts +27 -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 +195 -0
- package/entryActions/aliasPresentation.ts +124 -0
- package/entryActions/buildEntryActions.ts +167 -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 +41 -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 +235 -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 +415 -0
- package/modalState/__tests__/index.test.ts +30 -1
- package/modalState/__tests__/useBottomSheetContent.test.ts +349 -0
- package/modalState/__tests__/useModalStoreState.test.ts +142 -0
- package/modalState/index.ts +35 -83
- package/modalState/store.ts +109 -0
- package/modalState/types.ts +160 -0
- package/modalState/useBottomSheetContent.ts +109 -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 +41 -18
- 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/__tests__/index.test.js +64 -0
- package/reactHooks/cell-click/index.ts +39 -24
- 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__/index.test.tsx +176 -1
- package/reactHooks/navigation/__tests__/useIsScreenActive.test.ts +42 -0
- package/reactHooks/navigation/__tests__/usePresentScreen.test.ts +154 -0
- package/reactHooks/navigation/index.ts +3 -1
- package/reactHooks/navigation/useIsScreenActive.ts +29 -8
- package/reactHooks/navigation/usePresentScreen.ts +157 -0
- package/reactHooks/navigation/useRoute.ts +22 -5
- 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,12 +1,13 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { PathnameContext } from "@applicaster/zapp-react-native-ui-components/Contexts/PathnameContext";
|
|
3
|
-
import { renderHook } from "@testing-library/react-native";
|
|
3
|
+
import { act, render, renderHook } from "@testing-library/react-native";
|
|
4
4
|
import { isNavBarVisible, useRoute } from "../";
|
|
5
5
|
import { Provider } from "react-redux";
|
|
6
6
|
import configureMockStore from "redux-mock-store";
|
|
7
7
|
import { NavigationContext } from "@applicaster/zapp-react-native-ui-components/Contexts/NavigationContext";
|
|
8
8
|
import { ROUTE_TYPES } from "@applicaster/zapp-react-native-utils/navigationUtils/routeTypes";
|
|
9
9
|
import { ScreenDataContext } from "@applicaster/zapp-react-native-ui-components/Contexts/ScreenDataContext";
|
|
10
|
+
import { modalStore } from "@applicaster/zapp-react-native-utils/modalState";
|
|
10
11
|
|
|
11
12
|
const plugins = [];
|
|
12
13
|
|
|
@@ -156,6 +157,20 @@ const videoModalWrapper = ({ children }) => (
|
|
|
156
157
|
</Provider>
|
|
157
158
|
);
|
|
158
159
|
|
|
160
|
+
const modalEntry = { id: "modal-entry-1", type: { value: "video" } };
|
|
161
|
+
|
|
162
|
+
const modalPathname = `${ROUTE_TYPES.MODAL}/${rivers["river-general"].id}`;
|
|
163
|
+
|
|
164
|
+
const modalWrapper = ({ children }) => (
|
|
165
|
+
<Provider store={store}>
|
|
166
|
+
<NavigationContext.Provider value={mainStackNavigator}>
|
|
167
|
+
<PathnameContext.Provider value={modalPathname}>
|
|
168
|
+
{children}
|
|
169
|
+
</PathnameContext.Provider>
|
|
170
|
+
</NavigationContext.Provider>
|
|
171
|
+
</Provider>
|
|
172
|
+
);
|
|
173
|
+
|
|
159
174
|
const hookModalWrapper = ({ children }) => (
|
|
160
175
|
<Provider store={store}>
|
|
161
176
|
<NavigationContext.Provider value={hookModalNavigator}>
|
|
@@ -166,6 +181,45 @@ const hookModalWrapper = ({ children }) => (
|
|
|
166
181
|
</Provider>
|
|
167
182
|
);
|
|
168
183
|
|
|
184
|
+
// Reports every render of useRoute so the tests below can assert on route
|
|
185
|
+
// transitions and on subscription behaviour, not just on a one-shot result.
|
|
186
|
+
function RouteProbe({ onRender }: { onRender: (route: any) => void }) {
|
|
187
|
+
onRender(useRoute());
|
|
188
|
+
|
|
189
|
+
return null;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
const openRiverModal = () =>
|
|
193
|
+
act(() => {
|
|
194
|
+
modalStore.getState().openModal({
|
|
195
|
+
item: rivers["river-general"] as any,
|
|
196
|
+
props: { entry: modalEntry },
|
|
197
|
+
});
|
|
198
|
+
});
|
|
199
|
+
|
|
200
|
+
const renderRouteProbe = (pathname: string, onRender: (route: any) => void) => {
|
|
201
|
+
const tree = (currentPathname: string) => (
|
|
202
|
+
<Provider store={store}>
|
|
203
|
+
<ScreenDataContext.Provider value={homeStack.state}>
|
|
204
|
+
<NavigationContext.Provider value={videoModalNavigator}>
|
|
205
|
+
<PathnameContext.Provider value={currentPathname}>
|
|
206
|
+
<RouteProbe onRender={onRender} />
|
|
207
|
+
</PathnameContext.Provider>
|
|
208
|
+
</NavigationContext.Provider>
|
|
209
|
+
</ScreenDataContext.Provider>
|
|
210
|
+
</Provider>
|
|
211
|
+
);
|
|
212
|
+
|
|
213
|
+
const { rerender } = render(tree(pathname));
|
|
214
|
+
|
|
215
|
+
return {
|
|
216
|
+
navigateTo: (nextPathname: string) =>
|
|
217
|
+
act(() => {
|
|
218
|
+
rerender(tree(nextPathname));
|
|
219
|
+
}),
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
|
|
169
223
|
describe("navigation", () => {
|
|
170
224
|
describe("useRoute", () => {
|
|
171
225
|
describe("Main stack components", () => {
|
|
@@ -188,6 +242,39 @@ describe("navigation", () => {
|
|
|
188
242
|
});
|
|
189
243
|
});
|
|
190
244
|
|
|
245
|
+
describe("Modal components", () => {
|
|
246
|
+
beforeEach(() => {
|
|
247
|
+
modalStore.getState().openModal({
|
|
248
|
+
item: rivers["river-general"] as any,
|
|
249
|
+
props: { entry: modalEntry },
|
|
250
|
+
});
|
|
251
|
+
});
|
|
252
|
+
|
|
253
|
+
afterEach(() => {
|
|
254
|
+
modalStore.getState().dismissModal();
|
|
255
|
+
});
|
|
256
|
+
|
|
257
|
+
it("should return a correct pathname", () => {
|
|
258
|
+
const { result } = renderHook(() => useRoute(), {
|
|
259
|
+
wrapper: modalWrapper,
|
|
260
|
+
});
|
|
261
|
+
|
|
262
|
+
expect(result.current.pathname).toEqual(modalPathname);
|
|
263
|
+
});
|
|
264
|
+
|
|
265
|
+
it("should return correct screenData information", () => {
|
|
266
|
+
const { result } = renderHook(() => useRoute(), {
|
|
267
|
+
wrapper: modalWrapper,
|
|
268
|
+
});
|
|
269
|
+
|
|
270
|
+
expect(result.current.screenData.id).toEqual(modalEntry.id);
|
|
271
|
+
|
|
272
|
+
expect(result.current.screenData.targetScreen.id).toEqual(
|
|
273
|
+
rivers["river-general"].id
|
|
274
|
+
);
|
|
275
|
+
});
|
|
276
|
+
});
|
|
277
|
+
|
|
191
278
|
describe("Hook modal components", () => {
|
|
192
279
|
it("should return a correct pathname", () => {
|
|
193
280
|
const { result } = renderHook(() => useRoute(), {
|
|
@@ -231,6 +318,94 @@ describe("navigation", () => {
|
|
|
231
318
|
);
|
|
232
319
|
});
|
|
233
320
|
});
|
|
321
|
+
|
|
322
|
+
describe("store subscriptions", () => {
|
|
323
|
+
afterEach(() => {
|
|
324
|
+
act(() => {
|
|
325
|
+
modalStore.getState().dismissModal();
|
|
326
|
+
});
|
|
327
|
+
});
|
|
328
|
+
|
|
329
|
+
// Every hook in useRoute must run on every render. When the modal and
|
|
330
|
+
// hook-modal subscriptions lived inside the route branches, walking a
|
|
331
|
+
// single mounted component through the route types changed the hook
|
|
332
|
+
// count and React threw "Rendered more hooks than during the previous
|
|
333
|
+
// render".
|
|
334
|
+
it("keeps a stable hook order when the route type changes", () => {
|
|
335
|
+
let route: any;
|
|
336
|
+
|
|
337
|
+
const { navigateTo } = renderRouteProbe(homeStack.route, (current) => {
|
|
338
|
+
route = current;
|
|
339
|
+
});
|
|
340
|
+
|
|
341
|
+
expect(route.screenData.id).toEqual(entry.id);
|
|
342
|
+
expect(route.screenData.targetScreen.id).toEqual(screen.id);
|
|
343
|
+
|
|
344
|
+
openRiverModal();
|
|
345
|
+
navigateTo(modalPathname);
|
|
346
|
+
|
|
347
|
+
expect(route.pathname).toEqual(modalPathname);
|
|
348
|
+
expect(route.screenData.id).toEqual(modalEntry.id);
|
|
349
|
+
|
|
350
|
+
expect(route.screenData.targetScreen.id).toEqual(
|
|
351
|
+
rivers["river-general"].id
|
|
352
|
+
);
|
|
353
|
+
|
|
354
|
+
navigateTo(hooksModalPathname);
|
|
355
|
+
|
|
356
|
+
expect(route.pathname).toEqual(hooksModalPathname);
|
|
357
|
+
|
|
358
|
+
expect(route.screenData.id).toEqual(
|
|
359
|
+
hookModalContextState.state.screenData.payload.id
|
|
360
|
+
);
|
|
361
|
+
|
|
362
|
+
navigateTo(videoModalPathname);
|
|
363
|
+
|
|
364
|
+
expect(route.pathname).toEqual(videoModalPathname);
|
|
365
|
+
expect(route.screenData.id).toEqual(videoItem.id);
|
|
366
|
+
|
|
367
|
+
expect(route.screenData.targetScreen.id).toEqual(
|
|
368
|
+
rivers["river-player"].id
|
|
369
|
+
);
|
|
370
|
+
|
|
371
|
+
navigateTo(homeStack.route);
|
|
372
|
+
|
|
373
|
+
expect(route.pathname).toEqual(homeStack.route);
|
|
374
|
+
expect(route.screenData.id).toEqual(entry.id);
|
|
375
|
+
});
|
|
376
|
+
|
|
377
|
+
it("does not re-render a non-modal route when modal state changes", () => {
|
|
378
|
+
let renders = 0;
|
|
379
|
+
|
|
380
|
+
renderRouteProbe(homeStack.route, () => {
|
|
381
|
+
renders += 1;
|
|
382
|
+
});
|
|
383
|
+
|
|
384
|
+
const rendersBeforeOpen = renders;
|
|
385
|
+
|
|
386
|
+
openRiverModal();
|
|
387
|
+
|
|
388
|
+
expect(renders).toBe(rendersBeforeOpen);
|
|
389
|
+
});
|
|
390
|
+
|
|
391
|
+
it("re-renders a modal route when modal state changes", () => {
|
|
392
|
+
let route: any;
|
|
393
|
+
|
|
394
|
+
renderRouteProbe(modalPathname, (current) => {
|
|
395
|
+
route = current;
|
|
396
|
+
});
|
|
397
|
+
|
|
398
|
+
expect(route.screenData).toEqual({});
|
|
399
|
+
|
|
400
|
+
openRiverModal();
|
|
401
|
+
|
|
402
|
+
expect(route.screenData.id).toEqual(modalEntry.id);
|
|
403
|
+
|
|
404
|
+
expect(route.screenData.targetScreen.id).toEqual(
|
|
405
|
+
rivers["river-general"].id
|
|
406
|
+
);
|
|
407
|
+
});
|
|
408
|
+
});
|
|
234
409
|
});
|
|
235
410
|
|
|
236
411
|
describe("isNavBarVisible", () => {
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { isScreenActiveForRoute } from "../useIsScreenActive";
|
|
2
|
+
|
|
3
|
+
describe("isScreenActiveForRoute", () => {
|
|
4
|
+
const route = "/river/home/river/tabs";
|
|
5
|
+
const currentRoute = "/river/home/river/tabs";
|
|
6
|
+
|
|
7
|
+
it("returns false when route does not match", () => {
|
|
8
|
+
expect(
|
|
9
|
+
isScreenActiveForRoute(route, "/river/home", { visible: false })
|
|
10
|
+
).toBe(false);
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
it("keeps underlying screen active when video modal is docked", () => {
|
|
14
|
+
expect(
|
|
15
|
+
isScreenActiveForRoute(route, currentRoute, {
|
|
16
|
+
visible: true,
|
|
17
|
+
mode: "MINIMIZED",
|
|
18
|
+
})
|
|
19
|
+
).toBe(true);
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it.each(["FULLSCREEN", "MAXIMIZED", "PIP"])(
|
|
23
|
+
"deactivates underlying screen when video modal is visible",
|
|
24
|
+
(mode) => {
|
|
25
|
+
expect(
|
|
26
|
+
isScreenActiveForRoute(route, currentRoute, {
|
|
27
|
+
visible: true,
|
|
28
|
+
mode,
|
|
29
|
+
})
|
|
30
|
+
).toBe(false);
|
|
31
|
+
}
|
|
32
|
+
);
|
|
33
|
+
|
|
34
|
+
it("keeps video-modal route active when video modal is open", () => {
|
|
35
|
+
expect(
|
|
36
|
+
isScreenActiveForRoute("video-modal/123", currentRoute, {
|
|
37
|
+
visible: true,
|
|
38
|
+
mode: "FULLSCREEN",
|
|
39
|
+
})
|
|
40
|
+
).toBe(true);
|
|
41
|
+
});
|
|
42
|
+
});
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import { modalStore } from "../../../modalState";
|
|
2
|
+
import { isWeb } from "../../../reactUtils";
|
|
3
|
+
import { presentScreen } from "../usePresentScreen";
|
|
4
|
+
|
|
5
|
+
jest.mock("../../../reactUtils", () => ({
|
|
6
|
+
...jest.requireActual("../../../reactUtils"),
|
|
7
|
+
isWeb: jest.fn(() => false),
|
|
8
|
+
}));
|
|
9
|
+
|
|
10
|
+
const river = { id: "river-parent-lock", type: "parent_lock" } as any;
|
|
11
|
+
|
|
12
|
+
const rivers = { "river-parent-lock": river };
|
|
13
|
+
|
|
14
|
+
const contentTypes = { parent_lock: { screen_id: "river-parent-lock" } };
|
|
15
|
+
|
|
16
|
+
const present = (args = {}) =>
|
|
17
|
+
presentScreen({ typeMapping: "parent_lock", rivers, contentTypes, ...args });
|
|
18
|
+
|
|
19
|
+
const modalState = () => modalStore.getState().modalState;
|
|
20
|
+
|
|
21
|
+
const screenCallback = () => modalState().props?.resultCallback as hookCallback;
|
|
22
|
+
|
|
23
|
+
describe("presentScreen", () => {
|
|
24
|
+
beforeEach(() => {
|
|
25
|
+
jest.clearAllMocks();
|
|
26
|
+
(isWeb as jest.Mock).mockReturnValue(false);
|
|
27
|
+
modalStore.getState().dismissModal();
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
it("opens a modal with the river resolved from typeMapping", () => {
|
|
31
|
+
void present();
|
|
32
|
+
|
|
33
|
+
expect(modalState().visible).toBe(true);
|
|
34
|
+
expect(modalState().screen).toBe(river);
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
it("resolves with success when the presented screen reports success", async () => {
|
|
38
|
+
const result = present();
|
|
39
|
+
|
|
40
|
+
screenCallback()({ success: true, payload: { verified: true } });
|
|
41
|
+
|
|
42
|
+
await expect(result).resolves.toMatchObject({
|
|
43
|
+
success: true,
|
|
44
|
+
cancelled: false,
|
|
45
|
+
payload: { verified: true },
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
it("dismisses the modal once the presented screen reports a result", async () => {
|
|
50
|
+
const result = present();
|
|
51
|
+
|
|
52
|
+
screenCallback()({ success: true, payload: {} });
|
|
53
|
+
await result;
|
|
54
|
+
|
|
55
|
+
expect(modalState().visible).toBe(false);
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
it("resolves as cancelled when the modal is dismissed without a result", async () => {
|
|
59
|
+
const result = present();
|
|
60
|
+
|
|
61
|
+
// What the hardware back button does: RN Modal's onRequestClose resets modal state.
|
|
62
|
+
modalStore.getState().dismissModal();
|
|
63
|
+
|
|
64
|
+
await expect(result).resolves.toMatchObject({
|
|
65
|
+
success: false,
|
|
66
|
+
cancelled: true,
|
|
67
|
+
});
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
it("resolves as cancelled when the presented screen reports cancellation", async () => {
|
|
71
|
+
const result = present();
|
|
72
|
+
|
|
73
|
+
screenCallback()({ success: false, payload: {}, cancelled: true });
|
|
74
|
+
|
|
75
|
+
await expect(result).resolves.toMatchObject({
|
|
76
|
+
success: false,
|
|
77
|
+
cancelled: true,
|
|
78
|
+
});
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
it("resolves as cancelled when another modal replaces the presented screen", async () => {
|
|
82
|
+
const result = present();
|
|
83
|
+
|
|
84
|
+
modalStore.getState().openModal({ item: { id: "other-modal" } as any });
|
|
85
|
+
|
|
86
|
+
await expect(result).resolves.toMatchObject({ cancelled: true });
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
it("leaves the modal that replaced the presented screen open", async () => {
|
|
90
|
+
const result = present();
|
|
91
|
+
const other = { id: "other-modal" } as any;
|
|
92
|
+
|
|
93
|
+
modalStore.getState().openModal({ item: other });
|
|
94
|
+
await result;
|
|
95
|
+
|
|
96
|
+
expect(modalState().screen).toBe(other);
|
|
97
|
+
expect(modalState().visible).toBe(true);
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
it("ignores a result reported after the modal was already cancelled", async () => {
|
|
101
|
+
const result = present();
|
|
102
|
+
const callback = screenCallback();
|
|
103
|
+
|
|
104
|
+
modalStore.getState().dismissModal();
|
|
105
|
+
callback({ success: true, payload: {} });
|
|
106
|
+
|
|
107
|
+
await expect(result).resolves.toMatchObject({
|
|
108
|
+
success: false,
|
|
109
|
+
cancelled: true,
|
|
110
|
+
});
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
it("hands the entry to the ModalProvider so it reaches ScreenDataContext", () => {
|
|
114
|
+
const entry = { id: "entry-1", type: { value: "video" } } as any;
|
|
115
|
+
|
|
116
|
+
void present({ entry });
|
|
117
|
+
|
|
118
|
+
expect(modalState().props?.entry).toBe(entry);
|
|
119
|
+
});
|
|
120
|
+
|
|
121
|
+
it("omits the entry when the screen is presented without one", () => {
|
|
122
|
+
void present();
|
|
123
|
+
|
|
124
|
+
expect(modalState().props).not.toHaveProperty("entry");
|
|
125
|
+
});
|
|
126
|
+
|
|
127
|
+
it("fails without opening a modal when typeMapping has no content type", async () => {
|
|
128
|
+
const result = await present({ typeMapping: "unmapped" });
|
|
129
|
+
|
|
130
|
+
expect(result).toMatchObject({ success: false, cancelled: false });
|
|
131
|
+
expect(result.error).toEqual(expect.any(String));
|
|
132
|
+
expect(modalState().visible).toBe(false);
|
|
133
|
+
});
|
|
134
|
+
|
|
135
|
+
it("fails without opening a modal when the content type resolves to a missing river", async () => {
|
|
136
|
+
const result = await present({
|
|
137
|
+
contentTypes: { parent_lock: { screen_id: "gone" } },
|
|
138
|
+
});
|
|
139
|
+
|
|
140
|
+
expect(result).toMatchObject({ success: false, cancelled: false });
|
|
141
|
+
expect(result.error).toEqual(expect.any(String));
|
|
142
|
+
expect(modalState().visible).toBe(false);
|
|
143
|
+
});
|
|
144
|
+
|
|
145
|
+
it("fails without opening a modal on web, where no modal host exists", async () => {
|
|
146
|
+
(isWeb as jest.Mock).mockReturnValue(true);
|
|
147
|
+
|
|
148
|
+
const result = await present();
|
|
149
|
+
|
|
150
|
+
expect(result).toMatchObject({ success: false, cancelled: false });
|
|
151
|
+
expect(result.error).toEqual(expect.any(String));
|
|
152
|
+
expect(modalState().visible).toBe(false);
|
|
153
|
+
});
|
|
154
|
+
});
|
|
@@ -22,6 +22,8 @@ import { useLayoutVersion } from "../layout";
|
|
|
22
22
|
|
|
23
23
|
export { useNavigation } from "./useNavigation";
|
|
24
24
|
|
|
25
|
+
export { usePresentScreen, presentScreen } from "./usePresentScreen";
|
|
26
|
+
|
|
25
27
|
export { useRoute } from "./useRoute";
|
|
26
28
|
|
|
27
29
|
export { usePathname } from "./usePathname";
|
|
@@ -32,7 +34,7 @@ export { useNavigationType } from "./useNavigationType";
|
|
|
32
34
|
|
|
33
35
|
export { useGetBottomTabBarHeight } from "./useGetBottomTabBarHeight";
|
|
34
36
|
|
|
35
|
-
export { useIsScreenActive } from "./useIsScreenActive";
|
|
37
|
+
export { useIsScreenActive, isScreenActiveForRoute } from "./useIsScreenActive";
|
|
36
38
|
|
|
37
39
|
export { useProfilerLogging } from "./useProfilerLogging";
|
|
38
40
|
|
|
@@ -2,20 +2,41 @@ import { ROUTE_TYPES } from "@applicaster/zapp-react-native-utils/navigationUtil
|
|
|
2
2
|
import { useNavigation } from "./useNavigation";
|
|
3
3
|
import { usePathname } from "./usePathname";
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
type VideoModalState = {
|
|
6
|
+
visible?: boolean;
|
|
7
|
+
mode?: string;
|
|
8
|
+
} | null;
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
/**
|
|
11
|
+
* Whether a navigation route should be treated as the active/focused screen.
|
|
12
|
+
* Docked (MINIMIZED) video modal does not deactivate the underlying screen —
|
|
13
|
+
* only FULLSCREEN / MAXIMIZED / PIP do.
|
|
14
|
+
*/
|
|
15
|
+
export function isScreenActiveForRoute(
|
|
16
|
+
route: string,
|
|
17
|
+
currentRoute: string,
|
|
18
|
+
videoModalState: VideoModalState
|
|
19
|
+
) {
|
|
20
|
+
if (videoModalState?.visible) {
|
|
21
|
+
if (route.includes(ROUTE_TYPES.VIDEO_MODAL)) {
|
|
12
22
|
return true;
|
|
13
23
|
}
|
|
14
24
|
|
|
15
|
-
if (
|
|
25
|
+
if (
|
|
26
|
+
["FULLSCREEN", "MAXIMIZED", "PIP"].includes(videoModalState.mode ?? "")
|
|
27
|
+
) {
|
|
16
28
|
return false;
|
|
17
29
|
}
|
|
30
|
+
// MINIMIZED (docked): fall through — underlying screen stays active
|
|
18
31
|
}
|
|
19
32
|
|
|
20
|
-
return
|
|
33
|
+
return route === currentRoute;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// If current screen is active/focused (visible to the user)
|
|
37
|
+
export const useIsScreenActive = () => {
|
|
38
|
+
const pathname = usePathname();
|
|
39
|
+
const { currentRoute, videoModalState } = useNavigation();
|
|
40
|
+
|
|
41
|
+
return isScreenActiveForRoute(pathname, currentRoute, videoModalState);
|
|
21
42
|
};
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
/// <reference types="@applicaster/applicaster-types" />
|
|
2
|
+
import { useCallback } from "react";
|
|
3
|
+
|
|
4
|
+
import { useContentTypes } from "@applicaster/zapp-react-native-redux/hooks";
|
|
5
|
+
|
|
6
|
+
import { modalStore } from "../../modalState";
|
|
7
|
+
import { isWeb } from "../../reactUtils";
|
|
8
|
+
import { createLogger } from "../../logger";
|
|
9
|
+
import { useRivers } from "../state";
|
|
10
|
+
|
|
11
|
+
const { log_error, log_info } = createLogger({
|
|
12
|
+
subsystem: "usePresentScreen",
|
|
13
|
+
category: "General",
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
export interface PresentScreenArgs {
|
|
17
|
+
/** The screen type to present (from content types mapping) */
|
|
18
|
+
typeMapping: string;
|
|
19
|
+
|
|
20
|
+
/** Entry to present the screen with. Omit to present the screen on its own. */
|
|
21
|
+
entry?: ZappEntry;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface PresentScreenResult {
|
|
25
|
+
/** The presented screen completed successfully */
|
|
26
|
+
success: boolean;
|
|
27
|
+
|
|
28
|
+
/** The presented screen was dismissed without completing (e.g. the back button) */
|
|
29
|
+
cancelled: boolean;
|
|
30
|
+
|
|
31
|
+
/** Set when the screen could not be presented at all */
|
|
32
|
+
error?: string;
|
|
33
|
+
|
|
34
|
+
/** Whatever the presented screen reported back */
|
|
35
|
+
payload?: unknown;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export type PresentScreenFn = (
|
|
39
|
+
args: PresentScreenArgs
|
|
40
|
+
) => Promise<PresentScreenResult>;
|
|
41
|
+
|
|
42
|
+
interface Dependencies {
|
|
43
|
+
rivers: Record<string, ZappRiver>;
|
|
44
|
+
contentTypes: ZappContentTypes;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const failure = (error: string): Promise<PresentScreenResult> => {
|
|
48
|
+
log_error(`presentScreen: ${error}`);
|
|
49
|
+
|
|
50
|
+
return Promise.resolve({ success: false, cancelled: false, error });
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Presents a screen as a modal and resolves once that screen reports a result
|
|
55
|
+
* or is dismissed.
|
|
56
|
+
*
|
|
57
|
+
* The screen is rendered by the ModalProvider through the regular ScreenResolver,
|
|
58
|
+
* so it receives the `resultCallback` we pass here as its `callback` prop — the
|
|
59
|
+
* same channel hook screens already use to report success and cancellation.
|
|
60
|
+
*/
|
|
61
|
+
export const presentScreen = ({
|
|
62
|
+
typeMapping,
|
|
63
|
+
entry,
|
|
64
|
+
rivers,
|
|
65
|
+
contentTypes,
|
|
66
|
+
}: PresentScreenArgs & Dependencies): Promise<PresentScreenResult> => {
|
|
67
|
+
if (!typeMapping) {
|
|
68
|
+
return failure("typeMapping option is missing");
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
// The web ModalProvider renders nothing, so no result could ever arrive and
|
|
72
|
+
// awaiting one would stall the caller indefinitely.
|
|
73
|
+
if (isWeb()) {
|
|
74
|
+
return failure("screens can not be presented as modals on web");
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
const screenId = contentTypes?.[typeMapping]?.screen_id;
|
|
78
|
+
|
|
79
|
+
if (!screenId) {
|
|
80
|
+
return failure(`can not resolve screen type mapping: ${typeMapping}`);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
const river = rivers?.[screenId];
|
|
84
|
+
|
|
85
|
+
if (!river) {
|
|
86
|
+
return failure(`can not resolve river for screen id: ${screenId}`);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
return new Promise<PresentScreenResult>((resolve) => {
|
|
90
|
+
let settled = false;
|
|
91
|
+
let unsubscribe: () => void = () => {};
|
|
92
|
+
|
|
93
|
+
const settle = (result: PresentScreenResult) => {
|
|
94
|
+
if (settled) {
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
settled = true;
|
|
99
|
+
unsubscribe();
|
|
100
|
+
resolve(result);
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
const resultCallback = ({
|
|
104
|
+
success,
|
|
105
|
+
cancelled,
|
|
106
|
+
payload,
|
|
107
|
+
}: hookCallbackArgs) =>
|
|
108
|
+
settle({ success: !!success, cancelled: !!cancelled, payload });
|
|
109
|
+
|
|
110
|
+
const props: Record<string, unknown> = { resultCallback };
|
|
111
|
+
|
|
112
|
+
if (entry) {
|
|
113
|
+
// The ModalProvider turns this into the screen's ScreenDataContext and
|
|
114
|
+
// screenData, so the presented screen reads the entry exactly as it
|
|
115
|
+
// would when navigated to.
|
|
116
|
+
props.entry = entry;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
log_info(
|
|
120
|
+
`presentScreen: presenting screen type: ${typeMapping}${
|
|
121
|
+
entry ? ` with entry id: ${entry.id}` : ""
|
|
122
|
+
}`
|
|
123
|
+
);
|
|
124
|
+
|
|
125
|
+
modalStore.getState().openModal({ item: river, props });
|
|
126
|
+
|
|
127
|
+
// Covers every dismissal we do not initiate ourselves: the hardware back
|
|
128
|
+
// button (via the Modal's onRequestClose), a swipe dismiss, another modal
|
|
129
|
+
// taking our slot, or dismissModal() called from anywhere else.
|
|
130
|
+
unsubscribe = modalStore.subscribe(({ modalState }) => {
|
|
131
|
+
if (!modalState.visible || modalState.screen !== river) {
|
|
132
|
+
settle({ success: false, cancelled: true });
|
|
133
|
+
}
|
|
134
|
+
});
|
|
135
|
+
}).then((result) => {
|
|
136
|
+
// Only take down our own modal — by now something else may already own the slot.
|
|
137
|
+
if (modalStore.getState().modalState.screen === river) {
|
|
138
|
+
modalStore.getState().dismissModal();
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
return result;
|
|
142
|
+
});
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* @returns a function presenting a screen as a modal, resolving with its result.
|
|
147
|
+
*/
|
|
148
|
+
export const usePresentScreen = (): PresentScreenFn => {
|
|
149
|
+
const rivers = useRivers();
|
|
150
|
+
const contentTypes = useContentTypes();
|
|
151
|
+
|
|
152
|
+
return useCallback(
|
|
153
|
+
(args: PresentScreenArgs) =>
|
|
154
|
+
presentScreen({ ...args, rivers, contentTypes }),
|
|
155
|
+
[rivers, contentTypes]
|
|
156
|
+
);
|
|
157
|
+
};
|
|
@@ -50,14 +50,18 @@ export const useRoute = (
|
|
|
50
50
|
const rivers = useRivers();
|
|
51
51
|
const contentTypes = useContentTypes();
|
|
52
52
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
53
|
+
// useRoute runs in every cell, so both modal stores are subscribed to only on
|
|
54
|
+
// the routes that actually read them. Off those routes the selectors return a
|
|
55
|
+
// stable reference, which keeps an unrelated modal opening or closing from
|
|
56
|
+
// re-rendering the whole tree.
|
|
57
57
|
const hookModalScreenData = useHookModalScreenData(
|
|
58
58
|
!isHookModalPathname(pathname)
|
|
59
59
|
);
|
|
60
60
|
|
|
61
|
+
const modalState = useModalStoreState(!isModalPathname(pathname));
|
|
62
|
+
|
|
63
|
+
const modalScreenData = modalState.screen;
|
|
64
|
+
|
|
61
65
|
const videoModalScreenData =
|
|
62
66
|
navigator?.videoModalState?.item &&
|
|
63
67
|
legacyScreenData(
|
|
@@ -80,7 +84,20 @@ export const useRoute = (
|
|
|
80
84
|
// if path is hook grab screenData from screenData
|
|
81
85
|
|
|
82
86
|
if (isModalPathname(pathname)) {
|
|
83
|
-
|
|
87
|
+
if (!modalScreenData) {
|
|
88
|
+
return { screenData: {} as ZappEntry, pathname };
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// Mirror the pushed-screen shape ({ ...entry, targetScreen }) so a screen
|
|
92
|
+
// presented as a modal reads its entry the same way it would when
|
|
93
|
+
// navigated to, instead of only seeing the bare river.
|
|
94
|
+
const screenData = legacyScreenData(
|
|
95
|
+
{
|
|
96
|
+
screen: modalScreenData,
|
|
97
|
+
entry: modalState.props?.entry as NavigatorEntry,
|
|
98
|
+
},
|
|
99
|
+
plugins
|
|
100
|
+
);
|
|
84
101
|
|
|
85
102
|
return { screenData, pathname };
|
|
86
103
|
}
|