@applicaster/zapp-react-native-ui-components 15.0.0-rc.110 → 15.0.0-rc.112
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.
|
@@ -13,7 +13,7 @@ import { isNilOrEmpty } from "@applicaster/zapp-react-native-utils/reactUtils/he
|
|
|
13
13
|
import { ScreenTrackedViewPositionsContext } from "@applicaster/zapp-react-native-ui-components/Contexts/ScreenTrackedViewPositionsContext";
|
|
14
14
|
import { useEventAlerts } from "./utils/useEventAlerts";
|
|
15
15
|
|
|
16
|
-
const {
|
|
16
|
+
const { log_debug } = createLogger({
|
|
17
17
|
category: "ScreenContainer",
|
|
18
18
|
subsystem: "General",
|
|
19
19
|
});
|
|
@@ -54,20 +54,15 @@ export const GeneralContentScreen = ({
|
|
|
54
54
|
useEffect(() => {
|
|
55
55
|
if (!riverActionProvidersReady) {
|
|
56
56
|
if (actionsInitialStateSetters.length > 0) {
|
|
57
|
-
log_info(
|
|
58
|
-
"ScreenContainer: starting to check river action providers to initialize",
|
|
59
|
-
{ actionsInitialStateSetters }
|
|
60
|
-
);
|
|
61
|
-
|
|
62
57
|
allSettled(actionsInitialStateSetters).finally(() => {
|
|
63
|
-
|
|
58
|
+
log_debug(
|
|
64
59
|
"ScreenContainer: action provider ready, completed. Starting to present screen"
|
|
65
60
|
);
|
|
66
61
|
|
|
67
62
|
setRiverActionProvidersReady(true);
|
|
68
63
|
});
|
|
69
64
|
} else {
|
|
70
|
-
|
|
65
|
+
log_debug(
|
|
71
66
|
"ScreenContainer: no action provider to check, completed. Starting to present screen"
|
|
72
67
|
);
|
|
73
68
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applicaster/zapp-react-native-ui-components",
|
|
3
|
-
"version": "15.0.0-rc.
|
|
3
|
+
"version": "15.0.0-rc.112",
|
|
4
4
|
"description": "Applicaster Zapp React Native ui components for the Quick Brick App",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/applicaster/quickbrick#readme",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@applicaster/applicaster-types": "15.0.0-rc.
|
|
32
|
-
"@applicaster/zapp-react-native-bridge": "15.0.0-rc.
|
|
33
|
-
"@applicaster/zapp-react-native-redux": "15.0.0-rc.
|
|
34
|
-
"@applicaster/zapp-react-native-utils": "15.0.0-rc.
|
|
31
|
+
"@applicaster/applicaster-types": "15.0.0-rc.112",
|
|
32
|
+
"@applicaster/zapp-react-native-bridge": "15.0.0-rc.112",
|
|
33
|
+
"@applicaster/zapp-react-native-redux": "15.0.0-rc.112",
|
|
34
|
+
"@applicaster/zapp-react-native-utils": "15.0.0-rc.112",
|
|
35
35
|
"fast-json-stable-stringify": "^2.1.0",
|
|
36
36
|
"promise": "^8.3.0",
|
|
37
37
|
"url": "^0.11.0",
|