mirror of
https://github.com/iconify/iconify.git
synced 2024-12-12 13:47:49 +00:00
feat: customInstall
This commit is contained in:
parent
0dbc5da8b3
commit
5be9c3f8f9
@ -1,4 +1,5 @@
|
|||||||
import { promises as fs, Stats } from 'fs';
|
import { promises as fs, Stats } from 'fs';
|
||||||
|
import type { IconifyLoaderOptions } from './types';
|
||||||
import { isPackageExists, resolveModule } from 'local-pkg';
|
import { isPackageExists, resolveModule } from 'local-pkg';
|
||||||
import type { IconifyJSON } from '@iconify/types';
|
import type { IconifyJSON } from '@iconify/types';
|
||||||
import { tryInstallPkg } from './install-pkg';
|
import { tryInstallPkg } from './install-pkg';
|
||||||
@ -8,7 +9,7 @@ const isLegacyExists = isPackageExists('@iconify/json');
|
|||||||
|
|
||||||
export async function loadCollectionFromFS(
|
export async function loadCollectionFromFS(
|
||||||
name: string,
|
name: string,
|
||||||
autoInstall = false
|
options?: IconifyLoaderOptions
|
||||||
): Promise<IconifyJSON | undefined> {
|
): Promise<IconifyJSON | undefined> {
|
||||||
if (!(await _collections[name])) {
|
if (!(await _collections[name])) {
|
||||||
_collections[name] = task();
|
_collections[name] = task();
|
||||||
@ -21,8 +22,8 @@ export async function loadCollectionFromFS(
|
|||||||
jsonPath = resolveModule(`@iconify/json/json/${name}.json`);
|
jsonPath = resolveModule(`@iconify/json/json/${name}.json`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!jsonPath && !isLegacyExists && autoInstall) {
|
if (!jsonPath && !isLegacyExists && options?.autoInstall) {
|
||||||
await tryInstallPkg(`@iconify-json/${name}`);
|
await tryInstallPkg(`@iconify-json/${name}`, options);
|
||||||
jsonPath = resolveModule(`@iconify-json/${name}/icons.json`);
|
jsonPath = resolveModule(`@iconify-json/${name}/icons.json`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,11 +2,15 @@ import { installPackage } from '@antfu/install-pkg';
|
|||||||
import { sleep } from '@antfu/utils';
|
import { sleep } from '@antfu/utils';
|
||||||
import { cyan } from 'kolorist';
|
import { cyan } from 'kolorist';
|
||||||
import { warnOnce } from './warn';
|
import { warnOnce } from './warn';
|
||||||
|
import type { IconifyLoaderOptions } from './types';
|
||||||
|
|
||||||
let pending: Promise<void> | undefined;
|
let pending: Promise<void> | undefined;
|
||||||
const tasks: Record<string, Promise<void> | undefined> = {};
|
const tasks: Record<string, Promise<void> | undefined> = {};
|
||||||
|
|
||||||
export async function tryInstallPkg(name: string): Promise<void | undefined> {
|
export async function tryInstallPkg(
|
||||||
|
name: string,
|
||||||
|
options?: IconifyLoaderOptions
|
||||||
|
): Promise<void | undefined> {
|
||||||
if (pending) {
|
if (pending) {
|
||||||
await pending;
|
await pending;
|
||||||
}
|
}
|
||||||
@ -14,6 +18,14 @@ export async function tryInstallPkg(name: string): Promise<void | undefined> {
|
|||||||
if (!tasks[name]) {
|
if (!tasks[name]) {
|
||||||
// eslint-disable-next-line no-console
|
// eslint-disable-next-line no-console
|
||||||
console.log(cyan(`Installing ${name}...`));
|
console.log(cyan(`Installing ${name}...`));
|
||||||
|
if (options?.customInstall) {
|
||||||
|
tasks[name] = pending = options
|
||||||
|
.customInstall(name)
|
||||||
|
.then(() => sleep(300))
|
||||||
|
.finally(() => {
|
||||||
|
pending = undefined;
|
||||||
|
});
|
||||||
|
} else {
|
||||||
tasks[name] = pending = installPackage(name, {
|
tasks[name] = pending = installPackage(name, {
|
||||||
dev: true,
|
dev: true,
|
||||||
preferOffline: true,
|
preferOffline: true,
|
||||||
@ -28,6 +40,7 @@ export async function tryInstallPkg(name: string): Promise<void | undefined> {
|
|||||||
pending = undefined;
|
pending = undefined;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return tasks[name];
|
return tasks[name];
|
||||||
}
|
}
|
||||||
|
@ -14,10 +14,7 @@ export const loadNodeIcon: UniversalIconLoader = async (
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
const iconSet = await loadCollectionFromFS(
|
const iconSet = await loadCollectionFromFS(collection, options);
|
||||||
collection,
|
|
||||||
options?.autoInstall
|
|
||||||
);
|
|
||||||
if (iconSet) {
|
if (iconSet) {
|
||||||
// possible icon names
|
// possible icon names
|
||||||
const ids = [
|
const ids = [
|
||||||
|
@ -156,6 +156,7 @@ export type IconifyLoaderOptions = {
|
|||||||
*/
|
*/
|
||||||
autoInstall?: boolean;
|
autoInstall?: boolean;
|
||||||
|
|
||||||
|
customInstall?: Function;
|
||||||
/**
|
/**
|
||||||
* The additional icon properties applied to the svg.
|
* The additional icon properties applied to the svg.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user