feat(util): asyncLoadCss支持指定document

This commit is contained in:
roymondchen 2022-04-07 17:38:33 +08:00 committed by jia000
parent f896115881
commit 71cfab8d4d

View File

@ -97,22 +97,44 @@ export const asyncLoadJs = (() => {
}; };
})(); })();
export const asyncLoadCss = function (url: string) { export const asyncLoadCss = (() => {
return new Promise((resolve, reject) => { // 正在加载或加载成功的存入此Map中
const hasLoaded = globalThis.document.querySelector(`link[href="${url}"]`); const documentMap = new Map();
if (hasLoaded) {
resolve(undefined); return (url: string, document = globalThis.document) => {
return; let loaded = documentMap.get(document);
if (!loaded) {
loaded = new Map();
documentMap.set(document, loaded);
} }
const node = document.createElement('link'); // 正在加载或已经加载成功的,直接返回
node.rel = 'stylesheet'; if (loaded.get(url)) return loaded.get(url);
node.href = url;
document.getElementsByTagName('head')[0].appendChild(node); const load = new Promise<void>((resolve, reject) => {
node.onload = resolve; const node = document.createElement('link');
node.onerror = reject; node.rel = 'stylesheet';
}); node.href = url;
}; document.head.appendChild(node);
node.onload = () => {
resolve();
};
node.onerror = () => {
reject(new Error('加载失败'));
};
setTimeout(() => {
reject(new Error('timeout'));
}, 60 * 1000);
}).catch((err) => {
// 加载失败的从map中移除第二次加载时可以再次执行加载
loaded.delete(url);
throw err;
});
loaded.set(url, load);
return loaded.get(url);
};
})();
// 驼峰转换横线 // 驼峰转换横线
export const toLine = (name = '') => name.replace(/\B([A-Z])/g, '-$1').toLowerCase(); export const toLine = (name = '') => name.replace(/\B([A-Z])/g, '-$1').toLowerCase();
@ -181,4 +203,4 @@ export const getUrlParam = (param: string, url?: string) => {
return ''; return '';
}; };
export const isPop = (node: MNode): boolean => node.type.toLowerCase().endsWith('pop'); export const isPop = (node: MNode): boolean => Boolean(node.type?.toLowerCase().endsWith('pop'));