-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathuseCachedResources.ts
55 lines (51 loc) · 1.42 KB
/
useCachedResources.ts
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
import { Logging } from "@api";
import {
IBMPlexSans_300Light,
IBMPlexSans_400Regular,
IBMPlexSans_500Medium,
IBMPlexSans_600SemiBold,
IBMPlexSans_700Bold,
} from "@expo-google-fonts/ibm-plex-sans";
import {
Sora_300Light,
Sora_400Regular,
Sora_500Medium,
Sora_600SemiBold,
Sora_700Bold,
} from "@expo-google-fonts/sora";
import { MaterialCommunityIcons, MaterialIcons } from "@expo/vector-icons";
import * as Font from "expo-font";
import { useEffect, useState } from "react";
/**
* Delaying splash screen to load additional resources prior to rendering the app
* @return boolean when loading complete
*/
export function useCachedResources(): boolean {
const [isLoaded, setLoaded] = useState(false);
useEffect(() => {
loadResourcesAndDataAsync().finally(() => {
setLoaded(true);
});
}, []);
return isLoaded;
}
async function loadResourcesAndDataAsync(): Promise<void> {
try {
await Font.loadAsync({
...MaterialCommunityIcons.font,
...MaterialIcons.font,
LightFont: IBMPlexSans_300Light,
RegularFont: IBMPlexSans_400Regular,
MediumFont: IBMPlexSans_500Medium,
SemiBoldFont: IBMPlexSans_600SemiBold,
BoldFont: IBMPlexSans_700Bold,
SoraLight: Sora_300Light,
SoraRegular: Sora_400Regular,
SoraMedium: Sora_500Medium,
SoraSemiBold: Sora_600SemiBold,
SoraBold: Sora_700Bold,
});
} catch (e) {
Logging.error(e);
}
}