2021-07-07 20:10:09 +00:00
|
|
|
import unified from 'unified';
|
|
|
|
import type { Plugin, UnifiedPluginImport } from './types';
|
2021-07-01 16:55:22 +00:00
|
|
|
|
|
|
|
async function importPlugin(p: string | UnifiedPluginImport): UnifiedPluginImport {
|
|
|
|
if (typeof p === 'string') {
|
|
|
|
return await import(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
return await p;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function loadPlugins(items: Plugin[]): Promise<[unified.Plugin] | [unified.Plugin, unified.Settings]>[] {
|
|
|
|
return items.map((p) => {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
if (Array.isArray(p)) {
|
|
|
|
const [plugin, opts] = p;
|
|
|
|
return importPlugin(plugin)
|
|
|
|
.then((m) => resolve([m.default, opts]))
|
|
|
|
.catch((e) => reject(e));
|
|
|
|
}
|
|
|
|
|
|
|
|
return importPlugin(p)
|
2021-07-07 20:10:09 +00:00
|
|
|
.then((m) => resolve([m.default]))
|
2021-07-01 16:55:22 +00:00
|
|
|
.catch((e) => reject(e));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|