2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-19 16:59:02 +00:00

chore: move isLoader to loader.ts and change the logic

This commit is contained in:
Joaquín Sánchez Jiménez 2022-02-26 17:49:13 +01:00
parent 6efa9af556
commit 3fb00b30c8

View File

@ -1,9 +1,10 @@
import { getCustomIcon } from './custom';
import { isNode } from './utils';
import { searchForIcon } from './modern';
import { warnOnce } from './install-pkg';
import type { IconifyLoaderOptions } from './types';
export const isNode = typeof process < 'u' && typeof process.stdout < 'u'
export async function loadIcon(
collection: string,
icon: string,
@ -18,6 +19,10 @@ export async function loadIcon(
}
}
if (!isNode) {
return undefined;
}
let svg = await loadNodeBuiltinIcon(collection, icon, options);
if (svg && options) {
@ -54,25 +59,22 @@ async function loadNodeBuiltinIcon(
options?: IconifyLoaderOptions,
warn = true,
): Promise<string | undefined> {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
const { loadCollectionFromFS } = await importFsModule();
const iconSet = await loadCollectionFromFS(collection, options?.autoInstall);
if (iconSet) {
// possible icon names
const ids = [
icon,
icon.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase(),
icon.replace(/([a-z])(\d+)/g, '$1-$2'),
];
return await searchForIcon(iconSet, collection, ids, options);
}
if (isNode) {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
const { loadCollectionFromFS } = await importFsModule();
const iconSet = await loadCollectionFromFS(collection, options?.autoInstall);
if (iconSet) {
// possible icon names
const ids = [
icon,
icon.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase(),
icon.replace(/([a-z])(\d+)/g, '$1-$2'),
];
return await searchForIcon(iconSet, collection, ids, options);
}
if (warn) {
warnOnce(`failed to load \`@iconify-json/${collection}\`, have you installed it?`);
}
if (warn) {
warnOnce(`failed to load \`@iconify-json/${collection}\`, have you installed it?`);
}
}