-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNativeEngineHook.js
57 lines (57 loc) · 1.86 KB
/
NativeEngineHook.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { useEffect, useState } from 'react';
import { AppState } from 'react-native';
import { ensureInitialized } from './BabylonModule';
import './VersionValidation';
export function useModuleInitializer() {
const [initialized, setInitialized] = useState();
useEffect(() => {
const abortController = new AbortController();
(async () => {
const isInitialized = await ensureInitialized();
if (!abortController.signal.aborted) {
setInitialized(isInitialized);
}
})();
return () => {
abortController.abort();
};
}, []);
return initialized;
}
function useAppState() {
const [appState, setAppState] = useState(AppState.currentState);
useEffect(() => {
const onAppStateChanged = (appState) => {
setAppState(appState);
};
const appStateListener = AppState.addEventListener("change", onAppStateChanged);
// Asserting the type to prevent TS type errors on older RN versions
const removeListener = appStateListener?.["remove"];
return () => {
if (!!removeListener) {
removeListener();
}
else {
AppState.removeEventListener("change", onAppStateChanged);
}
};
}, []);
return appState;
}
export function useRenderLoop(engine, renderCallback) {
const appState = useAppState();
useEffect(() => {
if (engine && appState === "active") {
if (!engine.isDisposed) {
engine.runRenderLoop(renderCallback);
return () => {
if (!engine.isDisposed) {
engine.stopRenderLoop();
}
};
}
}
return undefined;
}, [appState, engine]);
}
//# sourceMappingURL=NativeEngineHook.js.map