You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
990 B

5 years ago
/* eslint-disable import/prefer-default-export */
import * as React from 'react';
5 years ago
export function preLoad(list: string[]) {
if (typeof window !== 'undefined') {
// 图处预加载;
const div = document.createElement('div');
div.style.display = 'none';
document.body.appendChild(div);
list.forEach(src => {
const img = new Image();
img.src = src;
div.appendChild(img);
});
}
}
export function useSiteData<T extends object>(): [T, boolean] {
const [data, setData] = React.useState<T>({} as any);
const [loading, setLoading] = React.useState<boolean>(false);
React.useEffect(() => {
if (Object.keys(data).length === 0 && typeof fetch !== 'undefined') {
setLoading(true);
fetch(`https://render.alipay.com/p/h5data/antd4-config_website-h5data.json`)
.then(res => res.json())
.then(result => {
setData(result);
setLoading(false);
});
}
}, []);
return [data, loading];
}