@applicaster/zapp-react-native-utils 15.0.0-rc.99 → 16.0.0-alpha.9803580571
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/README.md +0 -6
- package/actionUtils/index.ts +7 -0
- package/actionsExecutor/ActionExecutorContext.tsx +83 -6
- package/appUtils/HooksManager/index.ts +35 -0
- package/appUtils/focusManager/treeDataStructure/Tree/__tests__/Tree.test.js +46 -0
- package/appUtils/focusManager/treeDataStructure/Tree/index.js +18 -18
- package/appUtils/focusManagerAux/utils/index.ts +12 -6
- package/appUtils/focusManagerAux/utils/utils.ios.ts +6 -3
- package/appUtils/localizationsHelper.ts +4 -0
- package/appUtils/playerManager/index.ts +9 -0
- package/appUtils/playerManager/player.ts +1 -1
- package/appUtils/playerManager/playerNative.ts +2 -1
- package/appUtils/playerManager/usePlayer.tsx +5 -3
- package/cellUtils/__tests__/cellUtils.test.ts +39 -0
- package/cellUtils/index.ts +11 -1
- package/componentsUtils/index.ts +8 -0
- package/dateUtils/__tests__/dayjs.test.ts +0 -3
- package/dateUtils/index.ts +2 -0
- package/manifestUtils/_internals/__tests__/index.test.js +41 -0
- package/manifestUtils/_internals/index.js +33 -0
- package/manifestUtils/defaultManifestConfigurations/player.js +6 -16
- package/manifestUtils/fieldUtils/__tests__/fieldUtils.test.js +49 -0
- package/manifestUtils/fieldUtils/index.js +54 -0
- package/manifestUtils/index.js +2 -0
- package/manifestUtils/keys.js +228 -0
- package/manifestUtils/mobileAction/button/__tests__/mobileActionButton.test.js +168 -0
- package/manifestUtils/mobileAction/button/index.js +140 -0
- package/manifestUtils/mobileAction/container/__tests__/mobileActionButtonsContainer.test.js +102 -0
- package/manifestUtils/mobileAction/container/index.js +73 -0
- package/manifestUtils/mobileAction/groups/__tests__/buildMobileActionButtonGroups.test.js +127 -0
- package/manifestUtils/mobileAction/groups/defaults.js +76 -0
- package/manifestUtils/mobileAction/groups/index.js +80 -0
- package/numberUtils/__tests__/toNumber.test.ts +27 -12
- package/numberUtils/__tests__/toPositiveNumber.test.ts +32 -4
- package/numberUtils/index.ts +5 -1
- package/package.json +3 -3
- package/pluginUtils/index.ts +4 -5
- package/reactHooks/casting/index.ts +1 -0
- package/reactHooks/casting/useIsCasting.tsx +57 -0
- package/reactHooks/cell-click/index.ts +2 -1
- package/reactHooks/feed/index.ts +0 -2
- package/reactHooks/feed/useInflatedUrl.ts +1 -1
- package/reactHooks/resolvers/useComponentResolver.ts +13 -3
- package/reactHooks/screen/__tests__/useCurrentScreenIsHook.test.ts +103 -0
- package/reactHooks/screen/__tests__/useCurrentScreenIsStartupHook.test.ts +94 -0
- package/reactHooks/screen/index.ts +4 -0
- package/reactHooks/screen/useCurrentScreenIsHook.ts +9 -0
- package/reactHooks/screen/useCurrentScreenIsStartupHook.ts +8 -0
- package/reactHooks/state/__tests__/useComponentScreenState.test.ts +246 -0
- package/reactHooks/state/index.ts +2 -0
- package/reactHooks/state/useComponentScreenState.ts +45 -0
- package/refreshUtils/RefreshCoordinator/__tests__/refreshCoordinator.test.ts +206 -0
- package/refreshUtils/RefreshCoordinator/index.ts +245 -0
- package/refreshUtils/RefreshCoordinator/utils/__tests__/getDataRefreshConfig.test.ts +104 -0
- package/refreshUtils/RefreshCoordinator/utils/index.ts +29 -0
- package/screenPickerUtils/index.ts +5 -0
- package/screenUtils/index.ts +3 -0
- package/utils/__tests__/clone.test.ts +158 -0
- package/utils/__tests__/path.test.ts +7 -0
- package/utils/clone.ts +7 -0
- package/utils/index.ts +2 -1
- package/reactHooks/feed/__tests__/useFeedRefresh.test.tsx +0 -75
- package/reactHooks/feed/useFeedRefresh.tsx +0 -65
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import { path, max } from "ramda";
|
|
3
|
-
import { isTrue } from "@applicaster/zapp-react-native-utils/booleanUtils";
|
|
4
|
-
import { toNumberWithDefault } from "@applicaster/zapp-react-native-utils/numberUtils";
|
|
5
|
-
import { useIsScreenActive } from "@applicaster/zapp-react-native-utils/reactHooks/navigation";
|
|
6
|
-
|
|
7
|
-
import { reactHooksLogger } from "../logger";
|
|
8
|
-
import { ReloadDataFunction } from "./useFeedLoader";
|
|
9
|
-
|
|
10
|
-
export const feedRefreshLogger = reactHooksLogger.addSubsystem("feed-refresh");
|
|
11
|
-
|
|
12
|
-
type Props = {
|
|
13
|
-
reloadData?: ReloadDataFunction;
|
|
14
|
-
component: ZappUIComponent;
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
const previousTimersMap = {};
|
|
18
|
-
const minimumRefreshingInterval = 5;
|
|
19
|
-
const defaultRefreshInterval = 60;
|
|
20
|
-
|
|
21
|
-
export const useFeedRefresh = ({ reloadData, component }: Props): void => {
|
|
22
|
-
const isDataRefreshingEnabled = isTrue(
|
|
23
|
-
path(["rules", "enable_data_refreshing"], component)
|
|
24
|
-
);
|
|
25
|
-
|
|
26
|
-
const refreshing_interval = toNumberWithDefault(
|
|
27
|
-
defaultRefreshInterval,
|
|
28
|
-
component?.rules?.refreshing_interval
|
|
29
|
-
);
|
|
30
|
-
|
|
31
|
-
const refreshingIntervalInMilliseconds =
|
|
32
|
-
max(refreshing_interval, minimumRefreshingInterval) * 1000;
|
|
33
|
-
|
|
34
|
-
const isScreenActive = useIsScreenActive();
|
|
35
|
-
|
|
36
|
-
React.useEffect(() => {
|
|
37
|
-
if (isDataRefreshingEnabled && refreshing_interval && isScreenActive) {
|
|
38
|
-
if (refreshing_interval < minimumRefreshingInterval) {
|
|
39
|
-
feedRefreshLogger.warning({
|
|
40
|
-
message: `You set your feed refresh interval to ${refreshing_interval} when minimum value is ${minimumRefreshingInterval}seconds.Your feed will refresh after ${minimumRefreshingInterval}seconds.`,
|
|
41
|
-
});
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
if (!reloadData || typeof reloadData !== "function") {
|
|
45
|
-
feedRefreshLogger.warning({
|
|
46
|
-
message:
|
|
47
|
-
"reloadData function is undefined, feed refresh feature won't work properly",
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
if (previousTimersMap[component?.id]) {
|
|
52
|
-
reloadData?.();
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
const refreshInterval = setInterval(() => {
|
|
56
|
-
reloadData?.();
|
|
57
|
-
}, refreshingIntervalInMilliseconds);
|
|
58
|
-
|
|
59
|
-
return () => {
|
|
60
|
-
previousTimersMap[component?.id] = true;
|
|
61
|
-
clearInterval(refreshInterval);
|
|
62
|
-
};
|
|
63
|
-
}
|
|
64
|
-
}, [reloadData, isScreenActive]);
|
|
65
|
-
};
|