-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
useWaterfallLoad.mjs
53 lines (42 loc) · 1.83 KB
/
useWaterfallLoad.mjs
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
// @ts-check
/**
* @import waterfallRender from "react-waterfall-render/waterfallRender.mjs"
* @import { CacheKey } from "./Cache.mjs"
* @import { Loader } from "./types.mjs"
* @import useAutoLoad from "./useAutoLoad.mjs"
*/
import React from "react";
import WaterfallRenderContext from "react-waterfall-render/WaterfallRenderContext.mjs";
import LoadingCacheValue from "./LoadingCacheValue.mjs";
import useCache from "./useCache.mjs";
/**
* React hook to load a {@link Cache.store cache store} entry if the
* {@link WaterfallRenderContext waterfall render context} is populated, i.e.
* when {@link waterfallRender waterfall rendering} for either a server side
* render or to preload components in a browser environment.
* @param {CacheKey} cacheKey Cache key.
* @param {Loader} load Memoized function that starts the loading.
* @returns {boolean} Did loading start. If so, it’s efficient for the component
* to return `null` since this render will be discarded anyway for a re-render
* onces the loading ends.
* @see {@link useAutoLoad `useAutoLoad`}, often used alongside this hook.
*/
export default function useWaterfallLoad(cacheKey, load) {
if (typeof cacheKey !== "string")
throw new TypeError("Argument 1 `cacheKey` must be a string.");
if (typeof load !== "function")
throw new TypeError("Argument 2 `load` must be a function.");
const cache = useCache();
const declareLoading = React.useContext(WaterfallRenderContext);
if (declareLoading && !(cacheKey in cache.store)) {
// Todo: First, check if already loading?
const loadingCacheValue = load();
if (!(loadingCacheValue instanceof LoadingCacheValue))
throw new TypeError(
"Argument 2 `load` must return a `LoadingCacheValue` instance.",
);
declareLoading(loadingCacheValue.promise);
return true;
}
return false;
}